/* ==========================================================================
   License Xperts — Design System
   Display + Body/UI: Poppins (clean, geometric, friendly authority)
   Utility: IBM Plex Mono (status codes, license numbers, data)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* color tokens */
  --pine:        #0F3327;   /* deep pine — primary dark surface */
  --pine-2:      #123B2C;
  --leaf:        #1E8F52;   /* brand leaf green */
  --leaf-bright: #34B36B;   /* accent / hover */
  --leaf-pale:   #E4F1E8;   /* pale wash */
  --gold:        #C8952F;   /* seal / CTA accent */
  --gold-bright: #E0AC44;
  --paper:       #FBFBF8;   /* base background, warm-neutral not cream */
  --sage:        #F1F5F1;   /* alt section background */
  --line:        #DAE3DC;   /* hairline border */
  --ink:         #10241C;   /* primary text */
  --muted:       #4F6259;   /* secondary text */
  --white:       #FFFFFF;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 26px;

  --shadow-card: 0 20px 45px -18px rgba(15,51,39,0.28);
  --shadow-soft: 0 12px 30px -14px rgba(15,51,39,0.18);

  --wrap: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:'Poppins', sans-serif; font-weight:600; letter-spacing:-0.01em; color:var(--pine); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 28px; }

:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }
/* Dark overlay */
.role-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    transition: background 0.3s ease;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12.5px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--leaf);
}
.eyebrow::before{
  content:''; width:16px; height:2px; background:var(--gold); display:inline-block;
}
.eyebrow.on-dark{ color:var(--leaf-bright); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:999px; font-weight:700; font-size:15px;
  border:1.5px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px) scale(.98); }
.btn-gold{ background:var(--gold); color:var(--pine); box-shadow:var(--shadow-soft); }
.btn-gold:hover{ background:var(--gold-bright); transform:translateY(-2px); }
.btn-outline-light{ border-color:rgba(255,255,255,0.35); color:var(--white); }
.btn-outline-light:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }
.btn-outline{ border-color:var(--line); color:var(--pine); background:var(--white); }
.btn-outline:hover{ border-color:var(--leaf); color:var(--leaf); }
.btn-ghost{ color:var(--pine); font-weight:700; padding:14px 8px; }
.btn-ghost::after{ content:'→'; margin-left:6px; transition:transform .18s ease; display:inline-block; }
.btn-ghost:hover::after{ transform:translateX(4px); }
.btn-sm{ padding:10px 20px; font-size:14px; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(251,251,248,0.97);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease;
}
.site-header.is-scrolled{ box-shadow:0 8px 24px -16px rgba(15,51,39,0.35); }
/* backdrop-filter is scoped to desktop only: applying it on any ancestor of a
   position:fixed element (like our mobile nav panel) turns that ancestor into
   the fixed element's containing block instead of the viewport, trapping the
   panel inside the header's own height. Keeping it off on mobile avoids that. */
@media (min-width: 941px){
  .site-header{ background:rgba(251,251,248,0.88); backdrop-filter:blur(10px); }
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px; max-width:var(--wrap); margin:0 auto; gap:24px;
}
.nav-logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo img{ height:80px; width:auto; }
.nav-logo span{ font-family:'Poppins',sans-serif; font-weight:600; font-size:19px; color:var(--pine); }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-size:14.5px; font-weight:600; color:var(--muted); position:relative; padding:6px 0;
  transition:color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--pine); }
.nav-links a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--gold); border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.nav-tel{ font-family:'IBM Plex Mono', monospace; font-size:13.5px; color:var(--muted); display:none; }
.nav-toggle{ display:none; }

@media (max-width: 940px){
  .nav-links{
    position:fixed; top:0; right:0; bottom:0; width:min(84vw, 360px);
    background:var(--pine); flex-direction:column;
    align-items:flex-start; padding:104px 32px 40px; gap:2px;
    transform:translateX(100%);
    transition:transform .42s cubic-bezier(.4,0,.2,1);
    overflow-y:auto; z-index:99;
    box-shadow:-40px 0 70px -24px rgba(0,0,0,0.45);
  }
  .nav-links a{
    width:100%; padding:16px 2px; border-bottom:1px solid rgba(255,255,255,0.14);
    color:rgba(255,255,255,0.8); font-size:17.5px;
    opacity:0; transform:translateX(18px);
    transition:opacity .38s ease, transform .38s ease, color .15s ease;
  }
  .nav-links a:hover, .nav-links a.active{ color:#fff; }
  .nav-links a.active::after{ display:none; }
  .nav-links.open{ transform:translateX(0); }
  .nav-links.open a{ opacity:1; transform:none; }
  .nav-links.open a:nth-child(1){ transition-delay:.08s; }
  .nav-links.open a:nth-child(2){ transition-delay:.14s; }
  .nav-links.open a:nth-child(3){ transition-delay:.2s; }
  .nav-links.open a:nth-child(4){ transition-delay:.26s; }
  .nav-links.open a:nth-child(5){ transition-delay:.32s; }

  .nav-scrim{
    position:fixed; inset:0; background:rgba(9,26,20,0.5); backdrop-filter:blur(2px);
    opacity:0; pointer-events:none; transition:opacity .32s ease; z-index:98;
  }
  .nav-scrim.show{ opacity:1; pointer-events:auto; }

  .nav-toggle{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    background:none; border:none; padding:8px; position:relative; z-index:100;
  }
  .nav-toggle span{
    width:22px; height:2px; background:var(--pine); border-radius:2px;
    transition:transform .3s ease, opacity .2s ease;
  }
  .nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2){ opacity:0; }
  .nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .nav-cta .btn{ padding:11px 18px; font-size:13.5px; }
}
body.no-scroll{ overflow:hidden; }

/* ==========================================================================
   CREDENTIAL STUB — signature component
   Styled like a physical license/ID card: perforated edge + status ribbon
   ========================================================================== */
.stub{
  position:relative;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:26px 24px 24px 30px;
  box-shadow:var(--shadow-soft);
  transition:transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.stub:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 55px -20px rgba(15,51,39,0.32);
  border-color:var(--leaf);
}
.stub:hover .stub-icon{ background:var(--leaf); color:#fff; transition:background .3s ease, color .3s ease; }
.stub::before{
  /* perforated left edge */
  content:'';
  position:absolute; left:0; top:14px; bottom:14px; width:1px;
  background-image:radial-gradient(circle, var(--line) 1.6px, transparent 1.6px);
  background-size:10px 10px;
  background-position:0 0;
}
.stub::after{
  content:'';
  position:absolute; left:-5px; top:14px; bottom:14px; width:10px;
  background:
    radial-gradient(circle at 5px 0, transparent 5px, var(--paper) 5.5px) top left/10px 10px repeat-y;
}
.stub-status{
  position:absolute; top:16px; right:16px;
  font-family:'IBM Plex Mono', monospace; font-size:10.5px; font-weight:600; letter-spacing:.06em;
  padding:4px 10px; border-radius:999px; text-transform:uppercase;
  background:var(--leaf-pale); color:var(--leaf);
}
.stub-icon{
  width:46px; height:46px; border-radius:12px; background:var(--pine); color:var(--leaf-bright);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; flex-shrink:0;
  transition:background .3s ease, color .3s ease, transform .3s ease;
}
.stub-icon svg{ width:22px; height:22px; }
.stub h3{ font-size:19px; margin-bottom:8px; }
.stub p{ color:var(--muted); font-size:14.5px; }
.stub-code{
  margin-top:16px; padding-top:14px; border-top:1px dashed var(--line);
  font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:var(--muted); letter-spacing:.04em;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  background:var(--pine);
  color:var(--white);
  overflow:hidden;
  padding:64px 0 0;
}
.hero-roots{
  position:absolute; inset:0; opacity:0.16; pointer-events:none;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
  max-width:var(--wrap); margin:0 auto; padding:40px 28px 0;
  position:relative; z-index:2;
}
.hero-copy h1{
  color:var(--white); font-size:clamp(34px,4.6vw,56px); line-height:1.06; font-weight:600;
  margin:18px 0 22px;
}
.hero-copy h1 em{ font-style:italic; color:var(--leaf-bright); }
.hero-copy p.lede{
  color:rgba(255,255,255,0.78); font-size:18px; max-width:480px; margin-bottom:30px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.hero-trustline{
  margin-top:34px; display:flex; align-items:center; gap:14px; color:rgba(255,255,255,0.55); font-size:13.5px;
}
.hero-trustline .dots{ display:flex; gap:5px; }
.hero-trustline .dots span{ width:6px; height:6px; border-radius:50%; background:var(--gold); display:inline-block; }

.hero-visual{ position:relative; min-height:420px; z-index:2; padding:22px 26px 46px 6px; perspective:1000px; }
.hero-photo-frame{
  position:relative; height:430px; border-radius:var(--radius-l); overflow:hidden;
  box-shadow:0 40px 80px -28px rgba(0,0,0,0.6);
  transition:transform .25s ease-out;
  transform-style:preserve-3d;
}
.hero-photo-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-photo-frame::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(195deg, rgba(15,51,39,0.05) 30%, rgba(15,51,39,0.65) 100%);
}
.hero-float-card{
  position:absolute; background:var(--white); border-radius:var(--radius-m); z-index:4;
  box-shadow:0 24px 50px -18px rgba(0,0,0,0.5); padding:16px 18px;
}
.hero-float-card.top-right{ top:-6px; right:-14px; width:230px; }
.hero-float-card.bottom-left{ bottom:-18px; left:-16px; }
.cc-row{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:10px; }
.cc-label{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:.08em; color:var(--muted); text-transform:uppercase; }
.cc-title{ font-family:'Poppins',sans-serif; font-size:16px; color:var(--pine); font-weight:600; }
.cc-badge{ font-family:'IBM Plex Mono',monospace; font-size:10px; font-weight:600; padding:4px 9px; border-radius:999px; text-transform:uppercase; }
.cc-badge.on{ background:var(--leaf-pale); color:var(--leaf); }
.cc-badge.warn{ background:#FBF0DC; color:var(--gold); }
.cc-bar{ height:6px; border-radius:4px; background:var(--sage); overflow:hidden; margin-top:10px;}
.cc-bar span{ display:block; height:100%; background:var(--leaf); border-radius:4px; }

.hero-stat-chip{ display:flex; align-items:center; gap:12px; }
.hero-stat-chip .ic{ width:42px; height:42px; border-radius:10px; background:var(--leaf-pale); color:var(--leaf); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-stat-chip .big{ font-size:19px; font-weight:700; color:var(--pine); line-height:1.1; }
.hero-stat-chip .cap{ font-size:11px; color:var(--muted); margin-top:3px; white-space:nowrap; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ min-height:auto; padding:30px 20px 50px; }
  .hero-photo-frame{ height:320px; }
  .hero-copy p.lede{ max-width:none; }
}
@media (max-width:520px){
  .hero-float-card.top-right{ width:min(64vw,190px); font-size:13px; padding:12px 14px; }
  .hero-float-card.bottom-left{ padding:12px 14px; }
  .cc-title{ font-size:14.5px; }
  section{ padding:64px 0; }
  .cta-band{ padding:44px 24px; }
}

/* ---------- role showcase (image cards) ---------- */
.role-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.role-card{
  position:relative; border-radius:var(--radius-m); overflow:hidden; min-height:290px;
  box-shadow:var(--shadow-soft); display:block;
  transition:transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.role-card:hover{ transform:translateY(-6px); box-shadow:0 30px 55px -18px rgba(15,51,39,0.35); }
.role-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.role-card:hover img{ transform:scale(1.07); }
.role-card::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(190deg, rgba(15,51,39,0) 38%, rgba(15,51,39,0.86) 100%);
}
.role-card-content{ position:absolute; left:0; right:0; bottom:0; padding:20px; z-index:2; }
.role-card-content .tag{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--leaf-bright); }
.role-card-content h4{ color:#fff; font-size:18px; margin-top:6px; }
@media (max-width:900px){ .role-grid{ grid-template-columns:1fr 1fr;  }.nav-cta{
display:none;
}}
@media (max-width:560px){ .role-grid{ grid-template-columns:1fr; } 
.nav-cta{
display:none;
}}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trustbar{ padding:38px 0; border-bottom:1px solid var(--line); }
.trustbar p{
  text-align:center; font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--muted); margin-bottom:22px;
}
.trust-logos{
  display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:44px;
  color:var(--muted); font-family:'Poppins',sans-serif; font-weight:600; font-size:17px; opacity:0.6;
}

/* ==========================================================================
   SECTIONS — generic
   ========================================================================== */
section{ padding:96px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); margin:16px 0 14px; line-height:1.15; }
.section-head p{ color:var(--muted); font-size:17px; }
.alt{ background:var(--sage); }

/* ---------- benefits grid (Home) ---------- */
.benefits-layout{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:start; }
.benefit-list{ display:flex; flex-direction:column; gap:2px; }
.benefit-item{
  display:flex; align-items:center; gap:16px; padding:18px 18px;
  border:1px solid transparent; border-radius:var(--radius-s); cursor:default;
  transition:background .18s ease, border-color .18s ease;
}
.benefit-item:hover, .benefit-item.is-active{ background:var(--white); border-color:var(--line); box-shadow:var(--shadow-soft); }
.benefit-item .num{ font-family:'IBM Plex Mono',monospace; color:var(--gold); font-size:13px; font-weight:600; }
.benefit-item h4{ font-size:16.5px; color:var(--pine); }
.benefit-item p{ font-size:13.5px; color:var(--muted); margin-top:2px; }
.benefit-visual{
  background:var(--pine); border-radius:var(--radius-l); padding:34px; position:relative; overflow:hidden;
  min-height:420px; display:flex; flex-direction:column; justify-content:flex-end;
}
.benefit-visual img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.34; transition:opacity .3s ease; }
.benefit-visual-content{ position:relative; z-index:2; color:var(--white); }
.benefit-visual-content h3{ color:var(--white); font-size:24px; margin-bottom:10px; }
.benefit-visual-content p{ color:rgba(255,255,255,0.75); margin-bottom:18px; font-size:14.5px; }

@media (max-width: 900px){
  .benefits-layout{ grid-template-columns:1fr; }
}

/* ---------- stats band ---------- */
.stats-band{ background:var(--pine); color:var(--white); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.12); border-radius:var(--radius-m); overflow:hidden; }
.stat{ background:var(--pine-2); padding:36px 26px; }
.stat .num{ font-family:'Poppins',sans-serif; font-size:44px; color:var(--leaf-bright); font-weight:700; }
.stat .label{ font-size:13.5px; color:rgba(255,255,255,0.68); margin-top:8px; }
@media (max-width:800px){ .stats-grid{ grid-template-columns:1fr 1fr; } }

/* ---------- process / journey (real sequence -> numbered) ---------- */
.journey{ position:relative; }
.journey-track{
  display:grid; grid-template-columns:repeat(4,1fr); gap:26px; position:relative;
}
.journey-track::before{
  content:''; position:absolute; top:27px; left:6%; right:6%; height:2px;
  background:repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
  z-index:0;
}
.journey-step{ position:relative; z-index:1; }
.journey-marker{
  width:54px; height:54px; border-radius:50%; background:var(--white); border:2px solid var(--leaf);
  color:var(--leaf); font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:16px;
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  transition:transform .3s ease;
}
.journey-step:hover .journey-marker{ transform:scale(1.08); animation:gentlePulse 1.4s ease-out; }
.journey-step h4{ font-size:17px; margin-bottom:6px; }
.journey-step p{ font-size:14px; color:var(--muted); }
@media (max-width:820px){
  .journey-track{ grid-template-columns:1fr; gap:34px; }
  .journey-track::before{ display:none; }
}

/* ---------- feature stub grid ---------- */
.stub-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .stub-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:620px){ .stub-grid{ grid-template-columns:1fr; } }

/* ---------- testimonials ---------- */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-m); padding:30px 26px;
  display:flex; flex-direction:column; gap:18px; box-shadow:var(--shadow-soft);
  transition:transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.testimonial:hover{ transform:translateY(-6px); box-shadow:0 30px 55px -20px rgba(15,51,39,0.28); }
.testimonial .mark{ font-family:'Poppins',sans-serif; font-size:42px; color:var(--gold); line-height:0.6; }
.testimonial p.quote{ color:var(--ink); font-size:15px; line-height:1.65; }
.testimonial .person{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testimonial .person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.testimonial .person .name{ font-weight:700; font-size:14px; color:var(--pine); }
.testimonial .person .role{ font-size:12.5px; color:var(--muted); }
@media (max-width:900px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* ---------- founder / story ---------- */
.founder-card{
  display:flex; gap:22px; align-items:center; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-m); padding:24px; box-shadow:var(--shadow-soft);
}
@media (max-width:480px){
  .founder-card{ flex-direction:column; align-items:flex-start; text-align:left; }
}
.founder-card img{ width:84px; height:84px; border-radius:14px; object-fit:cover; flex-shrink:0; }
.founder-card h4{ font-size:17px; }
.founder-card .role{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--leaf); text-transform:uppercase; letter-spacing:.06em; margin:4px 0 10px; }
.founder-card p{ font-size:14px; color:var(--muted); }

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(135deg, var(--pine) 0%, #17493A 100%);
  border-radius:var(--radius-l); padding:64px 56px; text-align:center; color:var(--white);
  position:relative; overflow:hidden;
}
.cta-band h2{ color:var(--white); font-size:clamp(26px,3.6vw,38px); margin-bottom:14px; }
.cta-band p{ color:rgba(255,255,255,0.75); max-width:520px; margin:0 auto 30px; font-size:16.5px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--pine); color:rgba(255,255,255,0.72); padding:72px 0 26px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:32px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.14); }
.footer-brand .nav-logo span{ color:var(--white); }
.footer-brand p{ margin-top:14px; font-size:14px; max-width:280px; color:rgba(255,255,255,0.6); }
.footer-col h5{ font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--leaf-bright); margin-bottom:16px; }
.footer-col li{ margin-bottom:10px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,0.68); transition:color .15s ease; }
.footer-col a:hover{ color:var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:14px; }
.footer-bottom p{ font-size:13px; color:rgba(255,255,255,0.5); }
.footer-badges{ display:flex; gap:12px; }
.footer-badges span{
  font-family:'IBM Plex Mono',monospace; font-size:11px; padding:6px 12px; border:1px solid rgba(255,255,255,0.22);
  border-radius:999px; color:rgba(255,255,255,0.65);
}
@media (max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } .footer-bottom{ flex-direction:column; align-items:flex-start; } }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-hero{
  background:var(--pine); color:var(--white); padding:70px 0 84px; position:relative; overflow:hidden;
}
.page-hero .wrap{ position:relative; z-index:2; }
.page-hero h1{ color:var(--white); font-size:clamp(30px,4vw,48px); margin:16px 0 16px; max-width:720px; }
.page-hero p{ color:rgba(255,255,255,0.75); font-size:17px; max-width:560px; }
.breadcrumb{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:rgba(255,255,255,0.5); margin-bottom:6px; }
.breadcrumb span{ color:var(--gold); }

/* ---------- services detail rows ---------- */
.service-row{
  display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; padding:60px 0;
  border-bottom:1px solid var(--line);
}
.service-row:last-child{ border-bottom:none; }
.service-row.rev .service-media{ order:2; }
.service-media{ border-radius:var(--radius-l); overflow:hidden; position:relative; min-height:320px; }
.service-media img{ width:100%; height:100%; object-fit:cover; min-height:320px; }
.service-tag{ display:inline-flex; align-items:center; gap:8px; background:var(--leaf-pale); color:var(--leaf); font-family:'IBM Plex Mono',monospace; font-size:11.5px; font-weight:600; padding:6px 14px; border-radius:999px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:16px; }
.service-copy h3{ font-size:clamp(24px,2.6vw,32px); margin-bottom:14px; }
.service-copy p{ color:var(--muted); font-size:16px; margin-bottom:20px; }
.check-list{ display:flex; flex-direction:column; gap:12px; }
.check-list li{ display:flex; gap:10px; align-items:flex-start; font-size:15px; color:var(--ink); }
.check-list li svg{ flex-shrink:0; margin-top:3px; color:var(--leaf); }
@media (max-width:860px){
  .service-row, .service-row.rev{ grid-template-columns:1fr; }
  .service-row.rev .service-media{ order:0; }
}

/* ---------- pricing-style plan cards (used sparingly) ---------- */
.plan-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.plan{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-m); padding:34px 28px; box-shadow:var(--shadow-soft); }
.plan.highlight{ border-color:var(--leaf); box-shadow:0 24px 50px -18px rgba(30,143,82,0.35); position:relative; }
.plan.highlight::before{ content:'Most Popular'; position:absolute; top:-13px; left:28px; background:var(--gold); color:var(--pine); font-family:'IBM Plex Mono',monospace; font-size:11px; font-weight:700; padding:5px 12px; border-radius:999px; }
.plan h4{ font-size:20px; }
.plan .price{ font-family:'Poppins',sans-serif; font-size:32px; color:var(--pine); margin:14px 0; }
.plan .price span{ font-size:14px; color:var(--muted); font-family:'Poppins',sans-serif; }
@media (max-width:900px){ .plan-grid{ grid-template-columns:1fr; } }

/* ---------- contact page ---------- */
.contact-layout{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:50px; }
.contact-info-card{ background:var(--pine); color:var(--white); border-radius:var(--radius-l); padding:40px 34px; }
.contact-info-card h3{ color:var(--white); font-size:24px; margin-bottom:14px; }
.contact-info-card p{ color:rgba(255,255,255,0.72); font-size:15px; margin-bottom:28px; }
.contact-detail{ display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contact-detail .ic{ width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--leaf-bright); }
.contact-detail .lbl{ font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:rgba(255,255,255,0.5); }
.contact-detail .val{ font-size:15px; margin-top:3px; }

.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-l); padding:40px; box-shadow:var(--shadow-soft); }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-grid .full{ grid-column:1/-1; }
label{ display:block; font-size:13px; font-weight:700; color:var(--pine); margin-bottom:7px; }
input, select, textarea{
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:var(--radius-s);
  font-family:'Poppins',sans-serif; font-size:14.5px; background:var(--paper); color:var(--ink);
  transition:border-color .15s ease;
}
input:focus, select:focus, textarea:focus{ border-color:var(--leaf); outline:none; }
textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color:var(--muted); margin-top:14px; }
@media (max-width:860px){
  .contact-layout{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
}

/* ---------- FAQ (about/contact) ---------- */
.faq{ display:flex; flex-direction:column; gap:14px; max-width:760px; }
.faq-item{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-s); overflow:hidden; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; padding:20px 22px; cursor:pointer; font-weight:700; color:var(--pine); font-size:15.5px; }
.faq-q .plus{ font-family:'IBM Plex Mono',monospace; color:var(--leaf); font-size:18px; transition:transform .2s ease; }
.faq-item[open] .plus{ transform:rotate(45deg); }
.faq-a{ padding:0 22px 20px; color:var(--muted); font-size:14.5px; }

/* ---------- security / compliance badges ---------- */
.compliance-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.compliance-card{ text-align:center; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-m); padding:28px 18px; }
.compliance-card .ic{ width:52px; height:52px; margin:0 auto 14px; border-radius:50%; background:var(--leaf-pale); color:var(--leaf); display:flex; align-items:center; justify-content:center; }
.compliance-card h4{ font-size:15px; margin-bottom:6px; }
.compliance-card p{ font-size:13px; color:var(--muted); }
@media (max-width:820px){ .compliance-grid{ grid-template-columns:1fr 1fr; } }

/* ---------- values / mission grid (about) ---------- */
.value-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
@media (max-width:700px){ .value-grid{ grid-template-columns:1fr; } }

/* ---------- keyframes ---------- */
@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes gentlePulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(30,143,82,0.35); }
  50%{ box-shadow:0 0 0 6px rgba(30,143,82,0); }
}
@keyframes dashMove{
  to{ background-position:200px 0; }
}

/* ---------- simple reveal ---------- */
[data-reveal]{
  opacity:0; transform:translateY(22px) scale(.985);
  transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  will-change:opacity, transform;
}
[data-reveal].in{ opacity:1; transform:none; }

.hero-copy .eyebrow{ animation:fadeInUp .6s .05s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy h1{ animation:fadeInUp .7s .12s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy p.lede{ animation:fadeInUp .7s .2s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy .hero-actions{ animation:fadeInUp .7s .28s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy .hero-trustline{ animation:fadeInUp .7s .34s cubic-bezier(.2,.7,.3,1) both; }
.hero-visual{ animation:fadeInUp .8s .22s cubic-bezier(.2,.7,.3,1) both; }

.hero-float-card.top-right{ animation:floatY 5.5s ease-in-out .6s infinite; }
.hero-float-card.bottom-left{ animation:floatY 6.5s ease-in-out 1s infinite; }

@media (prefers-reduced-motion: reduce){
  .hero-copy *, .hero-visual, .hero-float-card{ animation:none !important; }
}
