:root{
  --pink:#E94B7A;
  --pinkLight:#F7C1D1;
  --pinkPale:#FFF0F5;
  --pinkDark:#C73A5F;
  --bg:#FAFBFC;
  --text:#1a1a1a;
  --muted:#6b7280;
  --mutedLight:#9ca3af;
  --card:#ffffff;
  --border:rgba(0,0,0,.06);
  --shadow:0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.03);
  --shadowHover:0 4px 6px rgba(0,0,0,.08), 0 10px 20px rgba(0,0,0,.06);
  --radius:16px;
  --radiusSmall:12px;
  --max:1120px;
}
*{box-sizing:border-box; margin:0; padding:0}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

/* ─── Skip link ─── */
.skipLink{
  position:absolute;
  top:-100%;
  left:16px;
  background:var(--pink);
  color:#fff;
  padding:12px 20px;
  border-radius:0 0 10px 10px;
  font-weight:600;
  font-size:14px;
  z-index:200;
  text-decoration:none;
  transition:top .2s;
}
.skipLink:focus{top:0}

/* ─── Header ─── */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  transition:opacity .2s;
  flex-shrink:0;
}
.brand:hover{opacity:.85}
.brand img{
  width:40px; height:40px;
  border-radius:10px;
  object-fit:contain;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.brand strong{display:block; font-size:14px; font-weight:700; color:var(--text); letter-spacing:-0.01em; line-height:1.3}
.brand span{display:block; color:var(--mutedLight); font-size:11px; font-weight:500; line-height:1.3}

/* Desktop nav links */
nav ul{display:flex; gap:4px; list-style:none; padding:0; margin:0}
nav li a{
  font-size:13px; font-weight:500; text-decoration:none;
  color:var(--muted);
  transition:all .2s;
  padding:6px 10px;
  border-radius:8px;
  display:block;
}
nav li a:hover{color:var(--pink); background:var(--pinkPale)}

/* Header CTA row */
.ctaRow{display:flex; gap:8px; flex-wrap:wrap; align-items:center}
.headerCta{justify-content:flex-end}

/* Hide mobile menu nav buttons on desktop */
@media (min-width: 901px){
  nav .ctaRow{display:none !important}
}

/* ─── Mobile menu ─── */
.menuToggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:10px;
  z-index:201;
  border-radius:8px;
  transition:background .2s;
}
.menuToggle:hover{background:rgba(0,0,0,.04)}
.menuToggle span{
  width:20px;
  height:2px;
  background:var(--text);
  transition:all .3s;
  border-radius:2px;
}
.menuToggle.active span:nth-child(1){transform:rotate(45deg) translate(5px, 5px)}
.menuToggle.active span:nth-child(2){opacity:0}
.menuToggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px, -5px)}

/* Mobile overlay */
.navOverlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.25);
  z-index:99;
  opacity:0;
  transition:opacity .4s ease;
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
}
.navOverlay.active{display:block; opacity:1}

@media (max-width: 900px){
  .menuToggle{display:flex}
  .desktopOnly{display:none !important}
  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:min(300px, 85vw);
    height:100vh;
    height:100dvh;
    background:rgba(255,255,255,.97);
    -webkit-backdrop-filter:blur(20px) saturate(180%);
    backdrop-filter:blur(20px) saturate(180%);
    box-shadow:-4px 0 32px rgba(0,0,0,.08);
    transition:right .45s cubic-bezier(.22, 1, .36, 1);
    z-index:200;
    padding:24px;
    padding-top:80px;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
  }
  nav.active{right:0}
  nav ul{
    flex-direction:column;
    gap:0;
    width:100%;
  }
  nav li{
    width:100%;
  }
  nav li a{
    display:block;
    padding:14px 12px;
    font-size:15px;
    font-weight:500;
    border-radius:10px;
    color:var(--text);
  }
  nav li a:hover, nav li a:active{
    background:var(--pinkPale);
    color:var(--pink);
  }
  nav .ctaRow{
    display:flex;
    flex-direction:column;
    width:100%;
    margin-top:24px;
    padding-top:24px;
    border-top:1px solid var(--border);
    gap:10px;
  }
  nav .ctaRow .btn{
    width:100%;
    justify-content:center;
  }
}

/* ─── Buttons ─── */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 18px;
  border-radius:10px;
  border:1.5px solid var(--border);
  background:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  transition:all .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  white-space:nowrap;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  border-color:var(--pinkLight);
}
.btn:active{transform:translateY(0); box-shadow: 0 1px 2px rgba(0,0,0,.04)}
.btnPrimary{
  background:var(--pink);
  color:#fff;
  border-color:var(--pink);
  box-shadow: 0 2px 8px rgba(233,75,122,.2);
}
.btnPrimary:hover{
  background:var(--pinkDark);
  border-color:var(--pinkDark);
  box-shadow: 0 4px 16px rgba(233,75,122,.3);
}
.btnPrimary:active{
  background:var(--pinkDark);
  box-shadow: 0 1px 4px rgba(233,75,122,.2);
}
/* Small button variant for header */
.btnSm{padding:8px 14px; font-size:12px; border-radius:8px}

/* ─── Hero ─── */
.hero{
  padding:48px 0 32px;
  background: linear-gradient(180deg, var(--pinkPale) 0%, var(--bg) 100%);
}
@media (max-width: 900px){
  .hero{padding:24px 0 20px}
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}
.heroGrid>.card{display:flex; flex-direction:column; justify-content:center}
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr; gap:20px}
  .heroGrid h1{font-size:clamp(24px, 6vw, 32px); margin-bottom:12px}
  .heroGrid .lead{margin-bottom:20px; font-size:15px}
  .heroGrid .ctaRow{
    flex-direction:column;
    gap:10px;
  }
  .heroGrid .ctaRow .btn{
    width:100%;
    justify-content:center;
    padding:14px 20px;
    font-size:15px;
  }
  .heroGrid .pillRow{
    justify-content:center;
    gap:6px;
    margin-top:16px;
  }
  .heroGrid .card{padding:20px}
}

/* ─── Cards ─── */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  transition:box-shadow .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
}
.card:hover{
  box-shadow:var(--shadowHover);
  transform:translateY(-2px);
}
.cardStatic{transition:none}
.cardStatic:hover{box-shadow:var(--shadow); transform:none}
@media (max-width: 640px){
  .card{padding:20px}
}

/* ─── Typography ─── */
h1{
  margin:0 0 16px;
  font-size:clamp(28px, 5vw, 44px);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-0.03em;
  color:var(--text);
}
h2{
  margin:0 0 16px;
  font-size:clamp(24px, 4vw, 32px);
  font-weight:700;
  letter-spacing:-0.02em;
  color:var(--text);
}
h3{
  font-weight:600;
  color:var(--text);
  letter-spacing:-0.01em;
}
.lead{
  margin:0 0 24px;
  color:var(--muted);
  font-size:clamp(15px, 2vw, 17px);
  line-height:1.7;
}

/* ─── Icon cards (service cards with SVG) ─── */
.iconCard{
  display:flex;
  flex-direction:column;
  gap:0;
}
.iconCard .cardIcon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--pinkPale);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  flex-shrink:0;
}
.iconCard .cardIcon svg{
  width:22px;
  height:22px;
  color:var(--pink);
  stroke:var(--pink);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.iconCard h3{
  margin:0 0 8px;
  font-size:16px;
}
.iconCard p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

/* ─── Pills ─── */
.pillRow{display:flex; gap:8px; flex-wrap:wrap; margin:20px 0 0}
.pill{
  background:var(--pinkPale);
  color:var(--pink);
  border:1px solid rgba(233,75,122,.15);
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
}
@media (max-width: 480px){
  .pill{padding:5px 12px; font-size:11px}
}

/* ─── Logo Block (hero right) ─── */
.logoBlock{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:16px;
  background: linear-gradient(135deg, rgba(233,75,122,.06) 0%, rgba(233,75,122,.02) 100%);
  border:1px solid rgba(233,75,122,.1);
  text-align:center;
}
.logoBig{
  width:100%;
  max-width:240px;
  height:auto;
  display:block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
@media (max-width: 900px){
  .logoBlock{display:none}
}

/* ─── Sections ─── */
.section{padding:48px 0}
@media (max-width: 900px){.section{padding:40px 0}}
@media (max-width: 640px){.section{padding:32px 0}}

.sectionAlt{background: linear-gradient(180deg, var(--pinkPale) 0%, var(--bg) 100%)}

.muted{color:var(--muted)}

/* ─── Section header with icon ─── */
.sectionHeader{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.sectionHeader .sectionIcon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:var(--pinkPale);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.sectionHeader .sectionIcon svg{
  width:18px;
  height:18px;
  color:var(--pink);
  stroke:var(--pink);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* ─── Grids ─── */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 1024px){.grid3{grid-template-columns: repeat(2, 1fr)}}
@media (max-width: 640px){.grid3{grid-template-columns:1fr; gap:12px}}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
@media (max-width: 640px){.grid2{grid-template-columns:1fr; gap:12px}}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}
@media (max-width: 900px){.contactGrid{grid-template-columns:1fr; gap:16px}}

/* Auto-fit grids */
.autoGrid{display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:16px}
.autoGridNarrow{display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:10px}
.autoGridWide{display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:20px}

/* ─── Steps (how it works) ─── */
.stepCard{
  position:relative;
  padding-left:0;
}
.stepNum{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--pink);
  color:#fff;
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
  flex-shrink:0;
}

/* ─── Key-Value pairs ─── */
.kv{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:8px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  align-items:center;
}
.kv:last-child{border-bottom:none}
.kv b{
  color:var(--mutedLight);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.6px;
}
.kv a{
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  color:var(--text);
  transition:color .2s;
}
.kv a:hover{color:var(--pink)}

/* ─── Footer ─── */
footer{
  padding:40px 0 100px;
  color:var(--muted);
  font-size:13px;
  background:var(--bg);
  border-top:1px solid var(--border);
  margin-top:32px;
}
@media (max-width: 640px){footer{padding:32px 0 80px}}

.footerInner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  flex-wrap:wrap;
}
.footerBrand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.footerBrand img{
  width:32px;
  height:32px;
  border-radius:8px;
}
.footerBrand span{
  font-size:14px;
  font-weight:700;
  color:var(--text);
}
.footerNav{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.footerNav a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  padding:4px 8px;
  border-radius:6px;
  transition:all .2s;
}
.footerNav a:hover{
  color:var(--pink);
  background:var(--pinkPale);
}
.footerCopy{
  color:var(--mutedLight);
  font-size:12px;
  margin-top:8px;
}
.footerRight{
  text-align:right;
}
@media (max-width: 640px){
  .footerInner{flex-direction:column; gap:16px}
  .footerRight{text-align:left}
}

/* ─── Sticky WhatsApp button ─── */
.waSticky{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  display:flex;
  align-items:center;
  gap:8px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:12px 16px;
  border-radius:50px;
  font-weight:700;
  font-size:14px;
  box-shadow: 0 4px 12px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.1);
  transition:all .3s;
  -webkit-tap-highlight-color:transparent;
}
.waSticky:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37,211,102,.4), 0 4px 12px rgba(0,0,0,.12);
}
.waSticky:active{transform:translateY(0) scale(.98)}
.waSticky svg{width:18px; height:18px; fill:#fff; flex-shrink:0}
@media (max-width: 480px){
  .waSticky span{display:none}
  .waSticky{padding:14px; border-radius:50%}
}

/* ─── Highlight card ─── */
.cardHighlight{
  background: linear-gradient(135deg, var(--pinkPale) 0%, rgba(233,75,122,.03) 100%);
  border-color:rgba(233,75,122,.15);
}

/* ─── Pink text ─── */
.pinkHeading{color:var(--pink)}
.pinkLink{color:var(--pink); text-decoration:underline; text-underline-offset:2px}

/* ─── Feature items ─── */
.featureTitle{
  margin:0 0 6px;
  font-size:15px;
  color:var(--pink);
  font-weight:600;
}
.featureText{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:var(--muted);
}

/* ─── Checklist items ─── */
.checkItem{
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
  display:flex;
  align-items:center;
  gap:6px;
}
.checkItem svg{width:14px; height:14px; stroke:var(--pink); fill:none; stroke-width:2.5; flex-shrink:0}

/* ─── Card title sizes ─── */
.cardTitle{margin:0 0 14px; font-size:18px}
.cardTitleLg{margin:0 0 14px; font-size:20px}
.cardTitleXl{margin:0 0 14px; font-size:22px}
.cardSubtitle{margin:0 0 10px; font-size:18px}

/* ─── FAQ ─── */
.faqGrid{display:grid; gap:10px; margin-top:16px}
.faqCard{cursor:default}
.faqCard:hover{transform:none; box-shadow:var(--shadow)}
.faqTitle{margin:0 0 6px; font-size:15px; font-weight:600}
.faqAnswer{margin:0; color:var(--muted); font-size:14px; line-height:1.6}

/* ─── Contact ─── */
.contactIntro{
  margin-top:0;
  margin-bottom:14px;
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}
.contactNote{
  margin:0 0 20px;
  font-size:13px;
  line-height:1.7;
  font-style:italic;
  color:var(--mutedLight);
}

/* ─── Area lists ─── */
.areaCatTitle{margin:0 0 8px; font-size:15px; color:var(--pink); font-weight:600}
.areaCatDesc{margin:0 0 8px; font-size:12px; color:var(--mutedLight)}
.areaList{margin:0; padding-left:16px; color:var(--muted); font-size:13px; line-height:1.9}

/* ─── Commit items ─── */
.commitItem{margin:0; font-size:13px; line-height:1.8; color:var(--muted)}
.commitItem strong{color:var(--text)}

/* ─── Divider ─── */
.divider{
  width:48px;
  height:3px;
  border-radius:2px;
  background:var(--pinkLight);
  margin:16px 0 20px;
}

/* ─── Spacing helpers ─── */
.mb0{margin-bottom:0}
.mb6{margin-bottom:6px}
.mb8{margin-bottom:8px}
.mb10{margin-bottom:10px}
.mb12{margin-bottom:12px}
.mb14{margin-bottom:14px}
.mb16{margin-bottom:16px}
.mb20{margin-bottom:20px}
.mb24{margin-bottom:24px}
.mb32{margin-bottom:32px}
.mb40{margin-bottom:40px}
.mt0{margin-top:0}
.mt8{margin-top:8px}
.mt12{margin-top:12px}
.mt14{margin-top:14px}
.mt16{margin-top:16px}
.mt20{margin-top:20px}
.mt24{margin-top:24px}
.mt32{margin-top:32px}
.mt40{margin-top:40px}

/* ─── Text alignment ─── */
.textCenter{text-align:center}
.ctaRowLeft{justify-content:flex-start}
.ctaRowCenter{justify-content:center}

/* ─── Section images ─── */
.sectionImg{
  width:100%;
  height:auto;
  display:block;
  border-radius:var(--radius);
  object-fit:cover;
  box-shadow:var(--shadow);
}
.imgBanner{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
@media (max-width: 640px){
  .imgBanner{height:160px; border-radius:var(--radiusSmall)}
}
.imgGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.imgGrid img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:var(--radiusSmall);
  box-shadow:var(--shadow);
}
@media (max-width: 640px){
  .imgGrid{grid-template-columns:1fr; gap:10px}
  .imgGrid img{height:160px}
}
.imgRound{
  width:100%;
  max-width:280px;
  height:auto;
  border-radius:50%;
  object-fit:cover;
  box-shadow:var(--shadow);
  aspect-ratio:1;
}

/* ─── SVG illustration panels ─── */
.illustrationPanel{
  width:100%;
  border-radius:var(--radius);
  background: linear-gradient(135deg, var(--pinkPale) 0%, rgba(233,75,122,.06) 100%);
  border:1px solid rgba(233,75,122,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  overflow:hidden;
  min-height:200px;
}
.illustrationPanel svg{
  width:100%;
  max-width:480px;
  height:auto;
}
.illustrationGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.illustrationGrid .illustrationPanel{
  min-height:180px;
  padding:32px 16px;
}
.illustrationGrid .illustrationPanel svg{max-width:240px}
@media (max-width: 640px){
  .illustrationGrid{grid-template-columns:1fr; gap:10px}
  .illustrationPanel{min-height:160px; padding:32px 16px}
}

/* ─── Hero page-load entrance ─── */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px)}
  to{opacity:1; transform:translateY(0)}
}
.hero h1{opacity:0; animation:fadeUp 1.1s cubic-bezier(.16,1,.3,1) .1s both}
.hero .lead{opacity:0; animation:fadeUp 1.1s cubic-bezier(.16,1,.3,1) .22s both}
.hero .ctaRow{opacity:0; animation:fadeUp 1s cubic-bezier(.16,1,.3,1) .36s both}
.hero .pillRow{opacity:0; animation:fadeUp 1s cubic-bezier(.16,1,.3,1) .48s both}
.hero .logoBlock{opacity:0; animation:fadeUp 1.2s cubic-bezier(.16,1,.3,1) .25s both}

/* ─── Scroll reveal animations ─── */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 1.2s cubic-bezier(.16, 1, .3, 1), transform 1.4s cubic-bezier(.16, 1, .3, 1);
  will-change:opacity, transform;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
/* Stagger children in grids */
.reveal-stagger .card,
.reveal-stagger .illustrationPanel,
.reveal-stagger .checkItem,
.reveal-stagger .faqCard,
.reveal-stagger .commitItem,
.reveal-stagger > div{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1.2s cubic-bezier(.16, 1, .3, 1);
}
.reveal-stagger.visible .card,
.reveal-stagger.visible .illustrationPanel,
.reveal-stagger.visible .checkItem,
.reveal-stagger.visible .faqCard,
.reveal-stagger.visible .commitItem,
.reveal-stagger.visible > div{
  opacity:1;
  transform:translateY(0);
}
/* Stagger delays — gentle orderly cascade */
.reveal-stagger.visible .card:nth-child(1),
.reveal-stagger.visible .illustrationPanel:nth-child(1),
.reveal-stagger.visible .checkItem:nth-child(1),
.reveal-stagger.visible .commitItem:nth-child(1),
.reveal-stagger.visible > div:nth-child(1){transition-delay:.06s}
.reveal-stagger.visible .card:nth-child(2),
.reveal-stagger.visible .illustrationPanel:nth-child(2),
.reveal-stagger.visible .checkItem:nth-child(2),
.reveal-stagger.visible .commitItem:nth-child(2),
.reveal-stagger.visible > div:nth-child(2){transition-delay:.12s}
.reveal-stagger.visible .card:nth-child(3),
.reveal-stagger.visible .checkItem:nth-child(3),
.reveal-stagger.visible .commitItem:nth-child(3),
.reveal-stagger.visible > div:nth-child(3){transition-delay:.18s}
.reveal-stagger.visible .card:nth-child(4),
.reveal-stagger.visible .checkItem:nth-child(4),
.reveal-stagger.visible .commitItem:nth-child(4),
.reveal-stagger.visible > div:nth-child(4){transition-delay:.24s}
.reveal-stagger.visible .card:nth-child(5),
.reveal-stagger.visible .checkItem:nth-child(5),
.reveal-stagger.visible .commitItem:nth-child(5),
.reveal-stagger.visible > div:nth-child(5){transition-delay:.30s}
.reveal-stagger.visible .card:nth-child(6),
.reveal-stagger.visible .checkItem:nth-child(6),
.reveal-stagger.visible .commitItem:nth-child(6),
.reveal-stagger.visible > div:nth-child(6){transition-delay:.36s}
.reveal-stagger.visible .card:nth-child(7){transition-delay:.42s}
.reveal-stagger.visible .card:nth-child(8){transition-delay:.48s}
.reveal-stagger.visible .card:nth-child(9){transition-delay:.54s}
.reveal-stagger.visible .checkItem:nth-child(7){transition-delay:.28s}
.reveal-stagger.visible .checkItem:nth-child(8){transition-delay:.32s}
.reveal-stagger.visible .checkItem:nth-child(9){transition-delay:.36s}
.reveal-stagger.visible .checkItem:nth-child(10){transition-delay:.40s}
.reveal-stagger.visible .checkItem:nth-child(11){transition-delay:.44s}
.reveal-stagger.visible .checkItem:nth-child(12){transition-delay:.48s}
.reveal-stagger.visible .checkItem:nth-child(13){transition-delay:.52s}
.reveal-stagger.visible .checkItem:nth-child(14){transition-delay:.56s}
.reveal-stagger.visible .checkItem:nth-child(15){transition-delay:.60s}
.reveal-stagger.visible .checkItem:nth-child(16){transition-delay:.64s}
/* Scale-up variant */
.reveal-scale{
  opacity:0;
  transform:scale(.97) translateY(16px);
  transition:opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1.2s cubic-bezier(.16, 1, .3, 1);
}
.reveal-scale.visible{
  opacity:1;
  transform:scale(1) translateY(0);
}
/* Gentle floating animation on illustration panels */
@keyframes gentleFloat{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}
.illustrationPanel.visible{
  animation:gentleFloat 5s ease-in-out infinite;
  animation-delay:1.2s;
}
.illustrationGrid .illustrationPanel:nth-child(2).visible{
  animation-delay:2.5s;
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero h1, .hero .lead, .hero .ctaRow, .hero .pillRow, .hero .logoBlock,
  .reveal, .reveal-scale,
  .reveal-stagger .card,
  .reveal-stagger .illustrationPanel,
  .reveal-stagger .checkItem,
  .reveal-stagger .faqCard,
  .reveal-stagger .commitItem,
  .reveal-stagger > div{
    opacity:1;
    transform:none;
    transition:none;
    animation:none;
  }
  .illustrationPanel.visible{animation:none}
}

/* ─── Section heading with spacing ─── */
.sectionHeading{margin-top:40px; margin-bottom:20px}
