:root {
  --seo-black: #050605;
  --seo-charcoal: #11151c;
  --seo-charcoal-light: #171c25;
  --seo-gold: #d7b33e;
  --seo-gold-soft: #f0d98b;
  --seo-ink: #f4f1e8;
  --seo-muted: #c4bdac;
  --seo-line: rgba(215, 179, 62, 0.23);
  --seo-serif: "Playfair Display", Georgia, serif;
  --seo-sans: "Manrope", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body.seo-page {
  min-width: 0;
  margin: 0;
  color: var(--seo-ink);
  background: var(--seo-black);
  font-family: var(--seo-sans);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.seo-page a {
  color: inherit;
}

.seo-page a:focus-visible {
  outline: 3px solid var(--seo-gold-soft);
  outline-offset: 4px;
}

.seo-skip-link {
  position: absolute;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #1c1405;
  background: var(--seo-gold-soft);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.seo-skip-link:focus {
  transform: translateY(0);
}

.seo-container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.seo-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--seo-line);
  background: rgba(5, 6, 5, 0.92);
}

.seo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

.seo-logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.seo-logo img {
  display: block;
  width: min(168px, 38vw);
  height: auto;
}

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
}

.seo-nav a,
.seo-footer-links a {
  color: var(--seo-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-nav a:hover,
.seo-footer-links a:hover {
  color: var(--seo-gold-soft);
}

.seo-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.seo-language-switcher {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--seo-line);
  border-radius: 999px;
}

.seo-language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--seo-muted);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.seo-language-switcher a:hover,
.seo-language-switcher a[aria-current="page"] {
  color: #1c1405;
  background: var(--seo-gold-soft);
}

.seo-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--seo-line);
  border-radius: 999px;
  color: var(--seo-muted);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.seo-language-link:hover {
  border-color: var(--seo-gold-soft);
  color: #1c1405;
  background: var(--seo-gold-soft);
}

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  color: #1c1405;
  background: linear-gradient(135deg, #f3d98b 0%, #d7b33e 52%, #a67c1e 100%);
  box-shadow: 0 14px 34px -14px rgba(215, 179, 62, 0.7);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.seo-button:hover {
  box-shadow: 0 20px 44px -14px rgba(215, 179, 62, 0.9);
  transform: translateY(-2px);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  border-bottom: 1px solid var(--seo-line);
  background:
    radial-gradient(900px circle at 94% -10%, rgba(215, 179, 62, 0.19), transparent 54%),
    radial-gradient(680px circle at 10% 105%, rgba(55, 90, 96, 0.25), transparent 58%),
    var(--seo-black);
}

.seo-hero::after {
  position: absolute;
  right: -250px;
  bottom: -390px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(240, 217, 139, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(240, 217, 139, 0.026), 0 0 0 160px rgba(240, 217, 139, 0.018);
}

.seo-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--seo-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seo-eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.seo-page h1,
.seo-page h2,
.seo-page h3 {
  font-family: var(--seo-serif);
  font-weight: 600;
}

.seo-page h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(44px, 7.2vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.seo-page h1 em,
.seo-page h2 em {
  color: var(--seo-gold-soft);
  font-style: normal;
}

.seo-intro {
  max-width: 700px;
  margin: 27px 0 0;
  color: var(--seo-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.seo-text-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 4px;
  color: var(--seo-gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.seo-section {
  padding: 88px 0;
}

.seo-section--dark {
  border-top: 1px solid var(--seo-line);
  border-bottom: 1px solid var(--seo-line);
  background: var(--seo-charcoal);
}

.seo-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  align-items: end;
  gap: 58px;
  margin-bottom: 42px;
}

.seo-section h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.028em;
}

.seo-section-heading > p,
.seo-section-copy {
  margin: 0;
  color: var(--seo-muted);
  font-size: 16px;
  line-height: 1.75;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-card {
  min-height: 242px;
  padding: 30px;
  border: 1px solid var(--seo-line);
  background: rgba(17, 21, 28, 0.7);
}

.seo-card-number {
  display: block;
  margin-bottom: 38px;
  color: var(--seo-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.seo-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.022em;
}

.seo-card p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 1.72;
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--seo-line);
  list-style: none;
}

.seo-step {
  min-height: 250px;
  padding: 28px 26px;
  border-right: 1px solid var(--seo-line);
  background: rgba(5, 6, 5, 0.32);
}

.seo-step:last-child {
  border-right: 0;
}

.seo-step-number {
  display: block;
  color: var(--seo-gold);
  font-family: var(--seo-serif);
  font-size: 46px;
  line-height: 1;
}

.seo-step h3 {
  margin: 53px 0 9px;
  font-size: 25px;
  line-height: 1.05;
}

.seo-step p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 1.7;
}

.seo-prose {
  max-width: 810px;
}

.seo-prose p,
.seo-prose li {
  color: var(--seo-muted);
  font-size: 16px;
  line-height: 1.8;
}

.seo-prose p {
  margin: 0 0 18px;
}

.seo-prose ul {
  margin: 24px 0;
  padding-left: 22px;
}

.seo-prose li + li {
  margin-top: 8px;
}

.seo-person-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 810px;
  padding: 27px;
  border: 1px solid var(--seo-line);
  background:
    linear-gradient(120deg, rgba(215, 179, 62, 0.08), transparent 48%),
    rgba(17, 21, 28, 0.68);
}

.seo-person-card img {
  display: block;
  width: 154px;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 179, 62, 0.46);
  border-radius: 50%;
  object-fit: cover;
}

.seo-person-card .seo-eyebrow {
  margin-bottom: 12px;
}

.seo-person-card h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.08;
}

.seo-person-card .seo-person-role {
  margin: 8px 0 15px;
  color: var(--seo-gold-soft);
  font-size: 14px;
  font-weight: 800;
}

.seo-person-card p:not(.seo-eyebrow):not(.seo-person-role) {
  margin: 0;
  color: var(--seo-muted);
  font-size: 15px;
  line-height: 1.75;
}

.seo-person-card .seo-text-link {
  margin-top: 7px;
}

.seo-callout {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border: 1px solid rgba(215, 179, 62, 0.48);
  background:
    linear-gradient(115deg, rgba(215, 179, 62, 0.15), transparent 56%),
    var(--seo-charcoal-light);
}

.seo-callout h2 {
  max-width: 14ch;
  margin: 0;
}

.seo-callout p {
  max-width: 620px;
  margin: 20px 0 28px;
  color: var(--seo-muted);
  font-size: 17px;
  line-height: 1.75;
}

.seo-footer {
  border-top: 1px solid var(--seo-line);
  background: #020302;
}

.seo-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  padding: 52px 0 28px;
}

.seo-footer-brand img {
  display: block;
  width: 155px;
  height: auto;
  margin-bottom: 18px;
}

.seo-footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 1.75;
}

.seo-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 13px 24px;
}

.seo-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0 25px;
  border-top: 1px solid var(--seo-line);
  color: #918a7d;
  font-size: 12px;
}

@media (max-width: 900px) {
  .seo-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .seo-nav {
    order: 3;
  }

  .seo-header-actions {
    order: 2;
  }

  .seo-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-steps {
    grid-template-columns: 1fr 1fr;
  }

  .seo-step:nth-child(2) {
    border-right: 0;
  }

  .seo-step:nth-child(n + 3) {
    border-top: 1px solid var(--seo-line);
  }

  .seo-step:nth-child(3) {
    border-right: 1px solid var(--seo-line);
  }
}

@media (max-width: 620px) {
  .seo-container {
    width: min(100% - 36px, 1160px);
  }

  .seo-header-inner {
    gap: 17px;
  }

  .seo-nav {
    gap: 11px 16px;
  }

  .seo-nav a {
    font-size: 12px;
  }

  .seo-header-actions {
    width: 100%;
    justify-content: center;
  }

  .seo-language-switcher a {
    min-height: 40px;
  }

  .seo-header-actions .seo-button {
    flex: 1;
    width: auto;
  }

  .seo-button {
    width: 100%;
  }

  .seo-hero {
    padding: 76px 0 72px;
  }

  .seo-page h1 {
    max-width: 14ch;
    font-size: clamp(43px, 13vw, 63px);
  }

  .seo-intro {
    font-size: 17px;
  }

  .seo-section {
    padding: 66px 0;
  }

  .seo-grid,
  .seo-steps,
  .seo-footer-inner {
    grid-template-columns: 1fr;
  }

  .seo-card {
    min-height: 0;
    padding: 27px 23px;
  }

  .seo-card-number {
    margin-bottom: 30px;
  }

  .seo-step,
  .seo-step:nth-child(2),
  .seo-step:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--seo-line);
  }

  .seo-step:first-child {
    border-top: 0;
  }

  .seo-step h3 {
    margin-top: 27px;
  }

  .seo-callout {
    padding: 38px 25px;
  }

  .seo-person-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
    padding: 24px;
  }

  .seo-person-card img {
    width: 118px;
  }

  .seo-footer-inner {
    gap: 32px;
    padding-top: 42px;
  }

  .seo-footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
