@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root{
  --brand: #14395d;
  --brand-soft: #2d628f;
  --brand-deep: #0c2741;

  --accent: #f3b318;
  --accent-soft: #ffd76a;

  --bg: #f6f9fc;
  --bg-2: #eef4fa;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.88);

  --line: rgba(20, 57, 93, 0.08);
  --line-strong: rgba(20, 57, 93, 0.14);

  --text: #18324a;
  --text-soft: #5a7186;

  --shadow-soft: 0 12px 40px rgba(20, 57, 93, 0.06);
  --shadow-mid: 0 20px 60px rgba(20, 57, 93, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;

  --container: 1120px;
  --reading: 760px;

  --section-space: clamp(64px, 10vw, 120px);
  --scrollY: 0;
}

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

html{
  scroll-behavior: smooth;
}

body.seo-body{
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a{
  color: inherit;
  text-decoration: none;
}

.page-ambient{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient{
  position: absolute;
  will-change: transform;
}

.ambient-a{
  width: 520px;
  height: 520px;
  top: -80px;
  right: -120px;
  background:
    linear-gradient(135deg, rgba(255, 215, 106, 0.22), rgba(255, 215, 106, 0.02));
  transform: translateY(calc(var(--scrollY) * -0.08px));
}

.ambient-b{
  width: 620px;
  height: 620px;
  left: -160px;
  top: 28vh;
  background:
    linear-gradient(135deg, rgba(45, 98, 143, 0.10), rgba(45, 98, 143, 0.02));
  transform: translateY(calc(var(--scrollY) * -0.12px));
}

.ambient-c{
  width: 420px;
  height: 420px;
  right: 10%;
  top: 68vh;
  background:
    linear-gradient(135deg, rgba(20, 57, 93, 0.06), rgba(20, 57, 93, 0.01));
  transform: translateY(calc(var(--scrollY) * -0.06px));
}

.seo-page{
  position: relative;
  z-index: 1;
}

.section{
  position: relative;
  padding: var(--section-space) 0;
}

.section::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 32px), var(--container));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 12%,
    var(--line-strong) 50%,
    var(--line) 88%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.section:last-child::after{
  display: none;
}

.section-inner{
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.reading-width{
  max-width: var(--reading);
}

.hero{
  padding-top: clamp(52px, 9vw, 100px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.hero::after{
  display: none;
}

.hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 280px;
  gap: 48px;
  align-items: center;
}

.hero-copy{
  max-width: 720px;
}

.eyebrow,
.section-kicker{
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.section-kicker--light{
  color: rgba(255,255,255,0.72);
}

.hero h1{
  margin: 0 0 20px;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--brand-deep);
  max-width: 10ch;
}

.lead{
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  line-height: 1.85;
  color: var(--text-soft);
}

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

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button-primary{
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #1f2730;
  box-shadow: 0 12px 24px rgba(243, 179, 24, 0.22);
}

.button-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(243, 179, 24, 0.26);
}

.button-secondary{
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line-strong);
  color: var(--brand);
  backdrop-filter: blur(8px);
}

.button-secondary:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.78);
}

.hero-side{
  display: flex;
  justify-content: flex-end;
}

.soft-panel{
  width: 100%;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.soft-panel-label{
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.soft-panel p{
  margin: 0;
  line-height: 1.8;
  color: var(--text-soft);
}

.section-head{
  margin-bottom: 30px;
}

.section-head h2{
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
}

.feature-list{
  display: grid;
  gap: 18px;
}

.feature-item{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 18px;
  align-items: start;
}

.feature-mark{
  width: 14px;
  height: 14px;
  margin-top: 0.45rem;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.feature-item p{
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--text);
}

.steps{
  display: grid;
  gap: 28px;
}

.step{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
}

.step-number{
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  box-shadow: 0 10px 22px rgba(20, 57, 93, 0.18);
}

.step-content p{
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--text);
}

.faq-list{
  display: grid;
  gap: 26px;
}

.faq-item{
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child{
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3{
  margin: 0 0 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--brand);
}

.faq-item p{
  margin: 0;
  line-height: 1.85;
  color: var(--text-soft);
}

.cta-section{
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(90px, 12vw, 140px);
}

.cta-block{
  padding: clamp(28px, 5vw, 46px);
  background: linear-gradient(135deg, rgba(16,44,72,0.96), rgba(38,86,128,0.94));
  box-shadow: var(--shadow-mid);
}

.cta-block h2{
  margin: 0 0 14px;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: white;
}

.cta-block p{
  margin: 0 0 24px;
  max-width: 52ch;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
}

[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible{
  outline: 3px solid rgba(243, 179, 24, 0.35);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  .ambient,
  [data-reveal]{
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1{
    max-width: none;
  }

  .hero-side{
    justify-content: flex-start;
  }
}

@media (max-width: 640px){
  .section-inner{
    width: min(calc(100% - 22px), var(--container));
  }

  .button{
    width: 100%;
  }

  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .step{
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .lead,
  .feature-item p,
  .step-content p,
  .faq-item p{
    font-size: 1rem;
  }
}

.prose-block {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.prose-block p {
  margin: 0;
  line-height: 1.75;
}

.feature-item-link {
  text-decoration: none;
  color: inherit;
}

.feature-item-link:hover {
  transform: translateY(-2px);
}