/* =========================================================
   ComplianceHub — Design System
   Display: Fraunces (serif, regulatory/stamped authority)
   Body:    Inter (neutral, highly legible)
   Utility: IBM Plex Mono (protocol codes, stats, data)
   ========================================================= */

:root{
  /* --- Core brand palette (derived from the actual product UI) --- */
  --ink:           #14241F;
  --forest-900:    #16271F;
  --forest-800:    #1C342B;
  --forest-700:    #2C4A41;
  --forest-600:    #3D5A54;  /* exact sidebar green from product */
  --forest-500:    #527A6F;
  --sage-300:      #9FBBAC;
  --sage-200:      #DCE6DE;
  --sage-100:      #EEF2EE;
  --paper:         #FFFFFF;
  --canvas:        #F6F8F6;
  --line:          #DEE5DE;
  --line-strong:   #C7D2C7;

  --amber:         #C8862E;
  --amber-soft:    #FBF1E2;
  --success:       #2F8B5C;
  --success-soft:  #E7F4EC;
  --danger:        #C0463A;
  --danger-soft:   #FBEAE7;
  --info:          #3D6FA8;
  --info-soft:     #E9F0F9;
  --violet:        #6A5A9E;
  --violet-soft:   #EFEBF7;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20,36,31,0.06);
  --shadow-md: 0 8px 24px rgba(20,36,31,0.08);
  --shadow-lg: 0 24px 60px rgba(20,36,31,0.16);
  --shadow-glow: 0 40px 100px -20px rgba(22,39,31,0.45);

  --container: 1280px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* =================== RESET & BASE =================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,h5{
  font-family:'Fraunces',serif;
  font-weight:600;
  line-height:1.08;
  margin:0;
  letter-spacing:-0.01em;
  color:var(--forest-900);
}
.mono{ font-family:'IBM Plex Mono',monospace; }

::selection{ background:var(--forest-600); color:#fff; }

:focus-visible{
  outline:2.5px solid var(--amber);
  outline-offset:3px;
  border-radius:4px;
}

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

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
@media (max-width:768px){ .container{ padding:0 20px; } }

section{ position:relative; }

/* =================== EYEBROW / PROTOCOL CODE (signature element) =================== */
/* Mirrors the real product's compliance protocol codes, e.g. PROT-626-PS-2025-001 */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  font-weight:500;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--forest-600);
  padding:7px 14px 7px 10px;
  border:1px solid var(--line-strong);
  border-radius:999px;
  background:var(--sage-100);
  margin-bottom:22px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background:var(--amber);
  flex:none;
}
.eyebrow.on-dark{
  color:var(--sage-200);
  border-color:rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06);
}
.eyebrow.on-dark::before{ background:#E7B463; }

/* =================== PERFORATED DIVIDER (certificate tear-edge motif) =================== */
.tear-divider{
  position:relative;
  height:1px;
  background:repeating-linear-gradient(90deg, var(--line-strong) 0 10px, transparent 10px 20px);
  margin:0;
}
.tear-divider::before,.tear-divider::after{
  content:"";
  position:absolute; top:50%; transform:translateY(-50%);
  width:22px; height:22px;
  border-radius:50%;
  background:var(--paper);
}
.tear-divider::before{ left:-11px; }
.tear-divider::after{ right:-11px; }
.section-on-canvas + .section-on-canvas .tear-divider{ background-color:var(--canvas); }

/* =================== BUTTONS =================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-weight:600;
  font-size:15px;
  padding:14px 26px;
  border-radius:11px;
  border:1.5px solid transparent;
  transition:all .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--forest-700);
  color:#fff;
  box-shadow:0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 24px -8px rgba(28,52,43,0.55);
}
.btn-primary:hover{ background:var(--ink); transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(28,52,43,0.6); }
.btn-ghost{
  background:transparent;
  border-color:var(--line-strong);
  color:var(--forest-900);
}
.btn-ghost:hover{ border-color:var(--forest-700); background:var(--sage-100); transform:translateY(-2px); }
.btn-on-dark{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.28);
  color:#fff;
  backdrop-filter:blur(6px);
}
.btn-on-dark:hover{ background:rgba(255,255,255,0.16); transform:translateY(-2px); }
.btn-amber{
  background:var(--amber);
  color:#fff;
  box-shadow:0 10px 24px -8px rgba(200,134,46,0.55);
}
.btn-amber:hover{ background:#B4761F; transform:translateY(-2px); }
.btn-lg{ padding:16px 30px; font-size:16px; border-radius:13px; }
.btn-sm{ padding:9px 16px; font-size:13.5px; border-radius:8px; }
.btn-block{ width:100%; }

/* =================== NAVBAR =================== */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(247,249,247,0.78);
  backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid transparent;
  transition:all .35s var(--ease);
  padding:18px 0;
}
.site-nav.is-scrolled{
  background:rgba(255,255,255,0.92);
  border-bottom-color:var(--line);
  padding:12px 0;
  box-shadow:0 4px 24px rgba(20,36,31,0.05);
}
.site-nav .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:'Fraunces',serif; font-weight:600; font-size:20px; color:var(--forest-900); }
.brand-mark{
  width:34px; height:34px; border-radius:9px;
  background:linear-gradient(155deg,var(--forest-600),var(--forest-800));
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  flex:none;
}
.brand-mark svg{ width:18px; height:18px; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--ink); opacity:0.78;
  position:relative; padding:6px 0;
  transition:opacity .2s;
}
.nav-links a:hover{ opacity:1; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--amber); transition:width .25s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none; width:42px; height:42px; border-radius:10px;
  border:1px solid var(--line-strong); background:var(--paper);
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background:var(--ink); position:relative; transition:.25s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

@media (max-width:980px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,82vw);
    background:var(--paper); flex-direction:column; align-items:flex-start;
    padding:100px 28px 28px; gap:22px; box-shadow:var(--shadow-lg);
    transform:translateX(100%); transition:transform .35s var(--ease);
  }
  .nav-links.is-open{ transform:translateX(0); }
  .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
}

/* =================== HERO =================== */
.hero{
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(159,187,172,0.18), transparent 55%),
    linear-gradient(180deg,var(--forest-900) 0%, var(--ink) 100%);
  color:#fff;
  padding:168px 0 120px;
  overflow:hidden;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent 80%);
  pointer-events:none;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.hero-copy{ max-width:620px; }
.hero h1{
  color:#fff;
  font-size:clamp(2.4rem,4.6vw,3.85rem);
  margin-bottom:24px;
}
.hero h1 em{ font-style:italic; color:var(--sage-300); }
.hero-sub{
  font-size:18.5px; color:rgba(255,255,255,0.74); max-width:520px;
  margin-bottom:38px; line-height:1.65;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:50px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap:28px; }
.hero-trust-item{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:rgba(255,255,255,0.62); }
.hero-trust-item svg{ width:16px; height:16px; color:var(--sage-300); flex:none; }

.hero-stage{
  position:relative;
  margin-top:64px;
  z-index:2;
}
.hero-browser{
  border-radius:16px;
  overflow:hidden;
  background:#1A2922;
  box-shadow:var(--shadow-glow);
  transform:perspective(1400px) rotateX(2deg);
  border:1px solid rgba(255,255,255,0.08);
}
.browser-chrome{
  display:flex; align-items:center; gap:8px;
  padding:13px 16px;
  background:#101C16;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.browser-chrome .dot{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.18); }
.browser-chrome .dot:nth-child(1){ background:#E0685A; }
.browser-chrome .dot:nth-child(2){ background:#E0B25A; }
.browser-chrome .dot:nth-child(3){ background:#5AA877; }
.browser-chrome .url{
  margin-left:14px; font-family:'IBM Plex Mono',monospace; font-size:11.5px;
  color:rgba(255,255,255,0.4); background:rgba(255,255,255,0.04);
  padding:5px 14px; border-radius:6px; flex:1; max-width:280px;
}
.hero-browser img{ width:100%; display:block; }

.float-card{
  position:absolute;
  background:#fff;
  color:var(--ink);
  border-radius:13px;
  padding:13px 16px;
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:11px;
  font-size:13.5px; font-weight:500;
  max-width:240px;
  z-index:3;
}
.float-card .ic{
  width:30px; height:30px; border-radius:9px; flex:none;
  display:flex; align-items:center; justify-content:center;
}
.float-card .ic.success{ background:var(--success-soft); color:var(--success); }
.float-card .ic.amber{ background:var(--amber-soft); color:var(--amber); }
.float-card small{ display:block; color:#8B988F; font-weight:400; margin-top:1px; font-size:11.5px; }
.float-card.fc-1{ top:-26px; left:-18px; animation:float1 7s ease-in-out infinite; }
.float-card.fc-2{ bottom:36px; right:-26px; animation:float2 8s ease-in-out infinite; }
@keyframes float1{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-12px);} }
@keyframes float2{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(10px);} }

@media (min-width:1080px){
  .hero-grid{ grid-template-columns:0.86fr 1.14fr; gap:40px; align-items:center; }
  .hero-stage{ margin-top:0; }
}
@media (max-width:560px){
  .float-card{ display:none; }
  .hero{ padding:140px 0 80px; }
}

/* =================== LOGO STRIP =================== */
.logo-strip{
  background:var(--canvas);
  padding:44px 0;
  border-bottom:1px solid var(--line);
}
.logo-strip-label{
  text-align:center; font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:#8B988F; font-family:'IBM Plex Mono',monospace; margin-bottom:28px;
}
.logo-row{
  display:flex; align-items:center; justify-content:center; gap:54px; flex-wrap:wrap;
  opacity:0.62; filter:grayscale(1);
}
.logo-row .logo-item{ font-family:'Fraunces',serif; font-weight:600; font-size:19px; color:var(--ink); display:flex; align-items:center; gap:8px; }
.logo-row .logo-item svg{ width:20px; height:20px; }

/* =================== SECTION HEADERS =================== */
.section{ padding:108px 0; }
.section.tight{ padding:80px 0; }
.section-on-canvas{ background:var(--canvas); }
.section-on-dark{ background:linear-gradient(180deg,var(--ink),var(--forest-900)); color:#fff; }
.section-on-dark h2{ color:#fff; }
.section-head{ max-width:680px; margin-bottom:64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.9rem,3.2vw,2.65rem); margin-bottom:18px; }
.section-head p{ font-size:17px; color:#5C6B62; line-height:1.65; }
.section-on-dark .section-head p{ color:rgba(255,255,255,0.66); }

/* =================== OVERVIEW PILLARS =================== */
.pillars{ display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.pillar{ background:var(--paper); padding:32px 24px; transition:background .25s; }
.pillar:hover{ background:var(--sage-100); }
.pillar .pillar-ic{ width:42px; height:42px; border-radius:10px; background:var(--forest-700); display:flex; align-items:center; justify-content:center; margin-bottom:18px; color:#fff; }
.pillar .pillar-ic svg{ width:21px; height:21px; }
.pillar h4{ font-size:16.5px; font-family:'Fraunces',serif; margin-bottom:8px; color:var(--forest-900); }
.pillar p{ font-size:13.5px; color:#62716A; line-height:1.55; margin:0; }
@media (max-width:980px){ .pillars{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .pillars{ grid-template-columns:1fr; } }

/* =================== SHOWCASE TABS (interactive dashboard showcase) =================== */
.showcase-tabs{
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom:42px;
  border-bottom:1px solid var(--line); padding-bottom:0;
}
.showcase-tab{
  display:flex; align-items:center; gap:9px;
  padding:13px 18px; font-size:14px; font-weight:600; color:#6E7D75;
  border-bottom:2.5px solid transparent; margin-bottom:-1px;
  background:transparent; border-left:none; border-right:none; border-top:none;
  transition:all .2s;
}
.showcase-tab svg{ width:16px; height:16px; }
.showcase-tab:hover{ color:var(--forest-800); }
.showcase-tab.is-active{ color:var(--forest-800); border-bottom-color:var(--amber); }

.showcase-panel{ display:none; }
.showcase-panel.is-active{ display:grid; }
.showcase-panel{ grid-template-columns:1fr; gap:48px; align-items:center; }
.showcase-info h3{ font-size:1.7rem; margin-bottom:14px; }
.showcase-info p{ color:#5C6B62; font-size:15.5px; line-height:1.7; margin-bottom:22px; }
.showcase-points{ display:flex; flex-direction:column; gap:13px; margin-bottom:26px; }
.showcase-points li{ display:flex; gap:11px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
.showcase-points svg{ width:18px; height:18px; color:var(--success); flex:none; margin-top:2px; }
.showcase-role{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.05em;
  color:var(--forest-600); background:var(--sage-100); border:1px solid var(--line-strong);
  padding:6px 12px; border-radius:999px; margin-bottom:18px;
}
.showcase-mockup{
  border-radius:16px; overflow:hidden; box-shadow:var(--shadow-lg);
  border:1px solid var(--line); background:#fff;
  cursor:zoom-in;
}
.showcase-mockup .browser-chrome{ background:#F0F3F0; border-bottom:1px solid var(--line); }
.showcase-mockup .browser-chrome .dot{ background:#D8DED8; }
.showcase-mockup .browser-chrome .url{ background:#fff; color:#94A39B; border:1px solid var(--line); }
.shot-scroll{ max-height:560px; overflow:hidden; position:relative; }
.shot-scroll img{ transition:transform 9s linear; }
.showcase-mockup:hover .shot-scroll img{ transform:translateY(calc(-1 * var(--scroll-depth,0px))); }

@media (min-width:980px){
  .showcase-panel{ grid-template-columns:0.78fr 1.22fr; gap:56px; }
}

/* =================== FEATURE GRID =================== */
.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.feature-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px 24px; position:relative; transition:all .3s var(--ease);
  overflow:hidden;
}
.feature-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--line-strong); }
.feature-card .stamp{
  position:absolute; top:18px; right:18px;
  font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.04em;
  color:var(--sage-300); border:1px solid var(--sage-200); border-radius:5px; padding:2px 6px;
  transform:rotate(4deg);
}
.feature-card .f-ic{
  width:44px; height:44px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; background:var(--sage-100); color:var(--forest-700);
}
.feature-card .f-ic svg{ width:21px; height:21px; }
.feature-card h4{ font-size:16px; font-family:'Fraunces',serif; margin-bottom:9px; }
.feature-card p{ font-size:13.8px; color:#62716A; line-height:1.6; margin:0; }
@media (max-width:1100px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }

/* =================== ROLES =================== */
.roles-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.role-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:0; overflow:hidden; transition:all .3s var(--ease);
}
.role-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.role-head{ padding:24px 22px 18px; border-bottom:1px dashed var(--line); }
.role-tag{
  display:inline-block; font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.05em;
  padding:4px 10px; border-radius:999px; margin-bottom:14px; font-weight:600;
}
.role-tag.admin{ background:var(--violet-soft); color:var(--violet); }
.role-tag.operator{ background:var(--info-soft); color:var(--info); }
.role-tag.client{ background:var(--success-soft); color:var(--success); }
.role-tag.consultant{ background:var(--amber-soft); color:var(--amber); }
.role-tag.teacher{ background:var(--sage-100); color:var(--forest-700); }
.role-head h4{ font-size:17px; margin-bottom:6px; }
.role-head p{ font-size:13px; color:#7A887F; margin:0; }
.role-body{ padding:18px 22px 24px; }
.role-body li{ display:flex; gap:9px; align-items:flex-start; font-size:13.3px; color:#4E5C55; margin-bottom:10px; }
.role-body svg{ width:15px; height:15px; color:var(--sage-300); margin-top:2px; flex:none; }
@media (max-width:1100px){ .roles-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .roles-grid{ grid-template-columns:1fr; } }

/* =================== WORKFLOW =================== */
.workflow-rail{ position:relative; }
.workflow-rail::before{
  content:""; position:absolute; left:27px; top:8px; bottom:8px; width:2px;
  background:repeating-linear-gradient(180deg,var(--line-strong) 0 8px, transparent 8px 16px);
}
@media (min-width:860px){
  .workflow-rail::before{ left:0; right:0; top:27px; height:2px; width:auto; bottom:auto; }
}
.workflow-steps{ display:flex; flex-direction:column; gap:0; position:relative; }
@media (min-width:860px){ .workflow-steps{ flex-direction:row; flex-wrap:wrap; } }
.wf-step{ display:flex; gap:18px; padding:22px 0; position:relative; }
@media (min-width:860px){ .wf-step{ flex-direction:column; gap:14px; flex:1 1 0; min-width:170px; padding:0 14px 14px; } }
.wf-num{
  width:54px; height:54px; border-radius:50%; flex:none;
  background:var(--paper); border:2px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:15px; color:var(--forest-700);
  position:relative; z-index:2;
  transition:all .3s;
}
.wf-step:hover .wf-num{ background:var(--forest-700); color:#fff; border-color:var(--forest-700); }
.wf-text h5{ font-family:'Fraunces',serif; font-size:15.5px; color:var(--forest-900); margin-bottom:5px; }
.wf-text p{ font-size:13px; color:#6E7D75; margin:0; line-height:1.5; }

/* =================== INDUSTRY USE CASES =================== */
.industry-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.industry-card{
  border-radius:var(--radius-md); padding:26px 20px; min-height:200px;
  display:flex; flex-direction:column; justify-content:flex-end;
  position:relative; overflow:hidden; color:#fff;
  transition:transform .3s var(--ease);
}
.industry-card:hover{ transform:translateY(-5px); }
.industry-card::before{ content:""; position:absolute; inset:0; background:linear-gradient(200deg,var(--forest-700),var(--ink)); opacity:0.94; }
.industry-card:nth-child(2)::before{ background:linear-gradient(200deg,#3D5A54,#1B2E27); }
.industry-card:nth-child(3)::before{ background:linear-gradient(200deg,#4A4030,#211C16); }
.industry-card:nth-child(4)::before{ background:linear-gradient(200deg,#3D4A5A,#161D26); }
.industry-card:nth-child(5)::before{ background:linear-gradient(200deg,#4A3450,#1F1623); }
.industry-card .ind-content{ position:relative; z-index:2; }
.industry-card .ind-ic{ margin-bottom:14px; opacity:0.9; }
.industry-card .ind-ic svg{ width:26px; height:26px; }
.industry-card h4{ color:#fff; font-size:16px; margin-bottom:6px; }
.industry-card p{ font-size:12.5px; color:rgba(255,255,255,0.72); margin:0; line-height:1.5; }
@media (max-width:1100px){ .industry-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:640px){ .industry-grid{ grid-template-columns:repeat(2,1fr); } }

/* =================== STATS =================== */
.stats-band{ background:var(--forest-700); color:#fff; padding:64px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-num{ font-family:'Fraunces',serif; font-size:clamp(2.2rem,4vw,3.1rem); color:#fff; font-weight:600; }
.stat-label{ font-size:13.5px; color:rgba(255,255,255,0.68); margin-top:8px; letter-spacing:0.02em; }
@media (max-width:768px){ .stats-grid{ grid-template-columns:repeat(2,1fr); gap:36px; } }

/* =================== TESTIMONIALS =================== */
.testi-track{ overflow:hidden; }
.testi-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:32px; height:100%; display:flex; flex-direction:column;
}
.testi-stars{ display:flex; gap:3px; margin-bottom:18px; color:var(--amber); }
.testi-stars svg{ width:15px; height:15px; }
.testi-card blockquote{ font-size:15.5px; line-height:1.7; color:var(--ink); margin:0 0 24px; flex:1; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:42px; height:42px; border-radius:50%; background:var(--forest-700); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:600; }
.testi-person strong{ display:block; font-size:13.8px; }
.testi-person span{ display:block; font-size:12.3px; color:#8B988F; }
.swiper-pagination-bullet{ background:var(--line-strong); opacity:1; }
.swiper-pagination-bullet-active{ background:var(--forest-700); }

/* =================== FAQ =================== */
.faq-list{ max-width:840px; margin:0 auto; display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.faq-item{ background:var(--paper); }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 26px; cursor:pointer; font-weight:600; font-size:15.3px; color:var(--forest-900);
}
.faq-q .plus{ width:22px; height:22px; flex:none; position:relative; }
.faq-q .plus::before,.faq-q .plus::after{ content:""; position:absolute; background:var(--forest-700); top:50%; left:50%; transform:translate(-50%,-50%); transition:.3s; }
.faq-q .plus::before{ width:14px; height:2px; }
.faq-q .plus::after{ width:2px; height:14px; }
.faq-item.is-open .plus::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.faq-a-inner{ padding:0 26px 24px; font-size:14.3px; color:#5C6B62; line-height:1.7; max-width:680px; }
.faq-item.is-open .faq-a{ max-height:300px; }

/* =================== PRICING =================== */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.price-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px 30px; display:flex; flex-direction:column; transition:all .3s var(--ease); position:relative;
}
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.price-card.featured{ background:var(--forest-900); border-color:var(--forest-900); color:#fff; transform:scale(1.035); box-shadow:var(--shadow-lg); }
.price-card.featured:hover{ transform:scale(1.035) translateY(-6px); }
.price-card.featured h3, .price-card.featured .price-num{ color:#fff; }
.price-card.featured .price-desc, .price-card.featured .price-feat li{ color:rgba(255,255,255,0.72); }
.price-card.featured .price-feat svg{ color:var(--sage-300); }
.price-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--amber); color:#fff; font-size:11.5px; font-weight:700;
  padding:6px 16px; border-radius:999px; letter-spacing:0.03em;
}
.price-card h3{ font-size:13px; font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:0.06em; color:var(--forest-600); margin-bottom:14px; }
.price-num{ font-family:'Fraunces',serif; font-size:2.6rem; color:var(--forest-900); margin-bottom:6px; }
.price-num span{ font-size:15px; font-family:'Inter',sans-serif; font-weight:500; color:#8B988F; }
.price-desc{ font-size:13.5px; color:#6E7D75; margin-bottom:26px; }
.price-feat{ display:flex; flex-direction:column; gap:12px; margin-bottom:30px; flex:1; }
.price-feat li{ display:flex; gap:10px; align-items:flex-start; font-size:13.8px; color:#4E5C55; }
.price-feat svg{ width:16px; height:16px; color:var(--success); flex:none; margin-top:2px; }
@media (max-width:980px){ .pricing-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } .price-card.featured{ transform:none; } .price-card.featured:hover{ transform:translateY(-6px); } }

/* =================== CONTACT =================== */
.contact-wrap{ display:grid; grid-template-columns:1fr; gap:48px; }
@media (min-width:980px){ .contact-wrap{ grid-template-columns:0.9fr 1.1fr; } }
.contact-info h2{ margin-bottom:18px; }
.contact-info p{ color:#5C6B62; font-size:15.5px; line-height:1.7; margin-bottom:32px; }
.contact-channel{ display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contact-channel .c-ic{ width:40px; height:40px; border-radius:10px; background:var(--sage-100); color:var(--forest-700); display:flex; align-items:center; justify-content:center; flex:none; }
.contact-channel .c-ic svg{ width:19px; height:19px; }
.contact-channel strong{ display:block; font-size:14.5px; margin-bottom:2px; }
.contact-channel span{ font-size:13.3px; color:#7A887F; }
.contact-form{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px;
  box-shadow:var(--shadow-md);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ margin-bottom:18px; }
.form-group label{ display:block; font-size:12.8px; font-weight:600; color:var(--forest-900); margin-bottom:7px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; border:1.5px solid var(--line-strong); border-radius:10px; padding:12px 14px;
  font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink); background:#fff;
  transition:border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ outline:none; border-color:var(--forest-600); }
.form-group textarea{ resize:vertical; min-height:96px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }

/* =================== FOOTER =================== */
.site-footer{ background:var(--ink); color:rgba(255,255,255,0.66); padding:80px 0 0; }
.footer-top{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:36px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand .brand{ color:#fff; margin-bottom:16px; }
.footer-brand p{ font-size:13.8px; line-height:1.7; max-width:280px; color:rgba(255,255,255,0.5); margin-bottom:20px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; transition:.2s; }
.footer-social a:hover{ background:var(--forest-600); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{ font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:18px; font-weight:500; }
.footer-col li{ margin-bottom:11px; }
.footer-col a{ font-size:13.8px; color:rgba(255,255,255,0.68); transition:.2s; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; padding:26px 0; font-size:12.8px; color:rgba(255,255,255,0.4); }
.footer-bottom-links{ display:flex; gap:22px; }
@media (max-width:980px){ .footer-top{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }

/* =================== MISC: GLightbox tweak, AOS helpers =================== */
.glightbox-clean .gslide-description{ background:transparent; }
[data-aos]{ }

.badge-pill{ display:inline-flex; align-items:center; gap:6px; font-size:11.8px; font-weight:600; padding:4px 10px; border-radius:999px; }
.badge-pill.green{ background:var(--success-soft); color:var(--success); }
.badge-pill.amber{ background:var(--amber-soft); color:var(--amber); }
.badge-pill.red{ background:var(--danger-soft); color:var(--danger); }

/* Back to top */
.back-to-top{
  position:fixed; bottom:26px; right:26px; z-index:900;
  width:46px; height:46px; border-radius:50%;
  background:var(--forest-800); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); opacity:0; pointer-events:none; transform:translateY(10px);
  transition:all .3s var(--ease);
}
.back-to-top.is-visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.back-to-top svg{ width:18px; height:18px; }

/* Sticky mobile CTA bar */
.mobile-cta-bar{ display:none; }
@media (max-width:680px){
  .mobile-cta-bar{
    display:flex; position:fixed; bottom:0; left:0; right:0; z-index:950;
    background:var(--paper); border-top:1px solid var(--line); padding:12px 16px;
    box-shadow:0 -8px 24px rgba(20,36,31,0.08); gap:10px;
  }
  .mobile-cta-bar .btn{ flex:1; }
}
