:root{
  --cream:#FFFBF6;
  --cream-2:#FFF4EA;
  --aqua:#0F9EA4;
  --aqua-dark:#0B8C91;
  --aqua-soft:#DDF5F2;
  --blue:#08295E;
  --blue-soft:#DBECFB;
  --pink:#F58CA8;
  --pink-soft:#FFE3EB;
  --yellow:#FFE9A8;
  --text:#142A4E;
  --muted:#52637F;
  --white:#FFFFFF;
  --border:rgba(8,41,94,.10);
  --shadow:0 20px 54px rgba(8,41,94,.10);
  --radius:30px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--cream);
  color:var(--text);
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

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

.narrow{width:min(860px, calc(100% - 36px))}
.center{text-align:center}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,251,246,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}

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

.brand img{width:154px}

.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:.91rem;
  font-weight:800;
  color:var(--blue);
}

.nav-menu a:hover{color:var(--aqua)}

.nav-cta{
  background:var(--aqua);
  color:#fff!important;
  padding:14px 23px;
  border-radius:999px;
  box-shadow:0 12px 26px rgba(15,158,164,.22);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 18px rgba(8,41,94,.08);
  padding:11px;
}

.menu-toggle span{
  display:block;
  height:3px;
  margin:5px 0;
  background:var(--blue);
  border-radius:999px;
}

.hero{
  min-height:auto;
  padding:58px 0 42px;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(15,158,164,.13), transparent 28%),
    radial-gradient(circle at 0% 92%, rgba(245,140,168,.14), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  align-items:center;
  gap:34px;
}

.eyebrow{
  margin:0 0 14px;
  font-size:.9rem;
  color:var(--aqua);
  font-weight:900;
}

h1,h2,h3{
  margin-top:0;
  color:var(--blue);
  letter-spacing:-.035em;
}


.hero-title-logo{
  width:min(430px, 100%);
  height:auto;
  margin:0 0 14px;
}

@media (max-width: 760px){
  .hero-title-logo{
    width:min(340px, 88%);
    margin:0 auto 12px;
  }

  .hero-stats article:first-child .stat-icon{
    transform:translateX(8px);
  }
}

h1{
  margin:0 0 18px;
  font-size:clamp(2rem, 3.05vw, 3.15rem);
  line-height:1.08;
  font-weight:900;
}

h1 span{
  display:block;
}

.brand-line{
  margin-bottom:8px;
  font-size:.94em;
}

.brand-line sup{
  font-size:.25em;
  top:-1.2em;
  position:relative;
}

.aqua-line{
  color:var(--aqua);
}

h2{
  font-size:clamp(1.9rem, 3.6vw, 3.05rem);
  line-height:1.04;
  font-weight:900;
}

h3{
  font-size:1.25rem;
  line-height:1.1;
  font-weight:900;
}

.lead{
  max-width:560px;
  margin:0 0 28px;
  color:var(--blue);
  opacity:.78;
  font-size:1.06rem;
  line-height:1.72;
  font-weight:600;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4, max-content);
  align-items:start;
  gap:0;
  margin:0 0 30px;
}

.hero-stats article{
  min-width:132px;
  padding:0 22px;
  position:relative;
}

.hero-stats article:first-child{
  padding-left:0;
}

.hero-stats article:not(:first-child)::before{
  content:"";
  position:absolute;
  left:0;
  top:26px;
  height:96px;
  border-left:2px dashed rgba(8,41,94,.22);
}

.stat-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 0 12px;
}

.stat-icon img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.aqua-bg{background:var(--aqua-soft)}
.pink-bg{background:var(--pink-soft)}
.blue-bg{background:var(--blue-soft)}
.cloud-icon{background:transparent}

.cloud-icon img{
  width:86px;
  height:86px;
  margin-left:-10px;
  margin-top:-8px;
}

.hero-stats strong{
  display:block;
  font-size:2.25rem;
  line-height:.95;
  color:var(--aqua);
  font-weight:900;
}

.hero-stats .pink-number{
  color:var(--pink);
}

.hero-stats .blue-number{
  color:#5DA7EE;
}

.hero-stats span{
  display:block;
  margin-top:6px;
  font-size:.93rem;
  line-height:1.18;
  color:var(--blue);
  font-weight:800;
}

.hero-stats .love-copy{
  margin-top:10px;
  font-size:.92rem;
  line-height:1.22;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:30px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  min-height:64px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:900;
  text-align:center;
  transition:transform .16s ease, background .16s ease;
}

.btn:hover{transform:translateY(-1px)}

.btn span{
  display:block;
  font-size:1rem;
  line-height:1.1;
}

.btn small{
  display:block;
  margin-top:4px;
  font-size:.82rem;
  font-weight:700;
}

.btn.primary{
  min-width:230px;
  color:#fff;
  background:var(--aqua);
  box-shadow:0 14px 32px rgba(15,158,164,.24);
}

.btn.primary:hover{background:var(--aqua-dark)}

.btn.secondary{
  min-width:230px;
  color:var(--blue);
  background:#fff;
  border:2px solid rgba(15,158,164,.45);
}

.btn.secondary small{
  color:var(--aqua);
}

.hero-art{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  min-height:520px;
  position:relative;
}

.hero-art img{
  width:min(610px, 100%);
  filter:drop-shadow(0 18px 28px rgba(8,41,94,.12));
}

.hero-trust{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-top:10px;
  padding-top:10px;
}

.hero-trust div{
  display:flex;
  align-items:center;
  gap:14px;
}

.hero-trust img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.hero-trust span{
  color:var(--blue);
  font-size:.93rem;
  line-height:1.28;
  font-weight:700;
}

.section{padding:64px 0}

.section-heading{
  max-width:820px;
  margin:0 auto 38px;
  text-align:center;
}

.section-heading h2{margin-bottom:12px}
.section-heading p{color:var(--muted); line-height:1.7}

.journey-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
  align-items:start;
}

.journey-grid article{
  text-align:center;
  position:relative;
}

.journey-grid article:not(:last-child)::after{
  content:"";
  position:absolute;
  top:42px;
  left:calc(50% + 48px);
  width:calc(100% - 74px);
  border-top:2px dashed rgba(8,41,94,.18);
}

.journey-icon{
  width:88px;
  height:88px;
  margin:0 auto 14px;
  border-radius:50%;
}

.journey-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.journey-grid strong{
  color:var(--aqua);
  font-size:1.75rem;
  font-weight:900;
}

.journey-grid h3{
  margin:6px 0 4px;
  font-size:1.1rem;
}

.journey-grid p{
  margin:0;
  color:var(--blue);
  font-weight:700;
  line-height:1.35;
}

.collection{
  background:#fff;
}

.collection-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:34px;
}

.copy-card{
  background:var(--cream);
  border-radius:var(--radius);
  padding:40px;
  box-shadow:var(--shadow);
}

.copy-card h2{margin-bottom:18px}
.copy-card p{color:var(--muted); line-height:1.75; font-weight:500}

.check-list{
  list-style:none;
  padding:0;
  margin:28px 0 0;
  display:grid;
  gap:12px;
}

.check-list li{
  color:var(--blue);
  font-weight:800;
}

.check-list li::before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:24px;
  height:24px;
  margin-right:10px;
  border-radius:999px;
  background:var(--aqua);
  color:#fff;
  font-size:.82rem;
}


.check-list .flashcards-item span{
  display:inline-block;
  font-weight:900;
}

.check-list .flashcards-item small{
  display:block;
  margin:6px 0 0 34px;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
  font-weight:700;
}

@media (max-width: 760px){
  .check-list .flashcards-item small{
    margin-left:34px;
    font-size:.84rem;
  }
}

.mockup-card{
  background:#fff;
  border-radius:var(--radius);
  padding:10px;
  box-shadow:var(--shadow);
}

.mockup-card img{border-radius:22px}

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

.why-grid article{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:30px 24px;
  box-shadow:var(--shadow);
}

.why-grid span{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  margin-bottom:18px;
  border-radius:18px;
  background:var(--aqua-soft);
  font-size:1.55rem;
}

.why-grid p{color:var(--muted); line-height:1.7; margin-bottom:0}

.cta-band{padding:46px 0}

.cta-box{
  display:grid;
  grid-template-columns:1fr .9fr .86fr;
  align-items:center;
  gap:24px;
  padding:28px 34px;
  border-radius:34px;
  background:var(--aqua-soft);
  box-shadow:var(--shadow);
}

.cta-copy h2{
  margin:0 0 12px;
  font-size:clamp(2rem, 4vw, 3.2rem);
}

.cta-copy p{margin:0; color:var(--muted); line-height:1.7; font-weight:600}

.cta-box > img{
  max-height:190px;
  margin:auto;
  filter:drop-shadow(0 14px 20px rgba(8,41,94,.10));
}

.cta-action{
  display:grid;
  justify-items:center;
  gap:12px;
}

.cta-action > small{font-weight:900; color:var(--blue)}

.faq{background:#fff}

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

details{
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

summary{
  cursor:pointer;
  padding:20px 22px;
  list-style:none;
  color:var(--blue);
  font-weight:900;
}

summary::-webkit-details-marker{display:none}
summary::after{content:"+"; float:right; color:var(--aqua); font-size:1.35rem; line-height:1}
details[open] summary::after{content:"–"}

details p{
  margin:0;
  padding:0 22px 22px;
  color:var(--muted);
  line-height:1.75;
}

.final-logo{
  width:min(380px, 90%);
  margin:0 auto 22px;
}

.final-cta p{
  max-width:620px;
  margin:0 auto 26px;
  color:var(--muted);
  line-height:1.7;
}

.site-footer{
  padding:42px 0 24px;
  background:var(--blue);
  color:#fff;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.footer-logo{
  width:210px;
  background:transparent;
  border-radius:0;
  padding:0;
}

.site-footer p{color:rgba(255,255,255,.76); margin:12px 0 0}
.footer-links{display:flex; gap:20px; flex-wrap:wrap; font-weight:800}
.copyright{margin-top:26px; padding-top:20px; border-top:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.70); font-size:.85rem}

@media (max-width: 1020px){
  .hero-grid,
  .collection-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

  .hero-copy{text-align:center}
  .lead{margin-left:auto; margin-right:auto}
  .hero-stats{justify-content:center}
  .hero-actions{justify-content:center}
  .hero-art{min-height:0}
  .hero-art img{width:min(390px, 88%)}
  .hero-trust{grid-template-columns:repeat(2,1fr)}
  .cta-box{text-align:center}
  .why-grid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .container,.narrow{width:min(100% - 28px, 1160px)}

  .nav-wrap{min-height:68px}
  .brand img{width:138px}

  .menu-toggle{display:block}

  .nav-menu{
    position:absolute;
    top:68px;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px;
    background:#fff;
    border-radius:22px;
    box-shadow:var(--shadow);
  }

  .nav-menu.is-open{display:flex}

  .nav-menu a{
    padding:14px;
    border-radius:14px;
  }

  .nav-cta{text-align:center; margin-top:6px}

  .hero{
    padding:30px 0 34px;
    min-height:auto;
  }

  .hero-grid{
    gap:28px;
  }

  .hero-copy{
    text-align:center;
  }

  h1{
    font-size:clamp(1.85rem, 7.9vw, 2.65rem);
    line-height:1.06;
  }

  .lead{
    font-size:.98rem;
    line-height:1.65;
    max-width:610px;
  }

  .hero-stats{
    grid-template-columns:1fr;
    gap:14px;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-stats article{
    display:grid;
    grid-template-columns:58px 48px 1fr;
    align-items:center;
    column-gap:10px;
    min-width:0;
    min-height:92px;
    padding:14px 18px;
    text-align:left;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 12px 30px rgba(8,41,94,.06);
  }

  .hero-stats article:not(:first-child)::before{
    display:none;
  }

  .stat-icon{
    margin:0;
    width:54px;
    height:54px;
    align-self:center;
    justify-self:center;
  }

  .stat-icon img{
    width:36px;
    height:36px;
    object-fit:contain;
  }

  .cloud-icon img{
    width:52px;
    height:52px;
    margin:0;
  }

  .hero-stats strong{
    font-size:1.78rem;
    align-self:center;
    justify-self:center;
  }

  .hero-stats span,
  .hero-stats .love-copy{
    margin:0;
    font-size:.9rem;
    align-self:center;
  }

  .hero-stats .love-copy{
    grid-column:2 / 4;
    line-height:1.18;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-trust{
    grid-template-columns:1fr;
    margin-top:26px;
    gap:14px;
  }

  .hero-trust div{
    justify-content:flex-start;
    background:rgba(255,255,255,.65);
    border-radius:18px;
    padding:12px 14px;
  }

  .section{padding:62px 0}

  .journey-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .journey-grid article{
    display:grid;
    grid-template-columns:70px 40px 1fr;
    gap:10px;
    align-items:center;
    text-align:left;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:14px 16px;
    box-shadow:0 12px 30px rgba(8,41,94,.06);
  }

  .journey-grid article::after{
    display:none;
  }

  .journey-icon{
    width:58px;
    height:58px;
    margin:0;
    grid-row:1 / span 2;
  }

  .journey-grid strong{
    font-size:1.55rem;
  }

  .journey-grid h3{
    margin:0;
  }

  .journey-grid p{
    grid-column:3;
    margin-top:-14px;
  }

  .copy-card{padding:30px 22px}
  .cta-box{padding:28px 20px}
  .footer-grid{flex-direction:column; align-items:flex-start}
}
