:root {
  color-scheme: light;
  --seo-ink: #102d2e;
  --seo-muted: #526768;
  --seo-brand: #007f7f;
  --seo-brand-dark: #006565;
  --seo-soft: #e8f7f5;
  --seo-line: #d7e6e4;
  --seo-page: #f6faf9;
  --seo-white: #ffffff;
}

body.seo-page {
  margin: 0;
  background: var(--seo-page);
  color: var(--seo-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.seo-page *,
.seo-page *::before,
.seo-page *::after {
  box-sizing: border-box;
}

.seo-page a {
  color: var(--seo-brand-dark);
}

.seo-page a:focus-visible {
  outline: 3px solid #f0a834;
  outline-offset: 3px;
}

.seo-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.seo-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--seo-line);
}

.seo-header .seo-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--seo-ink) !important;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-brand img {
  width: 38px;
  height: 38px;
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-nav a {
  color: var(--seo-ink);
  text-decoration: none;
}

.seo-nav a:hover {
  color: var(--seo-brand);
}

.seo-hero {
  padding: clamp(64px, 9vw, 112px) 0 64px;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 127, 127, 0.15), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--seo-page) 100%);
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

.seo-kicker {
  margin: 0 0 12px;
  color: var(--seo-brand);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.seo-page h1,
.seo-page h2,
.seo-page h3 {
  color: var(--seo-ink);
  line-height: 1.13;
  text-wrap: balance;
}

.seo-page h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  letter-spacing: -0.045em;
}

.seo-page h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
}

.seo-page h3 {
  margin: 0 0 9px;
  font-size: 1.18rem;
}

.seo-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--seo-muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--seo-brand);
  border-radius: 14px;
  background: var(--seo-brand);
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 101, 101, 0.16);
}

.seo-button:hover {
  border-color: var(--seo-brand-dark);
  background: var(--seo-brand-dark);
}

.seo-button-secondary {
  background: transparent;
  color: var(--seo-brand-dark) !important;
  box-shadow: none;
}

.seo-button-secondary:hover {
  color: #ffffff !important;
}

.seo-hero-card {
  padding: 30px;
  border: 1px solid rgba(0, 127, 127, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 54px rgba(16, 45, 46, 0.09);
}

.seo-hero-card ol,
.seo-checklist,
.seo-factor-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-hero-card li,
.seo-checklist li,
.seo-factor-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--seo-line);
}

.seo-hero-card li:last-child,
.seo-checklist li:last-child,
.seo-factor-list li:last-child {
  border-bottom: 0;
}

.seo-hero-card li::before,
.seo-checklist li::before,
.seo-factor-list li::before {
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--seo-soft);
  color: var(--seo-brand-dark);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.seo-section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.seo-section-white {
  background: var(--seo-white);
}

.seo-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.seo-section-heading p,
.seo-card p,
.seo-note,
.seo-faq p {
  color: var(--seo-muted);
}

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

.seo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-card {
  padding: 26px;
  border: 1px solid var(--seo-line);
  border-radius: 20px;
  background: var(--seo-white);
}

.seo-card-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  background: var(--seo-soft);
  color: var(--seo-brand-dark);
  font-weight: 900;
}

.seo-card p:last-child {
  margin-bottom: 0;
}

.seo-note {
  padding: 22px 24px;
  border-left: 4px solid var(--seo-brand);
  border-radius: 0 14px 14px 0;
  background: var(--seo-soft);
}

.seo-faq {
  display: grid;
  gap: 14px;
}

.seo-faq details {
  padding: 20px 22px;
  border: 1px solid var(--seo-line);
  border-radius: 16px;
  background: var(--seo-white);
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.seo-faq p {
  margin: 14px 0 0;
}

.seo-cta {
  padding: clamp(54px, 8vw, 86px) 0;
  background: var(--seo-ink);
  color: #ffffff;
}

.seo-cta .seo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.seo-cta h2,
.seo-cta p {
  color: #ffffff;
}

.seo-cta h2 {
  margin-bottom: 10px;
}

.seo-cta p {
  max-width: 660px;
  margin: 0;
  opacity: 0.78;
}

.seo-footer {
  padding: 34px 0;
  border-top: 1px solid var(--seo-line);
  background: #ffffff;
  color: var(--seo-muted);
  font-size: 0.9rem;
}

.seo-footer .seo-wrap,
.seo-footer nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.seo-footer nav {
  justify-content: flex-end;
}

.seo-fallback {
  width: min(760px, calc(100% - 40px));
  margin: 9vh auto;
  color: #102d2e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-align: center;
}

.seo-fallback h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.05;
}

.seo-fallback-kicker {
  margin: 16px 0 0;
  color: #007f7f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-fallback nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

@media (max-width: 760px) {
  .seo-wrap {
    width: min(100% - 28px, 1120px);
  }

  .seo-header .seo-wrap {
    min-height: 64px;
  }

  .seo-nav a:not(.seo-nav-primary) {
    display: none;
  }

  .seo-hero-grid,
  .seo-grid-2,
  .seo-grid-3 {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding-top: 54px;
  }

  .seo-hero-card {
    padding: 24px;
  }

  .seo-cta .seo-wrap,
  .seo-footer .seo-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-page *,
  .seo-page *::before,
  .seo-page *::after {
    scroll-behavior: auto !important;
  }
}
