/* ======================================================
   CHILD CARE LIST AUSTRALIA — DESIGN TOKENS
   ====================================================== */
:root{
  --white:#FFFFFF;
  --bg-tint:#F4FAFA;
  --bg-tint-2:#EEF6F6;

  --teal:#009688;
  --teal-dark:#00695C;
  --teal-darker:#004D40;
  --teal-light:#4DB6AC;
  --teal-tint:#E0F2F1;

  --slate:#607D8B;
  --slate-light:#90A4AE;
  --slate-dark:#37474F;
  --slate-darker:#263238;

  --border:#DCE7E9;
  --border-light:#EAF2F3;

  --shadow-sm: 0 2px 8px rgba(38,50,56,0.05);
  --shadow-md: 0 8px 24px rgba(38,50,56,0.08);
  --shadow-lg: 0 20px 50px rgba(0,77,64,0.12);
  --shadow-teal: 0 10px 30px rgba(0,150,136,0.28);

  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;

  --font-display:'Montserrat', sans-serif;
  --font-body:'Lato', sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  --max-w:1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--slate);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--slate-darker);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-0.01em;
}

.section-inner, .nav-inner, .hero-inner, .footer-inner{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 32px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ======================================================
   SHARED
   ====================================================== */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--teal-light);
  background:rgba(255,255,255,0.08);
  padding:7px 14px;
  border-radius:100px;
  border:1px solid rgba(255,255,255,0.16);
  margin-bottom:20px;
}
.eyebrow-dark{
  color:var(--teal-dark);
  background:var(--teal-tint);
  border:1px solid #CDEAE7;
}
.dot-ping{
  width:7px; height:7px; border-radius:50%;
  background:var(--teal-light);
  box-shadow:0 0 0 0 rgba(77,182,172,0.6);
  animation:ping 2.2s infinite;
}
@keyframes ping{
  0%{box-shadow:0 0 0 0 rgba(77,182,172,0.55);}
  70%{box-shadow:0 0 0 8px rgba(77,182,172,0);}
  100%{box-shadow:0 0 0 0 rgba(77,182,172,0);}
}

.text-gradient{
  background:linear-gradient(100deg, var(--teal) 10%, var(--teal-dark) 55%, var(--slate-dark) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:14.5px;
  padding:13px 24px;
  border-radius:12px;
  transition:transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--teal);
  color:#fff;
  box-shadow:var(--shadow-teal);
}
.btn-primary:hover{ background:var(--teal-dark); transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,150,136,0.36);}
.btn-secondary{
  background:var(--white);
  color:var(--slate-dark);
  border:1.5px solid var(--border);
}
.btn-secondary:hover{ border-color:var(--teal); color:var(--teal-dark); transform:translateY(-2px); }
.btn-ghost{
  color:var(--slate-dark);
  font-weight:600;
  padding:13px 18px;
}
.btn-ghost:hover{ color:var(--teal-dark); }
.btn-lg{ padding:16px 30px; font-size:15.5px; border-radius:14px; }

.lead{ font-size:18px; color:var(--slate); max-width:640px; }
.lead.light{ color:#B8CBCF; }

.section{ padding:120px 0; position:relative; }
.section-head{ max-width:680px; margin-bottom:56px; }
.section-head h2{ font-size:38px; margin-bottom:16px; }
.section-head h2.light{ color:#fff; }

/* fade-up animation */
.fade-up{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible{ opacity:1; transform:translateY(0); }
.delay-1{ transition-delay:0.1s; }
.delay-2{ transition-delay:0.2s; }
.delay-3{ transition-delay:0.3s; }
.delay-4{ transition-delay:0.4s; }

.placeholder-block{
  border:2px dashed var(--border);
  border-radius:var(--radius-md);
  background:var(--bg-tint);
  color:var(--slate-light);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px;
  min-height:180px;
  text-align:center;
  font-size:13px;
  font-family:var(--font-mono);
  padding:20px;
}
.placeholder-block i{ font-size:26px; color:var(--teal-light); }
.placeholder-teal{ background:var(--teal-tint); border-color:#BFE3E0; }
.placeholder-large{ min-height:340px; }
.placeholder-map{ min-height:220px; }

/* ======================================================
   NAV
   ====================================================== */
.nav{
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,0.78);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--border-light);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.nav-logo img{ height:34px; width:auto; }
.nav-links{ display:flex; gap:34px; }
.nav-links a{
  font-size:14.5px; font-weight:600; color:var(--slate-dark);
  transition:color 0.2s;
  position:relative;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px;
  background:var(--teal); transition:width 0.25s var(--ease);
}
.nav-links a:hover{ color:var(--teal-dark); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:6px; }
.nav-burger{
  display:none;
  align-items:center; justify-content:center;
  width:40px; height:40px;
  font-size:20px; color:var(--slate-dark);
  border-radius:10px;
}
.nav-burger:hover{ background:var(--bg-tint); }
.nav-mobile{
  display:none;
  flex-direction:column;
  gap:4px;
  padding:12px 32px 24px;
  border-top:1px solid var(--border-light);
  background:var(--white);
}
.nav-mobile.open{ display:flex; }
.nav-mobile a{ padding:12px 4px; font-weight:600; color:var(--slate-dark); border-bottom:1px solid var(--border-light); }
.nav-mobile .btn{ margin-top:10px; justify-content:flex-start; }

/* ======================================================
   HERO
   ====================================================== */
.hero{
  position:relative;
  padding:96px 0 110px;
  overflow:hidden;
  background:linear-gradient(180deg, var(--bg-tint) 0%, var(--white) 78%);
}
.hero-blobs{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:0.5;
  animation:drift 16s ease-in-out infinite;
}
.blob-a{
  width:520px; height:520px;
  background:radial-gradient(circle at 30% 30%, #B2DFDB, transparent 70%);
  top:-180px; right:-120px;
}
.blob-b{
  width:420px; height:420px;
  background:radial-gradient(circle at 60% 40%, #CFD8DC, transparent 70%);
  bottom:-160px; left:-140px;
  animation-delay:-8s;
}
@keyframes drift{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(30px,-24px) scale(1.06); }
}
.node-grid{
  position:absolute; inset:0;
  background-image: radial-gradient(circle, #B0CFCB 1px, transparent 1px);
  background-size:34px 34px;
  opacity:0.35;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 70% 20%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 50% at 70% 20%, black 0%, transparent 70%);
}

.hero-inner{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.hero h1{
  font-size:52px;
  margin-bottom:22px;
}
.hero-sub{
  font-size:18px;
  color:var(--slate);
  max-width:520px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:26px; }
.hero-trustline{
  font-size:13.5px; color:var(--slate-light);
  display:flex; align-items:center; flex-wrap:wrap; gap:4px;
}
.hero-trustline i{ color:var(--teal); margin-right:2px; }

/* Hero spreadsheet mockup */
.hero-visual{ position:relative; }
.browser-window{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border-light);
  overflow:hidden;
  transform:rotate(1.2deg);
  animation:float-window 7s ease-in-out infinite;
}
@keyframes float-window{
  0%,100%{ transform:rotate(1.2deg) translateY(0); }
  50%{ transform:rotate(0.4deg) translateY(-12px); }
}
.browser-bar{
  display:flex; align-items:center; gap:14px;
  padding:12px 16px;
  background:var(--bg-tint-2);
  border-bottom:1px solid var(--border-light);
}
.browser-dots{ display:flex; gap:6px; }
.browser-dots span{ width:10px; height:10px; border-radius:50%; background:#D8E4E5; }
.browser-dots span:nth-child(1){ background:#FF8A80; }
.browser-dots span:nth-child(2){ background:#FFD180; }
.browser-dots span:nth-child(3){ background:#A5D6A7; }
.browser-url{
  font-family:var(--font-mono); font-size:11.5px; color:var(--slate);
  background:var(--white); border:1px solid var(--border-light);
  padding:5px 12px; border-radius:8px;
  display:flex; align-items:center; gap:6px;
}
.sheet{ padding:18px; }
.sheet-toolbar{
  display:flex; align-items:center; justify-content:space-between;
  font-family:var(--font-mono); font-size:11.5px; color:var(--slate);
  margin-bottom:10px;
}
.sheet-count{ color:var(--teal-dark); font-weight:600; }
.sheet-grid{ border:1px solid var(--border-light); border-radius:10px; overflow:hidden; }
.sheet-row{
  display:grid;
  grid-template-columns:0.4fr 1.6fr 1.8fr 1fr 0.7fr 1.2fr;
  font-size:11.5px;
  font-family:var(--font-mono);
}
.sheet-row span{
  padding:9px 10px;
  border-bottom:1px solid var(--border-light);
  border-right:1px solid var(--border-light);
  color:var(--slate-dark);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.sheet-row span:last-child{ border-right:none; }
.sheet-row:last-child span{ border-bottom:none; }
.sheet-head{ background:var(--teal); }
.sheet-head span{ color:#fff; font-weight:700; border-color:rgba(255,255,255,0.18); }
.sheet-row.highlight{ background:var(--teal-tint); }
.sheet-row.ghost span{ color:var(--slate-light); text-align:center; }

.float-card{
  position:absolute;
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border:1px solid var(--border-light);
  padding:14px 18px;
  border-radius:16px;
  box-shadow:var(--shadow-md);
  animation:float-card 5s ease-in-out infinite;
}
.float-card i{ font-size:20px; color:var(--teal); }
.float-card div{ display:flex; flex-direction:column; line-height:1.2; }
.float-card strong{ font-family:var(--font-display); font-size:16px; color:var(--slate-darker); }
.float-card span{ font-size:11px; color:var(--slate-light); }
.float-card-a{ top:-8%; left:-6%; animation-delay:-1s; }
.float-card-b{ bottom:-6%; right:-4%; animation-delay:-3s; }
@keyframes float-card{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ======================================================
   TRUST BAR
   ====================================================== */
.trustbar{
  background:var(--white);
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
  padding:44px 0;
}
.trustbar-inner{
  max-width:var(--max-w); margin:0 auto; padding:0 32px;
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.trust-stat{ text-align:center; }
.counter, .counter-static{
  display:block;
  font-family:var(--font-display);
  font-size:32px; font-weight:800;
  color:var(--teal-dark);
}
.trust-stat label{
  font-size:12.5px; color:var(--slate-light);
  text-transform:uppercase; letter-spacing:0.05em;
}

/* ======================================================
   WHY WE BUILT THIS
   ====================================================== */
.why{ background:var(--white); }
.why-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start;
}
.why h2{ font-size:36px; margin-bottom:20px; }
.why-copy p{ margin-bottom:16px; color:var(--slate); }
.why-copy .lead{ color:var(--slate-dark); font-weight:500; }

.why-timeline{ position:relative; padding-left:8px; }
.timeline-item{
  display:grid; grid-template-columns:44px 1fr; gap:18px;
  padding-bottom:36px;
  position:relative;
}
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:'';
  position:absolute;
  left:21px; top:44px; bottom:0;
  width:2px;
  background:linear-gradient(var(--teal-tint), var(--border-light));
}
.timeline-item:last-child::before{ display:none; }
.timeline-icon{
  width:44px; height:44px; border-radius:12px;
  background:var(--teal-tint);
  color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
  flex-shrink:0;
  z-index:1;
}
.timeline-tag{
  font-family:var(--font-mono); font-size:11px; color:var(--teal);
  text-transform:uppercase; letter-spacing:0.05em;
}
.timeline-item h4{ font-size:17px; margin:4px 0 6px; }
.timeline-item p{ font-size:14.5px; color:var(--slate); }

/* ======================================================
   COMPARE
   ====================================================== */
.compare{ background:var(--bg-tint); }
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.compare-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:36px;
  border:1px solid var(--border-light);
  box-shadow:var(--shadow-sm);
}
.compare-card-head{ display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.compare-card-head i{ font-size:20px; }
.compare-card-head h3{ font-size:20px; }
.compare-bad .compare-card-head i{ color:#E57373; }
.compare-good{ border-color:#BFE3E0; box-shadow:var(--shadow-md); transform:scale(1.02); }
.compare-good .compare-card-head i{ color:var(--teal); }
.compare-card ul{ margin-bottom:26px; }
.compare-card li{
  display:flex; align-items:center; gap:10px;
  font-size:14.5px; padding:9px 0;
  border-bottom:1px solid var(--border-light);
  color:var(--slate-dark);
}
.compare-card li:last-child{ border-bottom:none; }
.compare-bad li i{ color:#E57373; width:14px; }
.compare-good li i{ color:var(--teal); width:14px; }

/* ======================================================
   INCLUDED FIELDS
   ====================================================== */
.included{ background:var(--white); }
.field-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.field-card{
  display:flex; align-items:center; gap:12px;
  padding:18px 20px;
  background:var(--bg-tint);
  border:1px solid var(--border-light);
  border-radius:var(--radius-sm);
  transition:transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  font-weight:600; color:var(--slate-dark); font-size:14.5px;
}
.field-card i{ color:var(--teal); font-size:16px; width:18px; }
.field-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:#BFE3E0; }
.field-card-more{ background:var(--teal-tint); color:var(--teal-dark); }
.field-card-more i{ color:var(--teal-dark); }

/* ======================================================
   SCREENSHOTS CAROUSEL
   ====================================================== */
.screenshots{ background:var(--bg-tint); }
.carousel{ max-width:var(--max-w); margin:0 auto; padding:0 32px; }
.carousel-track{
  display:flex; gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:12px;
  scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{ display:none; }
.carousel-slide{
  flex:0 0 70%;
  scroll-snap-align:center;
}
.carousel-dots{ display:flex; justify-content:center; gap:8px; margin-top:18px; }
.carousel-dots span{
  width:7px; height:7px; border-radius:50%;
  background:var(--border);
  cursor:pointer;
  transition:background 0.25s, width 0.25s;
}
.carousel-dots span.active{ background:var(--teal); width:22px; border-radius:5px; }

/* ======================================================
   DATA QUALITY DASHBOARD (dark)
   ====================================================== */
.quality{
  background:linear-gradient(160deg, var(--teal-darker) 0%, #062A26 60%, var(--slate-darker) 100%);
}
.dash-grid{
  display:grid; grid-template-columns:1.2fr 1.2fr 0.9fr;
  gap:22px;
}
.dash-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(6px);
  border-radius:var(--radius-md);
  padding:26px;
}
.dash-card h4{ color:#fff; font-size:14px; margin-bottom:20px; font-weight:600; }

.bar-chart{ display:flex; flex-direction:column; gap:12px; }
.bar-row{ display:grid; grid-template-columns:44px 1fr; align-items:center; gap:10px; }
.bar-label{ font-size:12px; color:#B8CBCF; font-family:var(--font-mono); }
.bar{ background:rgba(255,255,255,0.08); border-radius:6px; height:20px; overflow:hidden; }
.bar-fill{
  height:100%;
  width:0;
  background:linear-gradient(90deg, var(--teal-light), var(--teal));
  border-radius:6px;
  display:flex; align-items:center; justify-content:flex-end;
  color:#04302A; font-size:10px; font-weight:700; padding-right:8px;
  font-family:var(--font-mono);
  transition:width 1.4s var(--ease);
}
.bar-fill.animate{ width:var(--w); }

.pie-wrap{ display:flex; align-items:center; gap:20px; }
.pie{
  width:96px; height:96px; border-radius:50%; flex-shrink:0;
  background: conic-gradient(
    var(--teal-light) 0% calc(var(--p1) * 1%),
    var(--teal) calc(var(--p1) * 1%) calc((var(--p1) + var(--p2)) * 1%),
    #B0BEC5 calc((var(--p1) + var(--p2)) * 1%) 100%
  );
}
.pie-legend{ font-size:12.5px; color:#CFE0DF; display:flex; flex-direction:column; gap:8px; }
.pie-legend li{ display:flex; align-items:center; gap:8px; }
.dot{ width:9px; height:9px; border-radius:50%; }
.dot-1{ background:var(--teal-light); }
.dot-2{ background:var(--teal); }
.dot-3{ background:#B0BEC5; }

.ring-wrap{ position:relative; display:flex; align-items:center; justify-content:center; }
.ring{ width:120px; height:120px; transform:rotate(-90deg); }
.ring-track{ fill:none; stroke:rgba(255,255,255,0.1); stroke-width:10; }
.ring-fill{
  fill:none; stroke:var(--teal-light); stroke-width:10; stroke-linecap:round;
  stroke-dasharray:326.7; stroke-dashoffset:326.7;
  transition:stroke-dashoffset 1.6s var(--ease);
}
.ring-fill.animate{ stroke-dashoffset:0; }
.ring-label{
  position:absolute; display:flex; flex-direction:column; align-items:center;
  color:#fff;
}
.ring-label strong{ font-family:var(--font-display); font-size:22px; }
.ring-label span{ font-size:10.5px; color:#9FC0BE; }

.cadence-wrap{ display:flex; flex-direction:column; gap:16px; }
.cadence-badge{
  display:inline-flex; align-items:center; gap:8px;
  align-self:flex-start;
  font-family:var(--font-mono); font-size:11.5px;
  color:var(--teal-light);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  padding:7px 12px; border-radius:100px;
}
.cadence-badge i{ font-size:11px; }
.cadence-row{
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:#B8CBCF;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.cadence-row strong{ color:#fff; font-family:var(--font-display); font-weight:600; font-size:13.5px; }
.cadence-bar{ margin-top:2px; }
.cadence-bar .bar-fill{ justify-content:center; }

.dash-card .placeholder-map{
  background:rgba(255,255,255,0.04);
  border-color:rgba(255,255,255,0.14);
  color:#7FA9A5;
  min-height:150px;
}
.dash-card .placeholder-map i{ color:var(--teal-light); }

/* ======================================================
   SAMPLE DOWNLOAD CTA
   ====================================================== */
.sample{ padding:100px 0; }
.sample-card{
  max-width:800px; margin:0 auto;
  text-align:center;
  background:linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius:var(--radius-lg);
  padding:70px 40px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-teal);
}
.node-bg{
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:0.5;
}
.sample-icon{ font-size:38px; margin-bottom:18px; position:relative; }
.sample-card h2{ color:#fff; font-size:32px; margin-bottom:10px; position:relative; }
.sample-card p{ font-size:16px; color:rgba(255,255,255,0.85); margin-bottom:28px; position:relative; }
.sample-card .btn-primary{ background:#fff; color:var(--teal-dark); box-shadow:0 10px 26px rgba(0,0,0,0.15); position:relative; }
.sample-card .btn-primary:hover{ background:var(--bg-tint); transform:translateY(-2px); }
.sample-note{
  display:block; margin-top:16px; font-size:12.5px; color:rgba(255,255,255,0.7);
  position:relative;
}

/* ======================================================
   PRICING
   ====================================================== */
.pricing{ background:var(--white); }
.pricing-card{
  max-width:920px; margin:0 auto;
  display:grid; grid-template-columns:1.3fr 1fr;
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.pricing-left{ padding:48px; }
.pricing-badge{
  display:inline-block;
  font-family:var(--font-mono); font-size:11.5px;
  color:var(--teal-dark); background:var(--teal-tint);
  padding:6px 12px; border-radius:100px; margin-bottom:18px;
}
.pricing-left h3{ font-size:24px; margin-bottom:22px; }
.pricing-features{ display:flex; flex-direction:column; gap:13px; }
.pricing-features li{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--slate-dark); }
.pricing-features i{ color:var(--teal); }
.pricing-right{
  background:var(--bg-tint);
  padding:48px 40px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  border-left:1px solid var(--border-light);
}
.price-tag{ display:flex; align-items:baseline; gap:6px; }
.price-currency{ font-family:var(--font-mono); font-size:14px; color:var(--slate-light); }
.price-amount{ font-family:var(--font-display); font-size:48px; font-weight:800; color:var(--slate-darker); }
.price-sub{ font-size:12.5px; color:var(--slate-light); margin-bottom:26px; }
.payment-buttons{ display:flex; flex-direction:column; gap:10px; width:100%; margin-bottom:18px; }
.pay-placeholder{
  border:1.5px dashed var(--border);
  border-radius:12px;
  padding:13px;
  font-size:13px;
  color:var(--slate-light);
  font-family:var(--font-mono);
  display:flex; align-items:center; justify-content:center; gap:8px;
  background:var(--white);
}
.pay-placeholder i{ font-size:16px; }
.price-note{ font-size:11.5px; color:var(--slate-light); }
.price-note i{ margin-right:4px; }

/* ======================================================
   FAQ
   ====================================================== */
.faq{ background:var(--bg-tint); }
.faq-inner{ max-width:800px; }
.accordion-item{
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-sm);
  margin-bottom:12px;
  overflow:hidden;
}
.accordion-trigger{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px;
  font-family:var(--font-display);
  font-weight:600; font-size:15px;
  color:var(--slate-darker);
  text-align:left;
}
.accordion-trigger i{ color:var(--teal); transition:transform 0.3s var(--ease); flex-shrink:0; margin-left:16px; }
.accordion-item.open .accordion-trigger i{ transform:rotate(180deg); }
.accordion-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s var(--ease);
}
.accordion-panel p{ padding:0 24px 20px; font-size:14.5px; color:var(--slate); }

/* ======================================================
   FOOTER
   ====================================================== */
.footer{ background:var(--slate-darker); padding:40px 0; }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.footer-logo img{ height:26px; filter:brightness(0) invert(1); opacity:0.9; }
.footer-links{ display:flex; gap:26px; }
.footer-links a{ font-size:13.5px; color:#90A4AE; transition:color 0.2s; }
.footer-links a:hover{ color:#fff; }
.footer-copy{ font-size:12.5px; color:#607D8B; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero h1{ font-size:40px; }
  .why-grid{ grid-template-columns:1fr; gap:48px; }
  .compare-grid{ grid-template-columns:1fr; }
  .compare-good{ transform:none; }
  .field-grid{ grid-template-columns:repeat(3,1fr); }
  .dash-grid{ grid-template-columns:1fr; }
  .pricing-card{ grid-template-columns:1fr; }
  .pricing-right{ border-left:none; border-top:1px solid var(--border-light); }
  .trustbar-inner{ grid-template-columns:repeat(3,1fr); row-gap:28px; }
}

@media (max-width: 720px){
  .nav-links, .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
  .section{ padding:80px 0; }
  .section-head h2{ font-size:28px; }
  .hero{ padding:56px 0 80px; }
  .hero h1{ font-size:32px; }
  .float-card{ display:none; }
  .field-grid{ grid-template-columns:repeat(2,1fr); }
  .dash-grid{ grid-template-columns:1fr; }
  .carousel-slide{ flex:0 0 88%; }
  .pricing-left, .pricing-right{ padding:32px 26px; }
  .trustbar-inner{ grid-template-columns:repeat(2,1fr); }
  .footer-inner{ flex-direction:column; text-align:center; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--teal);
  outline-offset:3px;
  border-radius:6px;
}
