
:root{
  --orange:#E97724;
  --orange-soft:#FFF1E5;
  --orange-deep:#C45D14;
  --navy:#0F1A33;
  --navy-soft:#2A3956;
  --ink:#0B1224;
  --muted:#4B5563;
  --line:#E2E5EA;
  --card-shadow:0 1px 3px rgba(15,23,42,0.04), 0 4px 12px rgba(15,23,42,0.04);
  --card-shadow-hover:0 4px 12px rgba(15,23,42,0.06), 0 12px 28px rgba(15,23,42,0.08);
  --paper:#FFFFFF;
  --paper-2:#F6F7F9;
  --white:#FFFFFF;
  --green:#1F7A4D;
  --serif:-apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
  --sans:-apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Inter', system-ui, sans-serif;
  --mono:'JetBrains Mono', ui-monospace, monospace;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--sans);
  background:var(--paper);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-feature-settings:'cv11','ss01','cv02';
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{
  font-feature-settings:'cv11','ss01','cv02';
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce{
  background:var(--navy);
  color:#fff;
  padding:10px 24px;
  text-align:center;
  font-size:13px;
  letter-spacing:0.01em;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-weight:500;
}
.announce .pulse{
  width:7px;height:7px;border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 0 rgba(233,119,36,0.7);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(233,119,36,0.7);}
  70%{box-shadow:0 0 0 8px rgba(233,119,36,0);}
  100%{box-shadow:0 0 0 0 rgba(233,119,36,0);}
}
.announce a{color:var(--orange);text-decoration:none;font-weight:600;border-bottom:1px solid transparent;transition:border-color .2s;}
.announce a:hover{border-bottom-color:var(--orange);}

/* ============ NAV ============ */
nav{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  padding:18px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  display:flex;align-items:center;gap:10px;
  font-family:var(--serif);
  font-size:26px;
  font-weight:500;
  color:var(--navy);
  letter-spacing:-0.02em;
}
.logo-mark{
  width:38px;height:38px;
  border-radius:9px;
  display:block;
  flex-shrink:0;
  object-fit:contain;
}
.nav-links{
  display:flex;gap:36px;
  font-size:14px;
  font-weight:500;
}
.nav-links a{
  color:var(--ink);
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
}
.nav-links a:hover{color:var(--orange);}
.nav-cta{
  display:flex;gap:12px;align-items:center;
}
.mobile-nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(15,23,42,0.08);
}
.mobile-nav-toggle span{
  width:17px;
  height:2px;
  border-radius:999px;
  background:var(--ink);
  transition:transform .2s ease, opacity .2s ease;
}
.mobile-nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.mobile-nav-toggle.open span:nth-child(2){opacity:0;}
.mobile-nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
.btn{
  padding:11px 20px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid transparent;
  transition:all .2s ease;
  cursor:pointer;
  font-family:var(--sans);
}
.btn-ghost{color:var(--ink);background:transparent;}
.btn-ghost:hover{background:var(--paper-2);}
.btn-primary{background:var(--orange);color:#fff;}
.btn-primary:hover{background:var(--orange-deep);transform:translateY(-1px);}
.btn-outline{border-color:var(--ink);color:var(--ink);background:transparent;}
.btn-outline:hover{background:var(--ink);color:#fff;}
.btn-navy{background:var(--navy);color:#fff;}
.btn-navy:hover{background:var(--navy-soft);}
.btn-lg{padding:15px 26px;font-size:15px;}

/* ============ HERO ============ */
.hero{
  padding:100px 48px 120px;
  max-width:1320px;
  margin:0 auto;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:72px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;
  background:var(--orange-soft);
  color:var(--orange-deep);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  border-radius:999px;
  margin-bottom:28px;
}
.eyebrow-dot{
  width:6px;height:6px;background:var(--orange);border-radius:50%;
}
h1{
  font-family:var(--serif);
  font-size:clamp(40px, 5.5vw, 70px);
  font-weight:400;
  line-height:1.05;
  color:var(--navy);
  letter-spacing:-0.025em;
  margin-bottom:28px;
}
h1 em{
  font-style:normal;
  color:var(--orange);
  font-weight:500;
}
.hero-sub{
  font-size:19px;
  color:var(--muted);
  line-height:1.65;
  max-width:560px;
  margin-bottom:44px;
}
.hero-ctas{
  display:flex;gap:14px;align-items:center;flex-wrap:wrap;
  margin-bottom:56px;
}
.trial-tag{
  font-size:13px;
  color:var(--muted);
  display:flex;align-items:center;gap:8px;
}
.trial-tag svg{color:var(--green);}
.trust-strip{
  display:flex;
  gap:56px;
  padding-top:40px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.trust-item .num{
  font-family:var(--serif);
  font-size:32px;
  font-weight:500;
  color:var(--navy);
  letter-spacing:-0.02em;
  line-height:1;
}
.trust-item .lbl{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:0.08em;
}

/* Hero visual: stacked dashboard mockup */
.hero-visual{
  position:relative;
  height:560px;
}
.dash-card{
  position:absolute;
  background:#fff;
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow:0 30px 60px -20px rgba(26,37,64,0.18), 0 10px 20px -10px rgba(26,37,64,0.08);
  padding:24px;
}
.dash-main{
  top:20px;left:0;right:40px;
  height:340px;
}
.dash-main-header{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:24px;
}
.dash-title{
  font-size:13px;color:var(--muted);
  text-transform:uppercase;letter-spacing:0.1em;font-weight:600;
}
.dash-period{
  font-size:11px;color:var(--muted);
  padding:4px 10px;
  background:var(--paper-2);
  border-radius:6px;
}
.dash-stat-row{display:flex;gap:24px;margin-bottom:24px;}
.dash-stat{flex:1;}
.dash-stat-num{
  font-family:var(--serif);
  font-size:32px;
  font-weight:500;
  color:var(--navy);
  letter-spacing:-0.02em;
  display:flex;align-items:baseline;gap:6px;
}
.dash-stat-num .up{
  font-size:12px;color:var(--green);font-family:var(--sans);font-weight:600;
}
.dash-stat-lbl{font-size:11px;color:var(--muted);margin-top:4px;text-transform:uppercase;letter-spacing:0.06em;}
.dash-chart{
  height:140px;
  background:linear-gradient(180deg, rgba(233,119,36,0.08) 0%, rgba(233,119,36,0) 100%);
  border-radius:10px;
  position:relative;
  overflow:hidden;
}
.dash-chart svg{width:100%;height:100%;}

/* Floating WhatsApp card */
.dash-wa{
  bottom:60px;left:-30px;
  width:260px;
  padding:18px;
  background:#fff;
  animation:float 6s ease-in-out infinite;
}
.dash-wa-hdr{
  display:flex;align-items:center;gap:10px;margin-bottom:12px;
}
.wa-ic{
  width:32px;height:32px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:14px;
}
.wa-name{font-size:13px;font-weight:600;color:var(--navy);}
.wa-time{font-size:10px;color:var(--muted);}
.wa-msg{
  font-size:12px;color:#3a4257;
  background:var(--paper-2);
  padding:10px 12px;
  border-radius:8px 8px 8px 2px;
  margin-bottom:8px;
}
.wa-msg strong{color:var(--navy);}
.wa-tick{font-size:10px;color:#25D366;text-align:right;}

/* Floating critical alert card */
.dash-alert{
  left:285px;right:auto;bottom:70px;top:auto;
  width:240px;
  padding:16px;
  animation:float2 5s ease-in-out infinite;
}
.alert-hdr{
  display:flex;align-items:center;gap:8px;margin-bottom:8px;
}
.alert-dot{
  width:8px;height:8px;background:#DC2626;border-radius:50%;
  box-shadow:0 0 0 0 rgba(220,38,38,0.6);
  animation:pulse-red 1.8s infinite;
}
@keyframes pulse-red{
  0%{box-shadow:0 0 0 0 rgba(220,38,38,0.6);}
  70%{box-shadow:0 0 0 6px rgba(220,38,38,0);}
  100%{box-shadow:0 0 0 0 rgba(220,38,38,0);}
}
.alert-lbl{font-size:10px;color:#DC2626;text-transform:uppercase;letter-spacing:0.08em;font-weight:600;}
.alert-title{font-size:13px;font-weight:600;color:var(--navy);margin-bottom:4px;}
.alert-desc{font-size:11px;color:var(--muted);line-height:1.4;}
.alert-val{
  margin-top:10px;
  font-family:var(--mono);
  font-size:11px;
  color:var(--orange-deep);
  background:var(--orange-soft);
  padding:5px 8px;
  border-radius:5px;
  display:inline-block;
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}
@keyframes float2{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(10px);}
}

/* ============ MARQUEE (logos / contexts) ============ */
.context-strip{
  padding:40px 48px;
  background:var(--paper-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.context-inner{
  max-width:1400px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:30px;
}
.context-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--muted);
  font-weight:600;
}
.context-items{
  display:flex;gap:40px;flex-wrap:wrap;
}
.context-item{
  font-family:var(--serif);
  font-style:normal;
  font-size:18px;
  color:var(--navy);
  opacity:0.7;
}

/* ============ SECTION BASE ============ */
section{padding:140px 48px;}
.container{max-width:1320px;margin:0 auto;}
.section-header{
  max-width:760px;margin:0 auto 96px;text-align:center;
}
.section-eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:24px;
}
h2{
  font-family:var(--serif);
  font-size:clamp(34px, 4vw, 52px);
  font-weight:400;
  line-height:1.12;
  letter-spacing:-0.022em;
  color:var(--navy);
  margin-bottom:24px;
}
h2 em{font-style:normal;color:var(--orange);font-weight:500;}
.section-sub{
  font-size:18px;
  color:var(--muted);
  line-height:1.65;
}

/* ============ OUTCOMES ============ */
.outcomes{
  background:var(--paper);
}
.outcomes-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:32px;
}
.outcome{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:52px 48px;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  box-shadow:var(--card-shadow);
}
.outcome:hover{
  border-color:var(--navy);
  transform:translateY(-4px);
  box-shadow:var(--card-shadow-hover)!important;
  box-shadow:0 20px 40px -20px rgba(26,37,64,0.15);
}
.outcome-1{grid-column:span 7;}
.outcome-2{grid-column:span 5;}
.outcome-3{grid-column:span 5;}
.outcome-4{grid-column:span 7;}
.outcome-5{grid-column:span 12;background:var(--navy);color:#fff;border-color:var(--navy);}
.outcome-5 h3{color:#fff!important;}
.outcome-5 h3 em{color:var(--orange)!important;}
.outcome-5 p{color:#fff!important;}
.outcome-5 .outcome-num{color:var(--orange)!important;}
.outcome-5 .metric-mini .v{color:var(--orange)!important;}
.outcome-5 .metric-mini .v em{color:var(--orange)!important;}
.outcome-5 .metric-mini .l{color:#fff!important;}
.outcome-num{
  font-family:var(--serif);
  font-style:normal;
  font-size:14px;
  color:var(--orange);
  margin-bottom:32px;
  display:flex;align-items:center;gap:12px;
  text-transform:uppercase;letter-spacing:0.08em;font-weight:600;
}
.outcome-num::after{
  content:'';flex:1;height:1px;background:var(--line);
}
.outcome-5 .outcome-num::after{background:rgba(255,255,255,0.15);}
.outcome h3{
  font-family:var(--serif);
  font-size:32px;
  font-weight:500;
  letter-spacing:-0.015em;
  color:var(--navy);
  line-height:1.18;
  margin-bottom:20px;
}
.outcome h3 em{font-style:normal;color:var(--orange);font-weight:400;}
.outcome p{
  color:var(--muted);
  font-size:15.5px;
  line-height:1.7;
}
.outcome-visual{
  margin-top:36px;
  padding:24px;
  background:var(--paper-2);
  border-radius:14px;
  border:1px solid var(--line);
}
.outcome-5 .outcome-visual{
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.1);
}
.outcome-metrics{
  display:flex;gap:32px;
  margin-top:28px;
}
.metric-mini .v{
  font-family:var(--serif);
  font-size:36px;
  font-weight:500;
  color:#fff;
  letter-spacing:-0.02em;
  line-height:1;
}
.metric-mini .v em{font-style:normal;color:var(--orange);font-weight:400;}
.metric-mini .l{
  font-size:12px;
  color:rgba(255,255,255,0.6);
  margin-top:8px;
  text-transform:uppercase;
  letter-spacing:0.06em;
}

/* Inline mini visuals */
.tat-bar{
  display:flex;gap:8px;align-items:center;
  font-size:12px;
}
.tat-bar .label{width:90px;color:var(--muted);}
.tat-bar .bar{flex:1;height:8px;background:var(--paper-2);border-radius:4px;overflow:hidden;}
.tat-bar .fill{height:100%;background:var(--orange);border-radius:4px;}
.tat-bar .fill.before{background:#C4C9D2;width:85%;}
.tat-bar .fill.after{background:var(--orange);width:42%;}
.tat-bar .val{width:60px;text-align:right;font-family:var(--mono);color:var(--ink);font-size:11px;}

.repeat-chart{
  display:flex;align-items:flex-end;gap:5px;height:52px;
}
.repeat-chart .bar{
  flex:1;background:var(--orange-soft);border-radius:3px 3px 0 0;
  position:relative;
}
.repeat-chart .bar.active{background:var(--orange);}
.repeat-chart .bar.active::after{
  content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%);
  width:6px;height:6px;background:var(--orange);border-radius:50%;
  border:2px solid #fff;
}

.center-pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:4px 10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:11px;
  margin:3px;
  color:var(--navy);
  font-weight:500;
}
.center-pill .dot{width:5px;height:5px;background:var(--green);border-radius:50%;}

/* ============ AUTOMATION (Why automation matters) ============ */
.automation{
  background:var(--paper-2);
  border-top:1px solid var(--line);
}
.auto-grid{
  display:grid;
  grid-template-columns:0.85fr 1.2fr;
  gap:100px;
  align-items:start;
}
.auto-text{position:sticky;top:140px;}
.auto-text h2{margin-bottom:28px;}
.auto-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--line);
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
}
.auto-card{
  background:#fff;
  padding:44px 40px;
  display:flex;
  gap:20px;
  align-items:flex-start;
  transition:background .2s ease;
}
.auto-card:hover{background:var(--paper-2);}
.auto-card-num{
  font-family:var(--serif);
  font-style:normal;
  font-size:24px;
  color:var(--orange);
  line-height:1;
  flex-shrink:0;
  padding-top:2px;
}
.auto-card-content h5{
  font-family:var(--serif);
  font-size:18px;
  font-weight:500;
  letter-spacing:-0.01em;
  color:var(--navy);
  margin-bottom:8px;
  line-height:1.2;
}
.auto-card-content p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.55;
}

/* ============ SMART CHECKS ============ */
.smart-checks{
  background:var(--white);
  border-top:1px solid var(--line);
}
.smart-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:40px;
  max-width:920px;
  margin:0 auto;
}
.smart-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:all .3s ease;
  max-width:440px;
  width:100%;
  justify-self:center;
  box-shadow:var(--card-shadow);
}
.smart-card:hover{
  border-color:var(--orange);
  transform:translateY(-3px);
  box-shadow:0 18px 36px -20px rgba(26,37,64,0.10);
}
.smart-card-eyebrow{
  font-size:10px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--orange-deep);
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.smart-card-eyebrow::before{
  content:'';
  width:5px;height:5px;
  background:var(--orange);
  border-radius:50%;
}
.smart-demo{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.smart-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:6px 0;
  font-size:12px;
}
.smart-row + .smart-row{
  border-top:1px dashed var(--line);
}
.smart-row-label{
  color:var(--muted);
  font-weight:500;
}
.smart-row-label-sub{
  font-size:10px;
  color:var(--muted);
  opacity:0.7;
  display:block;
  margin-top:2px;
  font-weight:400;
}
.smart-row-value{
  font-family:var(--mono);
  font-size:12.5px;
  font-weight:600;
  color:var(--ink);
}
.smart-row-value.error{
  color:#DC2626;
  background:#FEE2E2;
  padding:3px 8px;
  border-radius:5px;
}
.smart-row-value.critical{
  color:#991B1B;
  background:#FEE2E2;
  padding:3px 8px;
  border-radius:5px;
}
.smart-row-value.warn{
  color:#92400E;
  background:#FEF3C7;
  padding:3px 8px;
  border-radius:5px;
}
.smart-row-value.ok{
  color:#065F46;
}
.smart-row-value.muted{
  color:var(--muted);
  font-size:12px;
}
.smart-row-equation{
  font-family:var(--mono);
  font-size:11px;
  color:var(--ink);
  background:var(--paper-2);
  padding:5px 8px;
  border-radius:5px;
  letter-spacing:0.02em;
}
.smart-alert{
  background:var(--orange-soft);
  border:1px solid #F5D9BE;
  border-radius:8px;
  padding:10px 12px;
  font-size:11.5px;
  color:var(--orange-deep);
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:500;
}
.smart-alert.critical-alert{
  background:#FEE2E2;
  border-color:#FCA5A5;
  color:#991B1B;
}
.smart-alert.sent{
  background:#D1FAE5;
  border-color:#A7F3D0;
  color:#065F46;
}
.smart-alert-tag{
  font-size:9px;
  font-weight:700;
  letter-spacing:0.08em;
  padding:2px 6px;
  border-radius:3px;
  background:rgba(255,255,255,0.7);
  flex-shrink:0;
}
.smart-card h4{
  font-family:var(--serif);
  font-size:18px;
  font-weight:500;
  letter-spacing:-0.015em;
  color:var(--navy);
  line-height:1.22;
  margin:0;
}
.smart-card h4 em{
  font-style:normal;
  color:var(--orange);
  font-weight:500;
}
.smart-card p{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* ============ STORY ============ */
.story{
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.story::before{
  content:'';
  position:absolute;top:0;right:-100px;
  width:500px;height:500px;
  background:radial-gradient(circle, rgba(233,119,36,0.15), transparent 70%);
  pointer-events:none;
}
.story .section-eyebrow{color:var(--orange);}
.story h2{color:#fff;}
.story-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:100px;
  align-items:start;
}
.story-narrative p{
  color:rgba(255,255,255,0.78);
  font-size:17px;
  line-height:1.7;
  margin-bottom:22px;
}
.story-narrative p:first-of-type{
  font-family:var(--serif);
  font-size:22px;
  color:#fff;
  font-style:normal;
  font-weight:300;
  line-height:1.5;
  margin-bottom:32px;
}
.story-pillars{
  display:flex;gap:8px;flex-wrap:wrap;margin-top:32px;
}
.pillar{
  padding:8px 16px;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  font-size:13px;
  color:rgba(255,255,255,0.9);
}
.strategy-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;
  overflow:hidden;
}
.strat{
  padding:22px 24px;
  background:var(--navy);
}
.strat-label{
  font-family:var(--serif);
  font-style:normal;
  font-size:18px;
  font-weight:500;
  color:var(--orange);
  margin-bottom:8px;
  letter-spacing:-0.01em;
}
.strat-text{
  font-size:13px;
  color:rgba(255,255,255,0.75);
  line-height:1.5;
}
.story-stats{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:44px;
  padding:60px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
}
.story-stat{}
.story-stat-num{
  font-family:var(--serif);
  font-size:64px;
  font-weight:400;
  color:var(--orange);
  letter-spacing:-0.025em;
  line-height:1;
}
.story-stat-num .pct{font-size:36px;}
.story-stat-lbl{
  font-size:13px;
  color:rgba(255,255,255,0.7);
  margin-top:10px;
  line-height:1.4;
}

.story-quote{
  margin-top:48px;padding-top:32px;
  border-top:1px solid rgba(255,255,255,0.12);
  font-family:var(--serif);
  font-style:normal;
  font-size:20px;
  font-weight:300;
  color:#fff;
  line-height:1.5;
}
.story-quote::before{content:'"';color:var(--orange);font-size:60px;line-height:0;vertical-align:-20px;margin-right:8px;}

/* ============ BEYOND LIS (DIFFERENTIATORS) ============ */
.beyond{background:var(--paper);}
.diff-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.diff{
  background:#fff;
  border-radius:20px;
  border:1px solid var(--line);
  padding:48px 40px;
  display:flex;
  flex-direction:column;
  transition:all .3s ease;
  box-shadow:var(--card-shadow);
}
.diff:hover{
  border-color:var(--orange);
  transform:translateY(-4px);
  box-shadow:var(--card-shadow-hover);
}
.diff-icon{
  width:56px;height:56px;
  background:var(--orange-soft);
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  color:var(--orange);
  margin-bottom:32px;
}
.diff h4{
  font-family:var(--serif);
  font-size:24px;
  font-weight:500;
  letter-spacing:-0.015em;
  color:var(--navy);
  margin-bottom:16px;
  line-height:1.25;
}
.diff p{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}
.diff .tag{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:11px;
  color:var(--orange-deep);
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

/* ============ WORKFLOW ============ */
.workflow{
  background:var(--white);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.workflow-track{
  position:relative;
  padding-top:24px;
}
.workflow-line{
  position:absolute;
  top:56px;left:60px;right:60px;
  height:2px;
  background:linear-gradient(90deg, var(--orange-soft), var(--orange), var(--orange-soft));
}
.workflow .section-header{margin-bottom:56px;}
.workflow-steps{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:16px;
  position:relative;
}
.wf-step{
  text-align:center;
  position:relative;
}
.wf-circle{
  width:64px;height:64px;
  margin:0 auto 20px;
  background:#fff;
  border:2px solid var(--orange);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);
  font-style:normal;
  font-size:22px;
  color:var(--orange);
  position:relative;
  z-index:2;
  box-shadow:0 4px 12px rgba(233,119,36,0.18);
}
.wf-step h5{
  font-family:var(--serif);
  font-size:17px;
  font-weight:500;
  color:var(--navy);
  margin-bottom:8px;
}
.wf-step p{
  font-size:13px;color:var(--muted);line-height:1.5;
}

/* ============ NABL / QUALITY ============ */
.quality{
  background:linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.quality-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:100px;
  align-items:center;
}
.quality-list{
  display:flex;
  flex-direction:column;
  gap:0;
}
.q-item{
  padding:32px 0;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:start;
}
.q-item:last-child{border-bottom:none;}
.q-num{
  font-family:var(--serif);
  font-style:normal;
  font-size:24px;
  color:var(--orange);
  line-height:1;
  padding-top:4px;
}
.q-content h5{
  font-size:16px;
  font-weight:500;
  color:var(--navy);
  margin-bottom:6px;
}
.q-content p{
  font-size:14px;color:var(--muted);line-height:1.55;
}
.q-tick{
  width:24px;height:24px;
  background:var(--green);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  flex-shrink:0;
}

/* Quality "card mockup" right side */
.quality-card{
  background:#fff;
  border-radius:20px;
  box-shadow:0 30px 60px -25px rgba(26,37,64,0.2);
  overflow:hidden;
  border:1px solid var(--line);
}
.qc-head{
  padding:20px 24px;
  background:var(--navy);
  color:#fff;
  display:flex;align-items:center;justify-content:space-between;
}
.qc-head-l{font-size:12px;text-transform:uppercase;letter-spacing:0.1em;font-weight:600;}
.qc-head-r{font-size:11px;color:rgba(255,255,255,0.6);font-family:var(--mono);}
.qc-body{padding:24px;}
.qc-row{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  gap:16px;
}
.qc-row:last-child{border-bottom:none;}
.qc-test{font-size:13px;font-weight:500;color:var(--navy);}
.qc-test-sub{font-size:11px;color:var(--muted);margin-top:2px;}
.qc-val{font-family:var(--mono);font-size:13px;font-weight:500;color:var(--ink);}
.qc-val.high{color:#DC2626;}
.qc-val.low{color:#0066CC;}
.qc-flag{
  font-size:10px;
  font-weight:600;
  padding:3px 8px;
  border-radius:4px;
  text-transform:uppercase;
  letter-spacing:0.04em;
  min-width:60px;
  text-align:center;
}
.qc-flag.crit{background:#FEE2E2;color:#991B1B;}
.qc-flag.delta{background:#FEF3C7;color:#92400E;}
.qc-flag.ok{background:#D1FAE5;color:#065F46;}
.qc-foot{
  padding:16px 24px;
  background:var(--paper-2);
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:8px;
}
.qc-foot svg{color:var(--green);}

/* ============ DOCTOR + PATIENT ============ */
.experience{
  background:var(--white);
  border-top:1px solid var(--line);
}
.exp-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:80px;
}
.exp-card{
  border-radius:24px;
  padding:60px 56px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--card-shadow);
}
.exp-doctor{background:var(--paper-2);border:1px solid var(--line);}
.exp-patient{background:var(--orange-soft);border:1px solid #F5D9BE;}
.exp-card-eyebrow{
  font-size:12px;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--orange);margin-bottom:14px;
}
.exp-card h3{
  font-family:var(--serif);
  font-size:34px;font-weight:500;
  letter-spacing:-0.02em;
  color:var(--navy);
  line-height:1.1;
  margin-bottom:18px;
}
.exp-card h3 em{font-style:normal;color:var(--orange);font-weight:400;}
.exp-card > p{
  color:var(--muted);
  font-size:15px;line-height:1.6;
  margin-bottom:28px;
}
.exp-features{
  display:flex;flex-direction:column;gap:14px;
}
.exp-feat{
  display:flex;align-items:flex-start;gap:12px;
  font-size:14px;color:var(--navy);
  font-weight:500;
}
.exp-feat-ic{
  width:22px;height:22px;
  background:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--orange);
  flex-shrink:0;
  margin-top:1px;
}
.exp-doctor .exp-feat-ic{background:#fff;}
.exp-patient .exp-feat-ic{background:#fff;}
.exp-mock{
  margin-top:36px;
  background:#fff;
  border-radius:14px;
  padding:18px;
  border:1px solid var(--line);
}
.exp-mock-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.exp-mock-row:last-child{border-bottom:none;}
.exp-mock-name{font-weight:500;color:var(--navy);}
.exp-mock-test{font-size:11px;color:var(--muted);margin-top:2px;}
.exp-mock-status{
  font-size:10px;font-weight:600;
  padding:3px 9px;border-radius:4px;
  text-transform:uppercase;letter-spacing:0.04em;
}
.exp-mock-status.ready{background:#D1FAE5;color:#065F46;}
.exp-mock-status.process{background:#FEF3C7;color:#92400E;}

/* ============ ANALYTICS ============ */
.analytics{
  background:var(--paper);
}
.an-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:100px;
  align-items:center;
}
.an-text h2{margin-bottom:28px;}
.an-text > p{
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
  margin-bottom:40px;
}
.an-bullets{
  display:flex;flex-direction:column;gap:18px;
}
.an-bullet{
  display:flex;align-items:flex-start;gap:14px;
}
.an-bullet-ic{
  width:32px;height:32px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:var(--orange);
  flex-shrink:0;
}
.an-bullet-text{font-size:15px;color:var(--ink);line-height:1.5;}
.an-bullet-text strong{color:var(--navy);font-weight:600;}

.an-mock{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:32px;
  box-shadow:0 30px 60px -25px rgba(26,37,64,0.15);
}
.an-mock-hd{
  display:flex;align-items:center;justify-content:space-between;
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}
.an-mock-title{
  font-family:var(--serif);
  font-size:18px;font-weight:500;color:var(--navy);
}
.an-mock-tabs{display:flex;gap:6px;}
.an-tab{
  padding:5px 12px;font-size:11px;
  border-radius:6px;
  background:var(--paper-2);color:var(--muted);
  font-weight:500;
}
.an-tab.active{background:var(--navy);color:#fff;}
.an-mock-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  margin:24px 0;
}
.an-stat{
  padding:14px;border-radius:10px;
  background:var(--paper-2);
}
.an-stat-l{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:0.06em;}
.an-stat-v{font-family:var(--serif);font-size:24px;font-weight:500;color:var(--navy);margin-top:6px;display:flex;align-items:baseline;gap:6px;}
.an-stat-v .delta{font-size:11px;font-family:var(--sans);color:var(--green);font-weight:600;}
.an-stat-v .delta.down{color:#DC2626;}

.an-chart{
  height:180px;
  position:relative;
  margin-top:8px;
}

.an-doctors{
  margin-top:24px;
}
.an-doctors-hd{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:12px;font-weight:600;}
.an-doc{
  display:grid;grid-template-columns:1fr auto auto;
  gap:14px;align-items:center;
  padding:10px 0;border-bottom:1px solid var(--line);
  font-size:13px;
}
.an-doc:last-child{border-bottom:none;}
.an-doc-name{font-weight:500;color:var(--navy);}
.an-doc-spec{font-size:11px;color:var(--muted);}
.an-doc-bar{width:100px;height:5px;background:var(--paper-2);border-radius:3px;overflow:hidden;}
.an-doc-bar .fill{height:100%;background:var(--orange);}
.an-doc-num{font-family:var(--mono);font-size:12px;color:var(--ink);min-width:40px;text-align:right;}

/* ============ TESTIMONIALS ============ */
.testimonials{
  background:var(--paper-2);
}
.test-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:80px;
}
.test{
  background:#fff;
  border-radius:20px;
  padding:48px 40px;
  border:1px solid var(--line);
  transition:all .3s ease;
  box-shadow:var(--card-shadow);
}
.test:hover{
  transform:translateY(-4px);
  box-shadow:var(--card-shadow-hover);
  border-color:var(--orange);
}
.test-quote{
  font-family:var(--serif);
  font-size:21px;
  font-weight:400;
  line-height:1.5;
  color:var(--navy);
  letter-spacing:-0.01em;
  margin-bottom:36px;
}
.test-quote em{font-style:normal;color:var(--orange);}
.test-foot{
  display:flex;align-items:center;gap:14px;
  padding-top:24px;border-top:1px solid var(--line);
}
.test-av{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--orange), var(--orange-deep));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:600;font-size:15px;
  font-family:var(--serif);
}
.test-name{font-size:14px;font-weight:600;color:var(--navy);}
.test-role{font-size:12px;color:var(--muted);margin-top:2px;}

/* ============ FINAL CTA ============ */
.final-cta{
  background:var(--navy);
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:'';
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 0%, rgba(233,119,36,0.15), transparent 60%);
  pointer-events:none;
}
.final-cta h2{color:#fff;max-width:none;margin:0 auto 28px;}
.final-cta h2 em{color:var(--orange);}
.final-cta p{
  color:rgba(255,255,255,0.7);
  font-size:18px;
  max-width:580px;
  margin:0 auto 48px;
  line-height:1.65;
}
.final-trial{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 18px;
  background:rgba(233,119,36,0.15);
  border:1px solid rgba(233,119,36,0.3);
  border-radius:999px;
  font-size:13px;
  font-weight:500;
  color:var(--orange);
  margin-bottom:32px;
}
.final-ctas{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  position:relative;z-index:2;
}
.final-cta .btn-outline{
  border-color:rgba(255,255,255,0.3);color:#fff;
}
.final-cta .btn-outline:hover{background:#fff;color:var(--navy);}
.final-meta{
  margin-top:48px;
  font-size:13px;
  color:rgba(255,255,255,0.5);
  display:flex;gap:32px;justify-content:center;flex-wrap:wrap;
  position:relative;z-index:2;
}
.final-meta span{display:flex;align-items:center;gap:8px;}
.final-meta svg{color:var(--orange);}

/* ============ FOOTER ============ */
footer{
  background:#0B1426;
  color:rgba(255,255,255,0.6);
  padding:100px 48px 40px;
}
.footer-grid{
  max-width:1320px;margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:80px;
  padding-bottom:72px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo{color:#fff;margin-bottom:18px;}
.footer-brand p{
  font-size:14px;line-height:1.6;
  max-width:340px;
  margin-bottom:20px;
}
.footer-contact{
  font-size:13px;line-height:1.7;
}
.footer-contact strong{color:#fff;font-weight:500;}
.footer-col h6{
  color:#fff;font-size:13px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.1em;
  margin-bottom:20px;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:12px;}
.footer-col a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:14px;transition:color .2s;}
.footer-col a:hover{color:var(--orange);}
.footer-bottom{
  max-width:1400px;margin:0 auto;
  padding-top:32px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;
  font-size:12px;
  color:rgba(255,255,255,0.4);
}

/* ============ RESPONSIVE ============ */
/* ============ COMPACT CARDS + MORE WHITESPACE BETWEEN ============ */
section{padding:160px 56px;}
.hero{padding:120px 56px 140px;max-width:1280px;}
.container{max-width:1280px;}
.section-header{margin:0 auto 120px;}

/* Smaller cards, larger gaps, centered grids */
.outcomes-grid{gap:36px;max-width:1120px;margin:0 auto;}
.outcome{padding:28px 24px;border-radius:16px;}
.outcome-3 .outcome-visual,
.outcome-4 .outcome-visual{margin-top:14px;padding:12px;}
.outcome h3{font-size:22px;margin-bottom:10px;line-height:1.22;}
.outcome p{font-size:13.5px;line-height:1.6;}
.outcome-num{margin-bottom:16px;font-size:12px;}
.outcome-visual{margin-top:20px;padding:14px;border-radius:10px;}
.outcome-metrics{gap:22px;margin-top:20px;}
.metric-mini .v{font-size:26px;}
.metric-mini .l{font-size:11px;margin-top:5px;}

.diff-grid{gap:36px;max-width:1080px;margin:0 auto;}
.diff{padding:24px 22px;border-radius:14px;max-width:340px;width:100%;justify-self:center;}
.diff-icon{width:36px;height:36px;border-radius:10px;margin-bottom:16px;}
.diff-icon svg{width:16px;height:16px;}
.diff h4{font-size:17px;margin-bottom:8px;line-height:1.25;}
.diff p{font-size:12.5px;line-height:1.55;}
.diff .tag{margin-top:12px;padding-top:10px;font-size:9.5px;}

.test-grid{gap:36px;margin:104px auto 0;max-width:1080px;}
.test{padding:24px 22px;border-radius:14px;max-width:340px;width:100%;justify-self:center;}
.test-quote{font-size:15px;margin-bottom:18px;line-height:1.5;}
.test-foot{padding-top:14px;gap:10px;}
.test-av{width:34px;height:34px;font-size:12px;}
.test-name{font-size:12.5px;}
.test-role{font-size:11px;}

.exp-cards{gap:48px;margin:120px auto 0;max-width:900px;}
.exp-card{padding:26px 24px;border-radius:18px;max-width:420px;width:100%;justify-self:center;}
.exp-card-eyebrow{font-size:10px;margin-bottom:8px;}
.exp-card h3{font-size:20px;margin-bottom:10px;line-height:1.2;}
.exp-card > p{font-size:13px;margin-bottom:16px;line-height:1.55;}
.exp-features{gap:8px;}
.exp-feat{font-size:12.5px;gap:9px;}
.exp-feat-ic{width:16px;height:16px;}
.exp-mock{margin-top:18px;padding:12px;border-radius:9px;}
.exp-mock-row{padding:6px 0;font-size:11.5px;gap:10px;}
.exp-mock-name{font-size:12px;}
.exp-mock-test{font-size:9.5px;}
.exp-mock-status{font-size:9px;padding:2px 6px;}

.auto-grid{gap:96px;max-width:1180px;margin:0 auto;}
.auto-cards{border-radius:14px;max-width:680px;}
.auto-card{padding:22px 20px;gap:12px;}
.auto-card-num{font-size:20px;}
.auto-card-content h5{font-size:15px;margin-bottom:5px;}
.auto-card-content p{font-size:12.5px;line-height:1.55;}

.story-grid{gap:96px;max-width:1180px;margin:0 auto;}
.story-stats{padding:40px 36px;gap:32px;border-radius:18px;}
.story-stat-num{font-size:52px;}
.story-stat-num .pct{font-size:30px;}
.story-stat-lbl{font-size:12px;margin-top:8px;}

.an-grid{gap:96px;max-width:1180px;margin:0 auto;}
.an-mock{padding:22px;border-radius:16px;}
.an-mock-title{font-size:15px;}
.an-tab{font-size:10px;padding:4px 9px;}
.an-stat-l{font-size:10px;}
.an-stat-v{font-size:20px;}
.an-stat-v .delta{font-size:10px;}

.quality-grid{gap:96px;max-width:1180px;margin:0 auto;}
.q-item{padding:20px 0;gap:16px;}
.q-num{font-size:18px;}
.q-content h5{font-size:14px;margin-bottom:4px;}
.q-content p{font-size:12.5px;line-height:1.55;}
.q-tick{width:20px;height:20px;}
.q-tick svg{width:10px;height:10px;}
.quality-card{border-radius:16px;}
.qc-head{padding:14px 18px;}
.qc-head-l{font-size:10px;}
.qc-head-r{font-size:9.5px;}
.qc-body{padding:16px 18px;}
.qc-row{padding:9px 0;gap:12px;}
.qc-test{font-size:11.5px;}
.qc-test-sub{font-size:9.5px;}
.qc-val{font-size:11.5px;}
.qc-flag{font-size:8.5px;padding:2px 6px;min-width:50px;}
.qc-foot{padding:11px 18px;font-size:10.5px;}

.workflow-track{padding-top:24px;max-width:1180px;margin:0 auto;}
.workflow-steps{gap:28px;}
.wf-circle{width:64px;height:64px;font-size:22px;margin-bottom:22px;}
.wf-step h5{font-size:16px;margin-bottom:8px;}
.wf-step p{font-size:13px;line-height:1.55;}

.context-inner{max-width:1180px;}
.context-item{font-size:15px;}

.trust-strip{gap:44px;padding-top:32px;}
.trust-item .num{font-size:26px;}
.trust-item .lbl{font-size:10.5px;margin-top:4px;}

.context-strip{padding:48px 56px;}

/* ============ RESPONSIVE BREAKPOINTS ============ */

/* Large laptop (1280px) — slightly tighter side padding */
@media (max-width: 1280px){
  section{padding:140px 48px;}
  .hero{padding:100px 48px 120px;}
  nav{padding:18px 40px;}
  .context-strip{padding:40px 48px;}
  footer{padding:88px 48px 32px;}
  .section-header{margin-bottom:104px;}
  .outcomes-grid,.diff-grid,.test-grid,.exp-cards{gap:40px;}
  .auto-grid{gap:96px;}
  .story-grid{gap:96px;}
  .an-grid,.quality-grid{gap:96px;}
}

/* Tablet landscape / small laptop (1024px) — grids collapse to single column */
@media (max-width: 1024px){
  section{padding:120px 40px;}
  .hero{padding:80px 40px 100px;}
  nav{padding:16px 32px;}
  .nav-links{gap:24px;}
  .context-strip{padding:36px 40px;}
  footer{padding:80px 40px 32px;}
  .section-header{margin-bottom:80px;}
  .hero-grid{grid-template-columns:1fr;gap:80px;}
  .hero-visual{height:520px;max-width:600px;margin:0 auto;}
  .story-grid,.an-grid,.quality-grid,.auto-grid{grid-template-columns:1fr;gap:72px;}
  .auto-text{position:static;}
  .outcomes-grid > *{grid-column:span 12!important;}
  .outcomes-grid{gap:36px;}
  .diff-grid{grid-template-columns:repeat(2,1fr);gap:32px;}
  .test-grid{grid-template-columns:repeat(2,1fr);gap:32px;}
  .workflow-steps{grid-template-columns:repeat(3,1fr);gap:36px;}
  .workflow-line{display:none;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:56px;}
  .exp-cards{grid-template-columns:1fr;gap:32px;}
  .outcome{padding:36px 32px;}
  .diff,.test{padding:32px 28px;}
  .exp-card{padding:40px 36px;}
  .story-stats{padding:44px 36px;gap:32px;}
  h1{font-size:clamp(36px,5vw,60px);}
  h2{font-size:clamp(32px,4vw,48px);}
  .hero-sub{font-size:18px;}
  .section-sub{font-size:17px;}
}

/* Tablet portrait (768px) */
@media (max-width: 768px){
  section{padding:96px 32px;}
  .hero{padding:64px 32px 88px;}
  nav{padding:14px 24px;}
  .context-strip{padding:32px 24px;}
  .context-inner{flex-direction:column;align-items:flex-start;gap:16px;}
  .context-items{gap:20px;}
  .context-item{font-size:16px;}
  footer{padding:72px 32px 32px;}
  .section-header{margin-bottom:64px;max-width:640px;}
  .hero-grid{gap:60px;}
  .hero-visual{height:auto;min-height:480px;}
  .diff-grid,.test-grid,.exp-cards,.auto-cards{grid-template-columns:1fr;gap:24px;}
  .strategy-grid{grid-template-columns:repeat(2,1fr);}
  .workflow-steps{grid-template-columns:repeat(2,1fr);gap:48px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:48px;}
  .footer-brand{grid-column:span 2;}
  .story-grid{gap:60px;}
  .story-stats{grid-template-columns:repeat(2,1fr);padding:40px;gap:32px;}
  .story-stat-num{font-size:54px;}
  .outcome{padding:32px 28px;}
  .diff,.test{padding:28px 24px;}
  .exp-card{padding:36px 32px;}
  h1{font-size:clamp(34px,6vw,52px);}
  h2{font-size:clamp(28px,4.5vw,40px);}
  .section-sub{font-size:16px;}
  .hero-sub{font-size:17px;margin-bottom:36px;}
  .trust-strip{gap:40px;padding-top:32px;}
  .trust-item .num{font-size:28px;}
  .announce{font-size:12px;padding:10px 16px;flex-wrap:wrap;gap:8px;}
  nav{flex-wrap:wrap;row-gap:12px;position:sticky;justify-content:flex-start;}
  .nav-cta{margin-left:auto;gap:12px;}
  .nav-cta .btn-primary{display:none;}
  .mobile-nav-toggle{display:inline-flex;order:3;margin-left:12px;}
  .nav-links{
    order:5;
    flex:0 0 100%;
    display:none;
    flex-direction:column;
    gap:6px;
    padding:10px;
    margin-top:2px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:0 18px 44px rgba(15,23,42,0.12);
  }
  .nav-links.mobile-open{display:flex;}
  .nav-links a{
    display:flex;
    align-items:center;
    width:100%;
    padding:11px 12px;
    border-radius:12px;
    color:var(--navy);
    font-size:14px;
  }
  .nav-links a:hover{background:var(--paper-2);}
}

/* Mobile (640px) */
@media (max-width: 640px){
  section{padding:80px 22px;}
  .hero{padding:48px 22px 72px;}
  nav{padding:14px 20px;}
  .logo{font-size:22px;}
  .logo img{width:34px;height:34px;}
  .context-strip{padding:28px 22px;}
  footer{padding:64px 22px 28px;}
  .section-header{margin-bottom:52px;}
  .hero-grid{gap:48px;}
  .hero-visual{min-height:440px;}
  .diff-grid,.test-grid,.exp-cards,.auto-cards,.strategy-grid{grid-template-columns:1fr;gap:20px;}
  .workflow-steps{grid-template-columns:1fr 1fr;gap:36px;}
  .footer-grid{grid-template-columns:1fr;gap:40px;}
  .footer-brand{grid-column:span 1;}
  .story-grid{gap:48px;}
  .story-stats{padding:32px 28px;gap:28px;}
  .story-stat-num{font-size:46px;}
  .story-stat-num .pct{font-size:30px;}
  .outcome{padding:28px 24px;}
  .outcome h3{font-size:24px;}
  .diff,.test{padding:24px 22px;}
  .diff h4{font-size:20px;}
  .exp-card{padding:32px 26px;}
  .exp-card h3{font-size:26px;}
  h1{font-size:clamp(30px,7vw,42px);}
  h2{font-size:clamp(26px,5vw,34px);}
  .hero-sub{font-size:16px;margin-bottom:32px;}
  .section-sub{font-size:15px;line-height:1.65;}
  .trust-strip{gap:28px;padding-top:28px;}
  .trust-item .num{font-size:26px;}
  .trust-item .lbl{font-size:11px;}
  .hero-ctas{margin-bottom:40px;width:100%;}
  .hero-ctas .btn{width:100%;justify-content:center;}
  .final-ctas{flex-direction:column;width:100%;}
  .final-ctas .btn{width:100%;justify-content:center;}
  .nav-cta .btn-primary{display:none;}
  .nav-cta .nav-signin{display:inline-flex;padding:10px 16px;font-size:13px;}
  .dash-wa,.dash-alert{position:static;width:100%;margin:0 auto;animation:none;}
  .dash-main{position:static;right:auto;}
  .hero-visual{display:flex;flex-direction:column;gap:16px;}
  .auto-card-num{font-size:22px;}
  .auto-card-content h5{font-size:17px;}
}

/* Small mobile (480px) */
@media (max-width: 480px){
  section{padding:64px 18px;}
  .hero{padding:36px 18px 56px;}
  nav{padding:12px 18px;}
  .logo span:nth-of-type(2){display:none;}
  .context-strip{padding:24px 18px;}
  footer{padding:56px 18px 24px;}
  .section-header{margin-bottom:40px;}
  .workflow-steps{grid-template-columns:1fr;gap:32px;}
  .story-stats{grid-template-columns:1fr;padding:28px 22px;}
  .story-stat-num{font-size:42px;}
  .outcome,.diff,.test,.exp-card{padding:28px 22px;border-radius:16px;}
  .auto-card{padding:28px 22px;}
  h1{font-size:32px;line-height:1.1;}
  h2{font-size:26px;line-height:1.15;}
  .hero-sub,.section-sub{font-size:15px;}
  .outcome h3,.exp-card h3{font-size:24px;}
  .diff h4{font-size:20px;}
  .announce{font-size:11px;line-height:1.4;}
  .announce a{font-size:11px;}
  .qc-body,.an-mock{padding:18px;}
  .preview-card{padding:18px;}
}
/* MARKER:ANIM-ENGINE */
/* ══════════════════════════════════════════════════
   SMART ANIMATION SYSTEM (from v7 purple edition, recolored orange)
   ══════════════════════════════════════════════════ */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}
@keyframes scaleIn{from{opacity:0;transform:scale(0.94);}to{opacity:1;transform:scale(1);}}
@keyframes orbDrift{0%{transform:translate(0,0) scale(1);}33%{transform:translate(40px,-30px) scale(1.08);}66%{transform:translate(-30px,20px) scale(0.95);}100%{transform:translate(0,0) scale(1);}}
@keyframes orbDrift2{0%{transform:translate(0,0) scale(1);}50%{transform:translate(-50px,30px) scale(1.12);}100%{transform:translate(0,0) scale(1);}}
@keyframes shimmer{from{background-position:200% center;}to{background-position:-200% center;}}
@keyframes spinIn{from{opacity:0;transform:scale(0.5) rotate(-90deg);}to{opacity:1;transform:scale(1) rotate(0deg);}}
@keyframes drawLine{from{stroke-dashoffset:1000;}to{stroke-dashoffset:0;}}
@keyframes countPulse{0%,100%{transform:scale(1);}50%{transform:scale(1.04);}}
@keyframes glowPulse{0%,100%{box-shadow:0 0 0 0 rgba(233,119,36,0.4);}50%{box-shadow:0 0 0 12px rgba(233,119,36,0);}}
@keyframes tabPing{0%{box-shadow:0 0 0 0 rgba(233,119,36,0.5);}100%{box-shadow:0 0 0 10px rgba(233,119,36,0);}}

/* Reveal classes (JS triggers .visible via IntersectionObserver) */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,1,.36,1),transform .65s cubic-bezier(.22,1,.36,1);}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-left{opacity:0;transform:translateX(-32px);transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);}
.reveal-left.visible{opacity:1;transform:translateX(0);}
.reveal-right{opacity:0;transform:translateX(32px);transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);}
.reveal-right.visible{opacity:1;transform:translateX(0);}
.reveal-scale{opacity:0;transform:scale(.94);transition:opacity .6s cubic-bezier(.22,1,.36,1),transform .6s cubic-bezier(.22,1,.36,1);}
.reveal-scale.visible{opacity:1;transform:scale(1);}

/* Hero orb backgrounds */
.hero{position:relative;overflow:hidden;}
.hero::before{content:'';position:absolute;top:-120px;right:-80px;width:700px;height:700px;background:radial-gradient(circle, rgba(233,119,36,0.14) 0%, rgba(240,136,56,0.06) 40%, transparent 70%);border-radius:50%;animation:orbDrift 18s ease-in-out infinite;pointer-events:none;z-index:0;}
.hero::after{content:'';position:absolute;bottom:-60px;left:-100px;width:500px;height:500px;background:radial-gradient(circle, rgba(196,93,20,0.10) 0%, transparent 70%);border-radius:50%;animation:orbDrift2 22s ease-in-out infinite;pointer-events:none;z-index:0;}
.hero-grid,.hero>.eyebrow,.hero>h1,.hero>.hero-sub,.hero>.hero-ctas,.hero>.trust-strip,.hero>.trial-tag{position:relative;z-index:1;}

/* Nav scroll-glass */
nav.scrolled{background:rgba(255,255,255,0.96)!important;box-shadow:0 2px 20px rgba(15,23,42,0.06)!important;}

/* Button shimmer */
.btn-primary{position:relative;overflow:hidden;}
.btn-primary::after{content:'';position:absolute;inset:0;background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,0.28) 50%,transparent 70%);background-size:200% 100%;background-position:200% center;transition:background-position 0s;pointer-events:none;}
.btn-primary:hover::after{animation:shimmer .75s ease forwards;}

/* Card hover lift + orange glow */
.outcome,.diff,.test,.smart-card,.auto-card,.exp-card{transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s cubic-bezier(.22,1,.36,1),border-color .25s ease!important;}
.outcome:hover,.diff:hover,.test:hover,.smart-card:hover{transform:translateY(-6px) scale(1.01)!important;box-shadow:0 16px 48px rgba(196,93,20,0.14),0 4px 16px rgba(196,93,20,0.08)!important;border-color:var(--orange)!important;}

/* Workflow circle spin-in */
.wf-circle.animated{animation:spinIn .55s cubic-bezier(.22,1,.36,1) both;}

/* SVG chart draw-in helper */
.chart-path-animated{stroke-dasharray:1000;stroke-dashoffset:1000;animation:drawLine 1.8s ease forwards;}

/* Section header underline draw */
.section-header h2{position:relative;}
.section-header h2::after{content:'';display:block;height:3px;width:48px;background:linear-gradient(90deg,var(--orange),var(--orange-deep,#C45D14));border-radius:2px;margin:20px auto 0;transform:scaleX(0);transform-origin:left;transition:transform .6s cubic-bezier(.22,1,.36,1) .3s;}
.section-header.visible h2::after,.section-header h2.visible::after{transform:scaleX(1);}

/* Eyebrow hover ring */
.eyebrow{transition:border-color .3s ease, box-shadow .3s ease;}
.eyebrow:hover{box-shadow:0 0 0 3px rgba(233,119,36,0.10);}

/* Announce pulse extra glow */
.announce .pulse{animation:glowPulse 2s infinite, pulse 2s infinite;}

/* Tab ping */
.an-tab.active{animation:tabPing 1s ease-out .3s;}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;}
  .reveal,.reveal-left,.reveal-right,.reveal-scale{opacity:1!important;transform:none!important;}
}

/* ============ NEW PAGES (capabilities, about, customers, resources, contact) ============ */
.page-hero{padding:140px 0 72px;background:#fff;border-bottom:1px solid var(--line);}
.page-hero h1{font-family:var(--serif);font-size:clamp(40px,5vw,68px);font-weight:400;line-height:1.08;letter-spacing:-0.025em;color:var(--navy);margin:18px 0 22px;max-width:880px;}
.page-hero h1 em{font-style:normal;color:var(--orange);font-weight:500;}
.page-hero .lede{font-size:20px;line-height:1.55;color:var(--muted);max-width:720px;}

/* Capability section: alternating layout */
.cap-section{padding:88px 0;border-bottom:1px solid var(--line);}
.cap-section:nth-child(even){background:var(--paper-2);}
.cap-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.cap-text h2{margin-bottom:20px;}
.cap-text > p{font-size:17px;line-height:1.65;color:var(--muted);margin-bottom:24px;}
.cap-features{display:flex;flex-direction:column;gap:14px;margin-top:24px;}
.cap-feat{display:flex;gap:12px;align-items:flex-start;font-size:15px;line-height:1.5;color:var(--ink);}
.cap-feat-ic{flex-shrink:0;width:22px;height:22px;border-radius:50%;background:var(--orange-soft);color:var(--orange);display:inline-flex;align-items:center;justify-content:center;margin-top:1px;}
.cap-visual{background:#fff;border:1px solid var(--line);border-radius:18px;padding:32px;box-shadow:var(--card-shadow);}
.cap-section:nth-child(even) .cap-visual{background:#fff;}

/* Interface-flow diagram */
.iface-flow{display:flex;flex-direction:column;gap:18px;}
.iface-step{display:flex;align-items:center;gap:14px;padding:14px 16px;background:#fff;border:1px solid var(--line);border-radius:12px;}
.iface-step-num{width:28px;height:28px;background:var(--orange-soft);color:var(--orange);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-weight:600;font-size:13px;flex-shrink:0;}
.iface-step-text{font-size:14px;color:var(--ink);line-height:1.45;}
.iface-arrow{display:flex;justify-content:center;color:var(--orange);}
.iface-modes{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:24px;}
.iface-mode{padding:18px;border:1px solid var(--line);border-radius:14px;background:#fff;}
.iface-mode h4{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:8px;}
.iface-mode-detail{font-size:13px;color:var(--muted);line-height:1.5;}
.iface-mode-tag{display:inline-block;font-size:11px;padding:3px 8px;background:var(--orange-soft);color:var(--orange);border-radius:999px;font-weight:500;margin-bottom:8px;}
.proto-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px;}
.proto-chip{padding:6px 12px;background:#fff;border:1px solid var(--line);border-radius:999px;font-size:12px;font-weight:500;color:var(--ink);font-family:var(--mono);}

/* Smaller capability cards (other capabilities row) */
.cap-mini-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:32px;}
.cap-mini{padding:24px;background:#fff;border:1px solid var(--line);border-radius:14px;}
.cap-mini h4{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:8px;}
.cap-mini p{font-size:13.5px;line-height:1.55;color:var(--muted);}

/* About — what we solve cards */
.solve-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:24px;}
.solve-card{padding:26px;background:#fff;border:1px solid var(--line);border-radius:16px;}
.solve-card .solve-eyebrow{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:var(--orange);margin-bottom:10px;}
.solve-card h4{font-size:18px;font-weight:500;color:var(--navy);margin-bottom:10px;font-family:var(--serif);}
.solve-card p{font-size:14px;line-height:1.6;color:var(--muted);}

/* Customers — type grid */
.cust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:32px;}
.cust-card{padding:28px 24px;background:#fff;border:1px solid var(--line);border-radius:16px;text-align:left;}
.cust-card-icon{font-size:24px;margin-bottom:14px;}
.cust-card h4{font-size:16px;font-weight:600;color:var(--navy);margin-bottom:8px;}
.cust-card p{font-size:13.5px;line-height:1.55;color:var(--muted);}

.geo-strip{display:flex;justify-content:center;gap:48px;flex-wrap:wrap;margin:64px 0;padding:48px;background:var(--navy);border-radius:24px;}
.geo-item{text-align:center;color:#fff;}
.geo-num{font-family:var(--serif);font-size:48px;font-weight:300;color:var(--orange);}
.geo-lbl{font-size:14px;font-weight:500;opacity:0.85;margin-top:4px;letter-spacing:0.02em;}

/* Resources */
.res-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:32px;}
.res-card{padding:32px;background:#fff;border:1px solid var(--line);border-radius:18px;display:flex;flex-direction:column;gap:14px;transition:all .25s;text-decoration:none;color:inherit;}
.res-card:hover{border-color:var(--orange);transform:translateY(-2px);box-shadow:var(--card-shadow-hover);}
.res-card-type{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:var(--orange);}
.res-card h3{font-family:var(--serif);font-size:22px;font-weight:500;color:var(--navy);line-height:1.25;}
.res-card p{font-size:14px;line-height:1.6;color:var(--muted);}
.res-card-cta{margin-top:auto;font-size:13.5px;font-weight:600;color:var(--orange);display:inline-flex;align-items:center;gap:6px;}

/* Contact section on homepage */
.contact-section{padding:96px 0;background:var(--paper-2);border-top:1px solid var(--line);}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}
.contact-card{padding:36px;background:#fff;border:1px solid var(--line);border-radius:20px;}
.contact-row{padding:18px 0;border-bottom:1px solid var(--line);}
.contact-row:last-of-type{border-bottom:none;}
.contact-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:var(--muted);margin-bottom:6px;}
.contact-value{font-size:16px;color:var(--ink);line-height:1.5;}
.contact-value a{color:var(--ink);text-decoration:none;border-bottom:1px solid var(--line);transition:color .2s, border-color .2s;}
.contact-value a:hover{color:var(--orange);border-color:var(--orange);}
.contact-ctas{display:flex;gap:12px;margin-top:24px;flex-wrap:wrap;}

/* NABL compliance table page */
.nabl-table-wrap{margin-top:32px;overflow-x:auto;border:1px solid var(--line);border-radius:16px;background:#fff;}
.nabl-table{width:100%;border-collapse:collapse;font-size:13.5px;}
.nabl-table thead{background:var(--paper-2);}
.nabl-table th{text-align:left;padding:14px 18px;font-weight:600;color:var(--navy);font-size:12px;text-transform:uppercase;letter-spacing:0.05em;border-bottom:1px solid var(--line);}
.nabl-table td{padding:14px 18px;border-bottom:1px solid var(--line);vertical-align:top;line-height:1.55;color:var(--ink);}
.nabl-table tr:last-child td{border-bottom:none;}
.nabl-table td.col-section{font-family:var(--mono);font-size:12px;color:var(--muted);white-space:nowrap;}
.nabl-table td.col-title{font-weight:500;}
.nabl-status{display:inline-block;padding:3px 10px;border-radius:999px;font-size:11px;font-weight:600;white-space:nowrap;}
.nabl-status.compliant{background:#E6F4ED;color:#1F7A4D;}
.nabl-status.part{background:#FFF4E5;color:#B5651D;}
.nabl-status.not-impl{background:#F1F2F4;color:#6B7280;}
.nabl-status.not-rel{background:#EEF2FF;color:#4A5BB6;}

/* Back to top */
.back-to-top{position:fixed;right:22px;bottom:22px;z-index:80;width:48px;height:48px;border:1px solid rgba(15,23,42,.10);border-radius:50%;background:var(--navy);color:#fff;box-shadow:0 16px 40px rgba(15,23,42,.22);display:inline-flex;align-items:center;justify-content:center;font-size:20px;font-weight:700;line-height:1;cursor:pointer;opacity:0;visibility:hidden;transform:translateY(12px) scale(.96);transition:opacity .2s ease,visibility .2s ease,transform .2s ease,background .2s ease,box-shadow .2s ease;}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0) scale(1);}
.back-to-top:hover{background:var(--orange);box-shadow:0 18px 44px rgba(211,108,45,.28);transform:translateY(-2px) scale(1);}
.back-to-top:focus-visible{outline:3px solid rgba(211,108,45,.28);outline-offset:3px;}

/* Responsive */
@media (max-width: 980px){
  .cap-grid{grid-template-columns:1fr;gap:48px;}
  .solve-grid{grid-template-columns:1fr 1fr;}
  .cust-grid{grid-template-columns:1fr 1fr;}
  .cap-mini-grid{grid-template-columns:1fr 1fr;}
  .res-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;gap:40px;}
  .geo-strip{gap:32px;padding:36px 24px;}
  .geo-num{font-size:36px;}
}
@media (max-width: 600px){
  .solve-grid,.cust-grid,.cap-mini-grid,.iface-modes{grid-template-columns:1fr;}
  .page-hero{padding:104px 0 56px;}
  .cap-section{padding:60px 0;}
  .geo-num{font-size:32px;}
  .back-to-top{right:16px;bottom:16px;width:44px;height:44px;font-size:18px;}
}

@media (max-width: 768px){
  nav{
    flex-wrap:wrap !important;
    row-gap:12px !important;
  }
  nav .nav-links{
    order:5 !important;
    flex:0 0 100% !important;
    display:none !important;
    flex-direction:column !important;
    visibility:visible !important;
    opacity:1 !important;
    position:static !important;
    gap:6px !important;
    overflow:visible !important;
    padding:10px !important;
    margin-top:2px !important;
    background:#fff !important;
    border:1px solid var(--line) !important;
    border-radius:18px !important;
    box-shadow:0 18px 44px rgba(15,23,42,0.12) !important;
  }
  nav .nav-links.mobile-open{display:flex !important;}
  nav .nav-links a{
    display:flex !important;
    align-items:center !important;
    flex:0 0 auto !important;
    width:100% !important;
    padding:11px 12px !important;
    border:0 !important;
    border-radius:12px !important;
    background:transparent !important;
    white-space:nowrap !important;
    font-size:14px !important;
  }
  nav .nav-links a:hover{background:var(--paper-2) !important;}
  nav .mobile-nav-toggle{display:inline-flex !important;}
}
