/* ===================== Base ===================== */
:root{
  --ink:#191A2E;
  --ink-soft:#3d3e4d;
  --gray-text:#6b6c76;
  --gray-line:#e7e7e7;
  --section-gray:#f6f6f6;
  --peach:#ffeee4;
  --pink-card:#ffecee;
  --yellow-card:#f6f7c9;
  --purple-card:#eae4ff;
  --star:#ffa726;
  --radius-lg:28px;
  --radius-md:20px;
  --container-w:1200px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;width:100%;}
body{
  margin:0;
  font-family:'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color:var(--ink);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4,p{margin:0;}

.container{
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 24px;
}

/* ===================== Scroll-reveal / motion system ===================== */
.reveal,.reveal-left,.reveal-right,.reveal-scale{
  transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
  transition-delay:var(--delay,0s);
  will-change:opacity, transform;
}
.reveal{opacity:0;transform:translateY(28px);}
.reveal-left{opacity:0;transform:translateX(-36px);}
.reveal-right{opacity:0;transform:translateX(36px);}
.reveal-scale{opacity:0;transform:scale(.94);}
.reveal.in-view,.reveal-left.in-view,.reveal-right.in-view,.reveal-scale.in-view{
  opacity:1;transform:none;
}
@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-left,.reveal-right,.reveal-scale{opacity:1!important;transform:none!important;transition:none!important;}
  html{scroll-behavior:auto;}
}

/* Parallax-safe image wrappers */
.parallax-frame{overflow:hidden;}
.parallax-frame img{will-change:transform;}

/* Count-up targets keep tabular figures so digits don't jitter in width */
.count{font-variant-numeric:tabular-nums;}

/* ===================== Header ===================== */
.site-header{
  border-bottom:1px solid var(--gray-line);
  padding:20px 0;
  position:sticky;
  top:0;
  background:#fff;
  z-index:80;
  transition:box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled{
  box-shadow:0 8px 24px -18px rgba(17,17,17,.25);
  padding:14px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
}
.logo{
  font-size:24px;
  font-weight:800;
  letter-spacing:-0.5px;
}
.main-nav{
  display:flex;
  gap:34px;
  font-size:15px;
  font-weight:500;
}
.main-nav a{color:#4a4a55;transition:color .2s;}
.main-nav a:hover, .main-nav a.active{color:var(--ink);}

/* ----- Modules nav dropdown ----- */
.nav-dropdown{position:static;}
.nav-dropdown-trigger{
  background:none;border:none;font:inherit;font-size:15px;font-weight:500;
  color:#4a4a55;display:inline-flex;align-items:center;gap:7px;padding:0;
  cursor:pointer;transition:color .2s;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active, .nav-dropdown.open .nav-dropdown-trigger{color:var(--ink);}
.nav-caret{transition:transform .2s ease;flex-shrink:0;}
.nav-dropdown.open .nav-caret{transform:rotate(180deg);}
/* .nav-mega is the full hoverable hit-area: it starts flush at the
   trigger's bottom edge (top:100%, no gap) so the pointer never crosses
   dead space between the nav bar and the panel while moving down to it.
   The visible card sits inside .nav-mega-inner, offset down by the
   padding-top so it still reads as a gap visually. */
.nav-mega{
  position:absolute;top:100%;left:50%;
  transform:translateX(-50%) translateY(-8px);
  width:95%;max-width:1024px;
  padding-top:20px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
  z-index:100;
}
.nav-dropdown.open .nav-mega{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.nav-mega-inner{
  background:#fff;border:1px solid var(--gray-line);border-radius:20px;
  box-shadow:0 28px 56px -24px rgba(0,0,0,.25);
  padding:20px;
  display:flex;gap:20px;
}
.nav-mega-grid{
  flex:1 1 auto;
  display:grid;grid-template-columns:1fr 1fr;
  gap:2px;
  align-content:start;
}
.nav-mega-item{
  display:flex;align-items:flex-start;gap:13px;
  padding:11px;border-radius:14px;
  transition:background .15s ease;
}
.nav-mega-item:hover{background:var(--section-gray);}
.nav-mega-icon{
  width:40px;height:40px;border-radius:12px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
}
.nav-mega-text{display:flex;flex-direction:column;gap:3px;min-width:0;}
.nav-mega-text strong{font-size:13.5px;font-weight:700;color:var(--ink);line-height:1.3;}
.nav-mega-text span{font-size:11.5px;color:var(--gray-text);line-height:1.4;}
.nav-mega-promo{
  flex:0 0 300px;
  background:var(--section-gray);
  border-radius:16px;
  padding:18px;
  display:flex;flex-direction:column;
}
.nav-mega-promo img{width:100%;border-radius:10px;margin-bottom:16px;box-shadow:0 14px 28px -16px rgba(0,0,0,.3);}
.nav-mega-promo h4{font-size:13.5px;font-weight:700;line-height:1.35;margin-bottom:12px;}
.nav-mega-cta{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12.5px;font-weight:700;color:var(--ink);
  margin-top:auto;
}
.nav-mega-cta svg{transition:transform .2s ease;flex-shrink:0;}
.nav-mega-cta:hover svg{transform:translateX(3px);}

.header-icons{
  display:flex;
  align-items:center;
  gap:20px;
}
.icon-btn{
  background:none;
  border:none;
  color:var(--ink);
  display:flex;
  align-items:center;
  padding:2px;
  position:relative;
}
.signin-link{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
}
.nav-cta{
  padding:10px 22px;
  font-size:13.5px;
  white-space:nowrap;
}
.cart-btn{position:relative;}
.cart-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  background:#e0432a;
  color:#fff;
  font-size:9px;
  font-weight:700;
  width:14px;height:14px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

/* ----- Mobile nav toggle ----- */
.nav-toggle{
  display:none;
  background:none;border:none;color:var(--ink);
  padding:4px;
  flex-direction:column;
  gap:4px;
  width:22px;
}
.nav-toggle span{
  display:block;width:100%;height:2px;background:var(--ink);
  border-radius:2px;transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

.nav-scrim{
  display:none;
  position:fixed;inset:0;
  background:rgba(15,15,25,.4);
  z-index:90;
  opacity:0;
  transition:opacity .25s ease;
}
.nav-scrim.show{display:block;opacity:1;}

/* ===================== Hero ===================== */
.hero{
  padding:64px 24px 56px;
}
.hero-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  margin-bottom:48px;
}
.hero-title{
  font-size:56px;
  line-height:1.15;
  font-weight:400;
  letter-spacing:-1px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}
.hero-title .bold{font-weight:700;}
.hero-title{
  display:block;
}
.explore-btn{
  vertical-align:middle;
  margin-left:22px;
}
.btn-pill{
  background:var(--ink);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:16px 32px;
  font-size:15px;
  font-weight:500;
  letter-spacing:.2px;
  transition:transform .15s ease, background .2s ease;
}
.btn-pill:hover{background:#2b2c48;transform:translateY(-1px);}

.hero-side{
  display:flex;
  gap:22px;
  align-items:flex-start;
  padding-top:8px;
  flex-shrink:0;
}
.hero-reviews{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
}
.hero-avatars{width:33px;height:auto;}
.reviews-count{font-size:12.5px;line-height:1.35;}
.hero-side-text{
  display:flex;
  gap:14px;
  max-width:220px;
  padding-top:10px;
}
.divider-line{
  width:32px;height:1px;background:var(--ink);
  margin-top:8px;flex-shrink:0;
}
.hero-side-text p{
  font-size:13px;
  line-height:1.6;
  color:var(--gray-text);
}

/* ===================== Trust strip (dark, below hero) ===================== */
.trust-strip{
  background:var(--ink);
  border-radius:32px;
  padding:44px 40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
}
.trust-item strong{display:block;font-size:15px;font-weight:700;color:#fff;margin-bottom:8px;line-height:1.4;}
.trust-item p{font-size:13px;color:rgba(255,255,255,.6);line-height:1.6;}

/* ===================== Brand strip ===================== */
.brand-strip{padding:0 24px 8px;}
.marquee-label{
  text-align:center;
  font-size:11px;
  letter-spacing:1.5px;
  font-weight:600;
  color:var(--gray-text);
  text-transform:uppercase;
  padding:20px 4px;
}
.hairline{
  border:none;
  border-top:1px solid var(--gray-line);
  margin:0;
}
.brand-logos{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:36px 8px;
  gap:16px;
  flex-wrap:wrap;
}
.brand-item{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-item img{height:34px;width:auto;}
.brand-item span{
  font-size:11px;
  letter-spacing:1.5px;
  line-height:1.5;
  color:#1c1c26;
  font-weight:500;
  text-transform:uppercase;
}
.brand-item span b{font-weight:800;}
.brand-badge img{height:44px;}

/* ===================== Highlight cards (flagship modules) ===================== */
.highlight-section{padding:56px 24px 100px;}
.highlight-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  row-gap:56px;
  margin-bottom:48px;
}
.highlight-card{
  position:relative;
  border-radius:var(--radius-lg);
  padding:44px 40px 76px;
  color:#fff;
  transition:transform .25s ease, box-shadow .25s ease;
}
/* Each card's floating shot overflows its bottom edge — give earlier cards
   a higher stacking order so their shot never gets painted over by a card
   that follows it, in either the 2-column or single-column layout. */
.highlight-grid .highlight-card:nth-child(1){z-index:4;}
.highlight-grid .highlight-card:nth-child(2){z-index:3;}
.highlight-grid .highlight-card:nth-child(3){z-index:2;}
.highlight-grid .highlight-card:nth-child(4){z-index:1;}
.highlight-card:hover{transform:translateY(-4px);box-shadow:0 24px 44px -24px rgba(0,0,0,.35);}
.highlight-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.16);
  padding:6px 14px;border-radius:999px;
  font-size:11.5px;font-weight:600;
  margin-bottom:18px;
}
.highlight-card h3{font-size:26px;font-weight:600;line-height:1.25;margin-bottom:10px;max-width:66%;}
.highlight-card p{font-size:14px;color:rgba(255,255,255,.75);max-width:64%;line-height:1.6;margin-bottom:22px;}
.highlight-link{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:#fff;}
.highlight-link svg{transition:transform .2s ease;}
.highlight-card:hover .highlight-link svg{transform:translateX(4px);}
.highlight-shot{
  position:absolute;right:28px;bottom:-36px;
  width:190px;height:190px;border-radius:18px;
  box-shadow:0 26px 50px -22px rgba(0,0,0,.4);
  overflow:hidden;background:#fff;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.highlight-card:hover .highlight-shot{transform:translateY(-8px) rotate(-2deg) scale(1.04);}
/* Sized up via layout (not transform:scale) so the browser rasterizes the
   SVG at its real on-screen resolution instead of scaling a cached bitmap —
   scaling post-layout was the source of the blur at this small card size. */
.highlight-shot img{
  width:100%;max-width:100%;height:100%;
  object-fit:cover;display:block;
  will-change:transform;
  will-change: auto !important;
}

/* ===================== Conscious looks ===================== */
.conscious{padding:0 24px 90px;}
.conscious-card{
  background:var(--section-gray);
  border-radius:32px;
  display:grid;
  grid-template-columns:1fr 0.85fr;
  gap:40px;
  padding:64px;
  align-items:center;
}
.conscious-left h2{
  font-size:38px;
  font-weight:400;
  letter-spacing:-.6px;
  line-height:1.2;
  margin-bottom:18px;
}
.conscious-lead{
  font-size:14px;
  color:var(--gray-text);
  line-height:1.6;
  margin-bottom:28px;
}
.conscious-list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  border-top:1px solid #dedede;
  cursor:pointer;
}
.conscious-list li:last-child{border-bottom:1px solid #dedede;}
.conscious-list h3{
  font-size:19px;
  font-weight:600;
  margin-bottom:6px;
}
.conscious-list p{
  font-size:13px;
  color:var(--gray-text);
}
.arrow-circle{
  font-size:18px;
  flex-shrink:0;
  transition:transform .2s ease;
}
.conscious-list li:hover .arrow-circle{transform:translateX(6px);}
.conscious-right{
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:600/560;
}
.conscious-right img{
  width:100%;height:100%;object-fit:cover;
  will-change:transform;
}

/* ===================== Peach perks ===================== */
.perks{padding:0 24px 90px;}
.perks-card{
  background:var(--peach);
  border-radius:32px;
  padding:56px 40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:center;
}
.perks-card.cols-4{grid-template-columns:repeat(4,1fr);}
.perk-icon{
  width:64px;height:64px;
  margin:0 auto 18px;
  border-radius:50%;
  overflow:hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background:#fff;
  transition:transform .3s cubic-bezier(.34,1.56,.64,1);
}
.perk-icon img{width:70%;height:auto;object-fit:cover;}
.perk-icon i{font-size:22px;color:#3a3a3a;}
.perk:hover .perk-icon{transform:scale(1.1) rotate(-6deg);}

/* ----- Font Awesome icon sizing inside existing colored icon badges ----- */
.feature-icon i{font-size:21px;}
.mini-ico i{font-size:14px;}
.scroll-card-icon i{font-size:19px;color:#fff;}
.integration-tile i{font-size:26px;color:#191A2E;}
.info-icon i{font-size:16px;}
.value-card .perk-icon i{font-size:22px;color:#c9720f;}
.perk h3{font-size:19px;font-weight:600;margin-bottom:8px;}
.perk p{font-size:13.5px;color:var(--gray-text);line-height:1.6;}

/* ===================== Favorite picks ===================== */
.favorites{padding:20px 24px 90px;text-align:center;}
.favorites h2{
  font-size:38px;
  font-weight:700;
  letter-spacing:-.6px;
  margin-bottom:14px;
}
.favorites-lead{
  font-size:14px;
  color:var(--gray-text);
  line-height:1.6;
  max-width:480px;
  margin:0 auto 32px;
}
.filter-pills{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:44px;
}
.pill{
  border:1px solid #d8d8d8;
  background:#fff;
  color:var(--ink);
  border-radius:999px;
  padding:11px 24px;
  font-size:14px;
  font-weight:500;
  transition:all .2s ease;
}
.pill.active{background:var(--ink);color:#fff;border-color:var(--ink);}
.pill:hover:not(.active){border-color:var(--ink);}

/* ===================== Feature grid (modules) ===================== */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:left;
}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
.feature-card{
  border:1px solid var(--gray-line);
  border-radius:22px;
  padding:28px 24px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.feature-card.filtering{animation:fadeIn .35s ease;}
.feature-card:hover{transform:translateY(-6px);box-shadow:0 20px 34px -24px rgba(0,0,0,.22);border-color:transparent;}
.feature-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  color:#fff;
  transition:transform .3s cubic-bezier(.34,1.56,.64,1);
}
.feature-card:hover .feature-icon{transform:scale(1.1) rotate(-6deg);}
.feature-cat{
  font-size:10.5px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;
  color:var(--gray-text);margin-bottom:8px;display:block;
}
.feature-card h3{font-size:17px;font-weight:600;margin-bottom:8px;}
.feature-card p{font-size:13px;color:var(--gray-text);line-height:1.6;margin-bottom:18px;}
.feature-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13.5px;font-weight:600;color:var(--ink);
}
.feature-link svg{transition:transform .2s ease;}
.feature-card:hover .feature-link svg{transform:translateX(4px);}
.hidden-extra{display:none;}

/* ===================== Testimonials ===================== */
.testimonials{padding:0 24px 60px;}
.testi-viewport{overflow:hidden;padding-top:24px;margin-top:-24px;}
.testi-track{
  display:flex;
  transition:transform .45s cubic-bezier(.65,0,.35,1);
}
.testi-slide{
  flex:0 0 100%;
  display:flex;
  justify-content:center;
}
.testi-card{
  width:100%;
  max-width:600px;
  background:#fff;
  border:1px solid var(--gray-line);
  border-radius:20px;
  padding:28px;
  box-shadow:0 4px 20px -14px rgba(0,0,0,.15);
  transition:transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover{transform:translateY(-5px);box-shadow:0 20px 34px -18px rgba(0,0,0,.2);}
.testi-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:16px;
  gap:10px;
}
.testi-who{display:flex;align-items:center;gap:12px;}
.testi-avatar{
  width:40px;height:40px;border-radius:50%;object-fit:cover;
}
img.testi-avatar{}
.avatar-fallback{
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;color:#5c4326;
}
.testi-who h4{font-size:15px;font-weight:700;}
.testi-who span{font-size:12px;color:var(--gray-text);}
.stars{color:var(--star);font-size:13px;letter-spacing:2px;white-space:nowrap;}
.testi-card p{font-size:13.5px;line-height:1.65;color:#4a4a55;}

.testi-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:36px;
}
.testi-track-line{
  width:80px;height:3px;background:#e7e7e7;border-radius:3px;position:relative;overflow:hidden;
}
.testi-progress{
  position:absolute;left:0;top:0;height:100%;
  width:33.33%;background:var(--ink);
  transition:transform .4s ease;
}
.testi-next{
  width:40px;height:40px;border-radius:50%;
  background:var(--ink);color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  transition:transform .2s ease;
}
.testi-next:hover{transform:scale(1.08);}

/* ===================== Footer ===================== */
.site-footer{
  background:var(--ink);
  color:#fff;
  border-radius:32px 32px 0 0;
  padding-top:64px;
  margin-top:20px;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:48px;
}
.footer-logo{
  font-size:24px;font-weight:800;color:#fff;
  display:inline-block;margin-bottom:24px;
}
.newsletter{
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.35);
  max-width:260px;
  padding-bottom:10px;
}
.newsletter input{
  flex:1;
  background:none;border:none;outline:none;
  color:#fff;font-size:13.5px;font-family:inherit;
}
.newsletter input::placeholder{color:rgba(255,255,255,.55);}
.newsletter button{
  width:28px;height:28px;border-radius:50%;
  background:#fff;color:var(--ink);border:none;
  flex-shrink:0;font-size:13px;
  display:flex;align-items:center;justify-content:center;
}
.footer-col h5{
  font-size:14px;font-weight:700;margin-bottom:22px;color:#fff;
}
.footer-col a{
  display:block;
  font-size:13.5px;
  color:rgba(255,255,255,.7);
  margin-bottom:14px;
  transition:color .2s ease;
}
.footer-col a:hover{color:#fff;}
.footer-dash{
  border:none;
  border-top:1px dashed rgba(255,255,255,.3);
  margin:0 auto;
}
.footer-copy{
  text-align:center;
  font-size:12.5px;
  color:rgba(255,255,255,.6);
  padding:24px 0;
}

/* ===================== Toast ===================== */
.toast{
  position:fixed;
  bottom:28px;left:50%;
  transform:translate(-50%,20px);
  background:var(--ink);
  color:#fff;
  padding:14px 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  opacity:0;
  pointer-events:none;
  transition:all .3s ease;
  z-index:999;
  white-space:nowrap;
  box-shadow:0 10px 30px -10px rgba(0,0,0,.4);
}
.toast.show{
  opacity:1;
  transform:translate(-50%,0);
}

/* ===================== Shared page components (Shop / Product / About / Contact) ===================== */

/* Breadcrumb + page banner */
.page-banner{
  padding:48px 24px 40px;
  text-align:center;
}
.breadcrumb{
  display:flex;
  justify-content:center;
  gap:8px;
  font-size:13px;
  color:var(--gray-text);
  margin-bottom:16px;
}
.breadcrumb a{color:var(--gray-text);transition:color .2s;}
.breadcrumb a:hover{color:var(--ink);}
.breadcrumb .sep{color:#c9c9c9;}
.breadcrumb .current{color:var(--ink);font-weight:600;}
.page-banner h1{
  font-size:44px;
  font-weight:700;
  letter-spacing:-.8px;
}
.page-banner p{
  font-size:14px;
  color:var(--gray-text);
  max-width:480px;
  margin:14px auto 0;
  line-height:1.6;
}

/* Generic section heading (reused across new pages) */
.section-head{text-align:center;margin-bottom:44px;}
.section-head h2{
  font-size:36px;
  font-weight:400;
  letter-spacing:-.6px;
  margin-bottom:12px;
  font-weight: 700;
}
.section-head p{
  font-size:14px;
  color:var(--gray-text);
  max-width:480px;
  margin:0 auto;
  line-height:1.6;
}
.section{padding:0 24px 90px;}

/* ----- About: stats strip ----- */
.stats-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:44px 40px;
  background:var(--ink);
  border-radius:32px;
  text-align:center;
}
.stat h3{
  font-size:38px;
  font-weight:700;
  color:#fff;
  letter-spacing:-1px;
  margin-bottom:6px;
}
.stat p{font-size:13px;color:rgba(255,255,255,.65);}

/* ----- About: "Why FieldPro" alt story layout ----- */
.eyebrow{
  display:inline-block;
  background:var(--peach);
  color:#a15a13;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:999px;
  margin-bottom:20px;
}
.story-alt{
  display:grid;
  grid-template-columns:0.9fr 1fr;
  gap:64px;
  align-items:center;
}
.story-alt-media{position:relative;}
.story-alt-frame{border-radius:28px;overflow:hidden;aspect-ratio:4/4.5;}
.story-alt-frame img{
  width:100%;height:100%;
  display:block;
  object-fit:cover;
  will-change:transform;
}
.story-alt-badge{
  position:absolute;
  left:-28px;
  bottom:-28px;
  background:var(--ink);
  color:#fff;
  border-radius:20px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  gap:16px;
  max-width:230px;
  box-shadow:0 24px 44px -20px rgba(0,0,0,.45);
}
.story-alt-badge .num{
  font-size:30px;
  font-weight:800;
  letter-spacing:-1px;
  flex-shrink:0;
}
.story-alt-badge .label{
  font-size:11.5px;
  line-height:1.45;
  color:rgba(255,255,255,.7);
}
.story-alt-content h2{
  font-size:36px;
  font-weight:700;
  letter-spacing:-.6px;
  line-height:1.2;
  margin-bottom:18px;
}
.story-alt-content > p{
  font-size:14px;
  color:var(--gray-text);
  line-height:1.7;
  max-width:440px;
  margin-bottom:36px;
}
.num-list{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.num-item{
  display:flex;
  gap:22px;
  align-items:flex-start;
}
.num-item .num{
  font-size:34px;
  font-weight:800;
  color:#e5e5e5;
  line-height:1;
  min-width:46px;
  flex-shrink:0;
}
.num-item h3{font-size:16.5px;font-weight:600;margin-bottom:6px;}
.num-item p{font-size:13.5px;color:var(--gray-text);line-height:1.6;}

/* ----- About: values grid (reuses perk look, standalone bg) ----- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card{
  border:1px solid var(--gray-line);
  border-radius:24px;
  padding:36px 28px;
  text-align:center;
  transition:box-shadow .25s ease, transform .25s ease;
}
.value-card:hover{transform:translateY(-4px);box-shadow:0 20px 34px -22px rgba(0,0,0,.25);}
.value-card .perk-icon{background:var(--section-gray);transition:transform .3s cubic-bezier(.34,1.56,.64,1);}
.value-card:hover .perk-icon{transform:scale(1.1) rotate(-6deg);}

/* ----- About: journey timeline ----- */
.timeline{
  display:flex;
  flex-direction:column;
  padding-left:32px;
  border-left:2px solid var(--gray-line);
  max-width:640px;
  margin:0 auto;
}
.timeline-item{position:relative;padding-bottom:40px;}
.timeline-item:last-child{padding-bottom:0;}
.timeline-dot{
  position:absolute;left:-40px;top:2px;
  width:14px;height:14px;border-radius:50%;
  background:var(--ink);
  box-shadow:0 0 0 4px #fff, 0 0 0 5px var(--gray-line);
}
.timeline-date{
  font-size:12px;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:#c9720f;margin-bottom:6px;
}
.timeline-item h3{font-size:17.5px;font-weight:600;margin-bottom:6px;}
.timeline-item p{font-size:13.5px;color:var(--gray-text);line-height:1.65;max-width:480px;}

/* ----- About: industries served chip grid ----- */
.industry-chip-grid{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center;
}
.industry-chip{
  padding:11px 22px;border-radius:999px;
  background:var(--section-gray);
  font-size:13.5px;font-weight:600;color:var(--ink);
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), background .25s ease, color .25s ease;
}
.industry-chip:hover{transform:translateY(-4px);background:var(--ink);color:#fff;}

/* ----- About: team grid ----- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card{text-align:center;}
.team-avatar{
  width:100%;
  aspect-ratio:1/1;
  border-radius:20px;
  margin-bottom:16px;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;font-weight:700;color:#fff;
}
.team-card h3{font-size:16px;font-weight:600;margin-bottom:4px;}
.team-card span{font-size:12.5px;color:var(--gray-text);}
.team-link{display:block;margin-top:8px;font-size:12px;font-weight:600;color:#3b6bd1;}
.team-link:hover{text-decoration:underline;}

/* ----- CTA banner (About + Shop bottom) ----- */
.cta-banner{
  background:var(--peach);
  border-radius:32px;
  padding:64px 40px;
  text-align:center;
}
.cta-banner h2{
  font-size:34px;
  font-weight:700;
  letter-spacing:-.5px;
  margin-bottom:14px;
}
.cta-banner p{
  font-size:14px;
  color:var(--gray-text);
  max-width:420px;
  margin:0 auto 28px;
  line-height:1.6;
}

/* ----- Module directory toolbar (filters only, no sort/cart chrome) ----- */
.modules-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:36px;
}
.modules-toolbar .filter-pills{margin-bottom:0;justify-content:flex-start;}
.result-count{font-size:13px;color:var(--gray-text);white-space:nowrap;}

/* ----- Module detail hero ----- */
.module-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  padding:8px 24px 90px;
  align-items:center;
}
.module-hero-media{position:relative;}
.module-hero-frame{border-radius:28px;overflow:hidden;aspect-ratio:1/1;}
.module-hero-frame img{
  width:100%;height:100%;display:block;
  object-fit:cover;
  
  will-change:transform;
}
.module-hero-badge{
  position:absolute;left:-24px;bottom:-24px;
  background:var(--ink);color:#fff;
  border-radius:20px;padding:20px 22px;
  display:flex;align-items:center;gap:14px;
  max-width:220px;
  box-shadow:0 24px 44px -20px rgba(0,0,0,.45);
}
.module-hero-badge .num{font-size:26px;font-weight:800;letter-spacing:-1px;flex-shrink:0;}
.module-hero-badge .label{font-size:11.5px;line-height:1.45;color:rgba(255,255,255,.7);}
.module-hero-content h1{
  font-size:36px;font-weight:500;letter-spacing:-.5px;margin-bottom:14px;
}
.module-trust{
  display:flex;align-items:center;gap:10px;
  margin-bottom:18px;font-size:13.5px;color:var(--gray-text);
}
.module-hero-desc{font-size:14px;color:var(--gray-text);line-height:1.7;margin-bottom:28px;max-width:460px;}
.module-block{margin-bottom:28px;}
.module-block > span{font-size:13px;font-weight:600;display:block;margin-bottom:12px;}
.module-actions{display:flex;gap:14px;margin-bottom:28px;flex-wrap:wrap;}
.btn-outline{
  border:1px solid var(--ink);
  background:#fff;color:var(--ink);
  border-radius:999px;padding:16px 32px;
  font-size:15px;font-weight:500;
  transition:all .2s ease;
}
.btn-outline:hover{background:var(--ink);color:#fff;}
.module-meta{
  border-top:1px solid var(--gray-line);
  padding-top:20px;
  display:flex;flex-direction:column;gap:10px;
  font-size:13px;color:var(--gray-text);
}
.module-meta strong{color:var(--ink);font-weight:600;}

/* ----- Spotlight blocks (alternating capability sections) ----- */
.spotlight{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  border-radius:32px;
  padding:56px;
  margin-bottom:24px;
}
.spotlight.reverse .spotlight-media{order:-1;}
.spotlight-media{border-radius:20px;overflow:hidden;}
.spotlight-media img{width:100%;display:block;will-change:transform;}
.spotlight-content h3{font-size:26px;font-weight:600;margin-bottom:14px;letter-spacing:-.4px;}
.spotlight-content > p{font-size:14px;color:var(--gray-text);line-height:1.6;margin-bottom:24px;}

/* Tabs */
.tabs-nav{
  display:flex;
  gap:8px;
  border-bottom:1px solid var(--gray-line);
  margin-bottom:32px;
  flex-wrap:wrap;
}
.tab-btn{
  background:none;border:none;
  padding:14px 22px;
  font-size:14.5px;font-weight:500;
  color:var(--gray-text);
  border-bottom:2px solid transparent;
  margin-bottom:-1px;
  transition:color .2s ease;
}
.tab-btn.active{color:var(--ink);border-color:var(--ink);font-weight:600;}
.tab-panel{display:none;font-size:14px;color:var(--gray-text);line-height:1.75;}
.tab-panel.active{display:block;}
.spec-table{width:100%;border-collapse:collapse;}
.spec-table tr{border-bottom:1px solid var(--gray-line);}
.spec-table td{padding:14px 8px;font-size:13.5px;}
.spec-table td:first-child{color:var(--gray-text);width:38%;}
.spec-table td:last-child{color:var(--ink);font-weight:500;}

/* ----- Contact page ----- */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  padding:0 24px 90px;
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.field label{
  display:block;font-size:13px;font-weight:600;margin-bottom:8px;
}
.field input,.field textarea,.field select{
  width:100%;
  border:1px solid #d8d8d8;
  border-radius:14px;
  padding:14px 16px;
  font-size:14px;
  font-family:inherit;
  color:var(--ink);
  resize:vertical;
  transition:border-color .2s ease;
  background:#fff;
}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--ink);}
.contact-form .btn-pill{align-self:flex-start;border:none;}

.contact-info{
  background:var(--section-gray);
  border-radius:28px;
  padding:36px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.info-row{display:flex;gap:16px;align-items:flex-start;}
.info-icon{
  width:44px;height:44px;border-radius:50%;
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;color:var(--ink);
}
.info-row h4{font-size:14.5px;font-weight:600;margin-bottom:4px;}
.info-row p{font-size:13.5px;color:var(--gray-text);line-height:1.6;}
.social-row{display:flex;gap:10px;margin-top:6px;}
.social-row a{
  width:38px;height:38px;border-radius:50%;
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink);
  transition:background .2s ease, color .2s ease;
}
.social-row a:hover{background:var(--ink);color:#fff;}
.social-row a i{font-size:14px;}
.map-frame{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--gray-line);
  height:220px;
}
.map-frame iframe{width:100%;height:100%;border:0;display:block;filter:grayscale(.15);}

/* FAQ accordion */
.faq-list{max-width:760px;margin:0 auto;}
.faq-item{
  border-bottom:1px solid var(--gray-line);
}
.faq-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  background:none;border:none;
  text-align:left;
  padding:22px 4px;
  font-size:15.5px;font-weight:600;
  color:var(--ink);
}
.faq-q .plus{
  font-size:20px;font-weight:400;flex-shrink:0;
  transition:transform .25s ease;
}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-a p{font-size:14px;color:var(--gray-text);line-height:1.7;padding:0 4px 22px;}

/* ===================== Check list (module features) ===================== */
.check-list{display:flex;flex-direction:column;gap:14px;}
.check-list li{display:flex;align-items:flex-start;gap:12px;font-size:13.5px;color:var(--ink-soft);line-height:1.5;}
.check-list .check-ico{
  width:20px;height:20px;border-radius:50%;
  background:#e6f3ee;color:#2f8f6b;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;
}

/* ===================== Billing toggle (Pricing page) ===================== */
.billing-toggle{
  display:flex;align-items:center;justify-content:center;
  gap:14px;margin:0 auto 48px;
  font-size:14px;font-weight:500;color:var(--gray-text);
}
.billing-toggle .on{color:var(--ink);}
.switch{
  position:relative;width:52px;height:30px;
  background:var(--ink);border-radius:999px;
  border:none;cursor:pointer;flex-shrink:0;
}
.switch::after{
  content:'';position:absolute;top:3px;left:3px;
  width:24px;height:24px;border-radius:50%;background:#fff;
  transition:transform .25s ease;
}
.switch.yearly::after{transform:translateX(22px);}
.save-badge{
  background:var(--yellow-card);color:#7a6a10;
  font-size:11px;font-weight:700;
  padding:4px 10px;border-radius:999px;
}

/* ===================== Pricing cards ===================== */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  align-items:stretch;
}
.pricing-card{
  border:1px solid var(--gray-line);
  border-radius:var(--radius-md);
  padding:32px 26px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:box-shadow .25s ease, transform .25s ease;
}
.pricing-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -26px rgba(0,0,0,.25);}
.pricing-card.popular{background:var(--ink);color:#fff;border-color:var(--ink);}
.plan-badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:#e0432a;color:#fff;
  font-size:11px;font-weight:700;
  padding:6px 16px;border-radius:999px;
  white-space:nowrap;
}
.pricing-card h3{font-size:19px;font-weight:700;margin-bottom:6px;}
.pricing-card .plan-desc{font-size:12.5px;color:var(--gray-text);margin-bottom:20px;min-height:32px;}
.pricing-card.popular .plan-desc{color:rgba(255,255,255,.65);}
.price-row{display:flex;align-items:baseline;gap:6px;margin-bottom:6px;}
.price-row .amount{font-size:36px;font-weight:800;letter-spacing:-1px;}
.price-row .period{font-size:13px;color:var(--gray-text);}
.pricing-card.popular .price-row .period{color:rgba(255,255,255,.6);}
.price-yearly{font-size:12px;color:var(--gray-text);margin-bottom:24px;}
.pricing-card.popular .price-yearly{color:rgba(255,255,255,.55);}
.pricing-card .btn-pill{width:100%;text-align:center;margin-bottom:26px;}
.pricing-card.popular .btn-pill{background:#fff;color:var(--ink);}
.pricing-card.popular .btn-pill:hover{background:#eee;}
.plan-features{display:flex;flex-direction:column;gap:12px;font-size:13px;}
.plan-features li{display:flex;align-items:flex-start;gap:10px;}
.plan-features .check-ico{
  width:18px;height:18px;border-radius:50%;flex-shrink:0;margin-top:1px;
  background:#e6f3ee;color:#2f8f6b;display:flex;align-items:center;justify-content:center;
}
.pricing-card.popular .plan-features .check-ico{background:rgba(255,255,255,.15);color:#fff;}
.pricing-card.enterprise-card{background:var(--section-gray);border-color:var(--section-gray);}

/* ===================== Add-ons (extra revenue) ===================== */
.addon-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.addon-card{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:20px;padding:24px;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.addon-card:hover{transform:translateY(-4px);box-shadow:0 18px 32px -22px rgba(0,0,0,.2);}
.addon-card h4{font-size:14.5px;font-weight:600;margin-bottom:4px;}
.addon-card p{font-size:12.5px;color:var(--gray-text);}
.addon-card .addon-price{font-size:14px;font-weight:700;color:var(--ink);white-space:nowrap;}

/* ===================== Compare table (multi-column) ===================== */
.compare-table{width:100%;border-collapse:collapse;font-size:13.5px;}
.compare-table th{
  text-align:center;padding:14px 8px;font-size:12.5px;font-weight:700;color:var(--ink);
  border-bottom:2px solid var(--gray-line);
}
.compare-table th:first-child{text-align:left;}
.compare-table td{padding:14px 8px;text-align:center;border-bottom:1px solid var(--gray-line);color:var(--gray-text);}
.compare-table td:first-child{text-align:left;color:var(--ink);font-weight:500;}
.compare-table .yes{color:#2f8f6b;font-weight:700;}
.compare-table .no{color:#c9c9c9;}

/* ===================== Platform & security section (dark) ===================== */
.platform-section{
  background:var(--ink);
  border-radius:32px;
  padding:56px 48px;
}
.platform-section .section-head h2,.platform-section .section-head p{color:#fff;}
.platform-section .section-head p{color:rgba(255,255,255,.6);}
.platform-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  text-align:left;
}
.platform-item .feature-icon{background:rgba(255,255,255,.1);margin-bottom:16px;}
.platform-item:hover .feature-icon{background:rgba(255,255,255,.18);transform:scale(1.1) rotate(-6deg);}
.platform-item h4{font-size:15px;font-weight:600;color:#fff;margin-bottom:6px;}
.platform-item p{font-size:12.5px;color:rgba(255,255,255,.6);line-height:1.6;}

/* ===================== Hero live ticker ===================== */
.hero-ticker{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--section-gray);
  padding:8px 16px;border-radius:999px;
  font-size:12.5px;color:var(--gray-text);
  margin-bottom:22px;
}
.hero-ticker strong{color:var(--ink);font-variant-numeric:tabular-nums;}

/* ===================== Logo marquee (auto-scroll) ===================== */
.marquee{overflow:hidden;position:relative;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);}
.marquee-track{
  display:flex;gap:64px;align-items:center;
  width:max-content;
  animation:marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee-track{animation-play-state:paused;}
@media (prefers-reduced-motion: reduce){.marquee-track{animation:none;}}
@keyframes marquee-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ===================== Scroll-reveal statement text ===================== */
.statement-section{padding:20px 24px 100px;text-align:center;}
.statement-text{
  font-size:32px;font-weight:600;line-height:1.55;letter-spacing:-.4px;
  max-width:860px;margin:0 auto;
}
.statement-text .sr-word{color:#d6d6d6;transition:color .25s ease;}
.statement-text .sr-word.lit{color:var(--ink);}

/* ===================== Integrations scattered icons ===================== */
.integrations-section{padding:20px 24px 100px;text-align:center;}
.integrations-grid{
  display:flex;justify-content:center;align-items:flex-end;
  gap:20px;flex-wrap:wrap;margin-top:52px;
}
.integration-tile{
  width:92px;height:92px;border-radius:20px;
  display:flex;align-items:center;justify-content:center;
  background:var(--section-gray);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.integration-tile:nth-child(2n){margin-bottom:26px;}
.integration-tile:nth-child(3n){margin-bottom:-14px;}
.integration-tile:hover{transform:translateY(-8px) scale(1.06);box-shadow:0 20px 30px -18px rgba(0,0,0,.3);}

/* Tooltip on hover, built from data-tooltip so no JS is needed */
.integration-tile{position:relative;}
.integration-tile::before,
.integration-tile::after{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:6;
}
.integration-tile::after{
  content:attr(data-tooltip);
  bottom:calc(100% + 14px);
  background:var(--ink);
  color:#fff;
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
  padding:8px 14px;
  border-radius:8px;
}
.integration-tile::before{
  content:"";
  bottom:calc(100% + 8px);
  border:6px solid transparent;
  border-top-color:var(--ink);
}
.integration-tile:hover::after,
.integration-tile:hover::before{
  opacity:1;
  transform:translateX(-50%) translateY(-4px);
}

/* ===================== Horizontal scroll-row (cards + arrow nav) ===================== */
.scroll-row-section{padding:0 24px 0;}
.scroll-row-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:40px;gap:24px;flex-wrap:wrap;
}
.scroll-row-head h2{ font-size:36px;font-weight:700;letter-spacing:-.6px;}
.scroll-row-head p{font-size:14px;color:var(--gray-text);max-width:420px;margin-top:8px;}
.scroll-row-nav{display:flex;gap:12px;flex-shrink:0;}
.scroll-arrow{
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--gray-line);background:#fff;color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  transition:all .2s ease;
}
.scroll-arrow:hover{background:var(--ink);color:#fff;border-color:var(--ink);}
.scroll-arrow:disabled{opacity:.35;cursor:default;}
.scroll-arrow:disabled:hover{background:#fff;color:var(--ink);border-color:var(--gray-line);}
.scroll-row-viewport{
  overflow-x:auto;
  overflow-y:hidden;
  padding-top:20px;margin-top:-24px;
  padding-bottom:100px;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  cursor:grab;
  -webkit-user-select:none;user-select:none;
}
.scroll-row-viewport::-webkit-scrollbar{display:none;}
.scroll-row-viewport.dragging{cursor:grabbing;scroll-snap-type:none;}
.scroll-row-track{display:flex;gap:20px;width:max-content;}
.scroll-card{
  flex:0 0 260px;
  scroll-snap-align:start;
  border-radius:24px;padding:32px 28px;color:#fff;
  position:relative;min-height:230px;
  display:flex;flex-direction:column;justify-content:flex-end;
  transition:transform .3s ease, box-shadow .3s ease;
}
.scroll-card:hover{transform:translateY(-6px);box-shadow:0 22px 40px -18px rgba(0,0,0,.35);}
.scroll-card h4{font-size:17px;font-weight:600;margin-bottom:8px;}
.scroll-card p{font-size:13px;color:rgba(255,255,255,.8);line-height:1.55;}
.scroll-card-icon{
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.scroll-card .big-stat{font-size:42px;font-weight:800;letter-spacing:-1px;margin-bottom:6px;}

/* ===================== Accordion + layered stack diagram ===================== */
.acc-section{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;
  align-items:center;padding:20px 24px 100px;
}
.acc-heading{font-size:30px;font-weight:700;line-height:1.3;letter-spacing:-.4px;margin-bottom:32px;}
.acc-list{display:flex;flex-direction:column;}
.acc-item{border-top:1px solid var(--gray-line);}
.acc-item:last-child{border-bottom:1px solid var(--gray-line);}
.acc-item-head{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:22px 4px;background:none;border:none;text-align:left;
  font-size:18px;font-weight:600;color:var(--ink);
}
.acc-item-head .acc-icon{
  font-size:18px;font-weight:400;flex-shrink:0;transition:transform .25s ease;
}
.acc-item.open .acc-item-head .acc-icon{transform:rotate(45deg);}
.acc-item-body{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.acc-mini-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
  padding:4px 4px 28px;
}
.acc-mini-item{display:flex;align-items:center;gap:10px;font-size:13.5px;color:var(--ink-soft);}
.acc-mini-item .mini-ico{
  width:32px;height:32px;border-radius:9px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.stack-wrap{display:flex;justify-content:center;padding:20px 0;}
.layer-stack{position:relative;width:100%;max-width:320px;height:320px;}
.layer{
  position:absolute;left:50%;top:var(--top);
  width:280px;height:60px;
  border-radius:16px;background:var(--layer-bg);
  display:flex;align-items:center;padding:0 22px;
  font-size:13px;font-weight:700;color:#fff;
  box-shadow:0 14px 26px -14px rgba(0,0,0,.4);
  transform:translateX(-50%) rotate(var(--rot));
  transition:transform .3s ease;
}
.layer:hover{transform:translateX(-50%) rotate(0deg) scale(1.03);}
.layer span{opacity:.8;font-weight:500;font-size:11px;margin-left:auto;white-space:nowrap;}

/* ===================== Testimonial prev arrow (mirrors next) ===================== */
.testi-prev{
  width:40px;height:40px;border-radius:50%;
  background:#fff;color:var(--ink);border:1px solid var(--gray-line);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.testi-prev:hover{transform:scale(1.08);background:var(--ink);color:#fff;}

/* ===================== Solutions-by-team tabs ===================== */
.solutions-section{padding:20px 24px 100px;}
.solutions-tabs-nav{
  display:flex;gap:10px;flex-wrap:wrap;margin-bottom:40px;
}
.solutions-tabs-nav .tab-pill{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--gray-line);background:#fff;color:var(--ink);
  border-radius:999px;padding:12px 20px;font-size:13.5px;font-weight:500;
  transition:all .2s ease;
}
.solutions-tabs-nav .tab-pill.active{background:var(--ink);color:#fff;border-color:var(--ink);}
.solution-panel{display:none;}
.solution-panel.active{display:grid;grid-template-columns:1fr 1fr;border-radius:32px;overflow:hidden;}
.solution-copy{padding:56px;display:flex;flex-direction:column;justify-content:center;}
.solution-copy h3{font-size:27px;font-weight:600;letter-spacing:-.4px;margin-bottom:16px;line-height:1.25;color:#fff;}
.solution-copy .check-list{margin-bottom:28px;}
.solution-copy .check-list li{color:rgba(255,255,255,.85);}
.solution-copy .check-ico{background:rgba(255,255,255,.18);color:#fff;}
.solution-copy .btn-pill{background:#fff;color:var(--ink);align-self:flex-start;}
.solution-copy .btn-pill:hover{background:#eee;}
.solution-visual{
  padding:56px;display:flex;align-items:center;justify-content:center;
  position:relative;
}
.mini-record-card{
  background:#fff;border-radius:20px;padding:24px;
  width:100%;max-width:320px;
  box-shadow:0 30px 60px -24px rgba(0,0,0,.4);
}
.mini-record-card h5{font-size:13px;font-weight:700;margin-bottom:16px;color:var(--ink);}
.mini-record-row{
  display:flex;align-items:center;gap:10px;
  padding:10px 0;border-top:1px solid var(--gray-line);
  font-size:12.5px;color:var(--ink-soft);
}
.mini-record-row:first-of-type{border-top:none;}
.mini-record-row span:first-child{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.mini-record-row span:nth-child(2){color:var(--ink);font-weight:700;flex-shrink:0;}
.mini-record-row .chip{
  font-size:9.5px;font-weight:700;padding:3px 9px;border-radius:999px;
  text-transform:uppercase;letter-spacing:.3px;flex-shrink:0;
}

/* ===================== Multi-step lead form ===================== */
.lead-section{padding:20px 24px 100px;}
.lead-card{
  border-radius:32px;padding:64px 56px;
  background:var(--ink);color:#fff;
  position:relative;overflow:hidden;
}
.lead-steps{display:flex;gap:24px;margin-bottom:24px;font-size:13px;color:rgba(255,255,255,.45);position:relative;z-index:1;}
.lead-steps .step{display:flex;align-items:center;gap:8px;}
.lead-steps .step-num{
  width:20px;height:20px;border-radius:50%;border:1px solid rgba(255,255,255,.35);
  display:flex;align-items:center;justify-content:center;font-size:10.5px;
}
.lead-steps .step.active{color:#fff;font-weight:700;}
.lead-steps .step.active .step-num{background:#fff;color:var(--ink);border-color:#fff;}
.lead-card h2{font-size:30px;font-weight:700;margin-bottom:28px;color:#fff;letter-spacing:-.4px;position:relative;z-index:1;}
.lead-question{font-size:13px;font-weight:600;color:rgba(255,255,255,.7);margin-bottom:14px;position:relative;z-index:1;}
.lead-options{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:32px;position:relative;z-index:1;}
.lead-option{
  border:1px solid rgba(255,255,255,.2);border-radius:16px;
  padding:18px;text-align:center;font-size:13.5px;font-weight:500;color:#fff;
  background:rgba(255,255,255,.04);
  transition:all .2s ease;
}
.lead-option:hover{border-color:rgba(255,255,255,.5);}
.lead-option.selected{background:#fff;color:var(--ink);border-color:#fff;}
.lead-step-panel{display:none;}
.lead-step-panel.active{display:block;}
.lead-fields{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px;position:relative;z-index:1;}
.lead-fields input{
  width:100%;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.06);
  border-radius:14px;padding:14px 16px;color:#fff;font-family:inherit;font-size:14px;
}
.lead-fields input::placeholder{color:rgba(255,255,255,.5);}
.lead-fields input:focus{outline:none;border-color:#fff;}
.lead-actions{display:flex;gap:14px;position:relative;z-index:1;}
.lead-card .btn-pill{background:#fff;color:var(--ink);}
.lead-card .btn-pill:hover{background:#eee;}
.lead-card .btn-pill:disabled{opacity:.4;cursor:default;}
.lead-back{
  background:none;border:none;color:rgba(255,255,255,.6);
  font-size:14px;font-weight:500;display:flex;align-items:center;
}
.lead-back:hover{color:#fff;}
.lead-stripes{
  position:absolute;inset:0;opacity:.5;
  background-image:repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px);
}

/* ===================== Category icon chip (module cards / detail) ===================== */
.cat-chip{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11.5px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;
  color:var(--gray-text);margin-bottom:8px;
}

/* ===================== Responsive additions for new components ===================== */
@media (max-width:1024px){
  .pricing-grid{grid-template-columns:repeat(2,1fr);}
  .addon-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .pricing-grid{grid-template-columns:1fr;}
  .addon-grid{grid-template-columns:1fr;}
  .compare-table{font-size:12px;}
}

/* ===================== Responsive ===================== */
@media (max-width:1024px){
  .hero-title{font-size:44px;}
  .highlight-grid{grid-template-columns:1fr;}
  .platform-grid{grid-template-columns:repeat(2,1fr);}
  .platform-section{padding:40px 28px;}
  .conscious-card{grid-template-columns:1fr;padding:40px;}
  .conscious-right{order:-1;}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .module-hero{grid-template-columns:1fr;gap:40px;}
  .module-hero-media{order:-1;}
  .module-hero-badge{left:16px;bottom:-20px;max-width:180px;padding:16px 18px;}
  .spotlight{grid-template-columns:1fr;padding:32px;}
  .spotlight.reverse .spotlight-media{order:0;}
  .perks-card.cols-4{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .stats-strip{grid-template-columns:repeat(2,1fr);row-gap:32px;}
  .trust-strip{grid-template-columns:repeat(2,1fr);row-gap:28px;}
  .contact-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .story-alt{grid-template-columns:1fr;gap:56px;}
  .story-alt-badge{left:16px;bottom:-24px;}
}

@media (max-width:820px){
  .main-nav{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:min(320px,80vw);
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:90px 32px 32px;
    transform:translateX(100%);
    transition:transform .3s ease;
    z-index:100;
    box-shadow:-10px 0 40px rgba(0,0,0,.12);
  }
  .main-nav.open{transform:translateX(0);}
  .main-nav a{
    padding:16px 0;
    width:100%;
    border-bottom:1px solid var(--gray-line);
    font-size:16px;
  }
  .nav-toggle{display:flex;}

  .nav-dropdown{width:100%;border-bottom:1px solid var(--gray-line);}
  .nav-dropdown-trigger{width:100%;justify-content:space-between;padding:16px 0;font-size:16px;}
  .nav-mega{
    position:static;
    width:100%;max-width:none;
    transform:none;
    border:none;box-shadow:none;
    padding:0;
    display:block;
    max-height:0;overflow:hidden;
    opacity:1;visibility:visible;pointer-events:auto;
    transition:max-height .3s ease;
  }
  .nav-dropdown.open .nav-mega{max-height:600px;padding-bottom:16px;}
  .nav-mega-inner{display:block;padding:0;border:none;box-shadow:none;background:none;}
  .nav-mega-grid{grid-template-columns:1fr;gap:0;}
  .nav-mega-item{padding:10px 0;}
  .nav-mega-promo{display:none;}

  .hero-top{flex-direction:column;}
  .hero-side{padding-top:20px;}
  .perks-card{grid-template-columns:1fr;}
  .perks-card.cols-4{grid-template-columns:1fr;}
  .feature-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .values-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .stats-strip{padding:36px 24px;}
  .story-alt-badge{
    position:static;
    max-width:none;
    margin-top:-48px;
    margin-left:16px;
    margin-right:16px;
  }
}

@media (max-width:640px){
  .container{padding:0 18px;}
  .hero{padding:40px 18px 80px;}
  .abouthero,
  .contacthero,
  .pricinghero{
    padding-top: 40px;
  }
  .brand-strip,.highlight-section,.conscious,.perks,.favorites,.testimonials,.section,.module-hero,.contact-grid{padding-left:18px;padding-right:18px;}
  .brand-logos{justify-content:center;gap:28px 32px;}
  .trust-strip{grid-template-columns:1fr;padding:32px 24px;}
  .footer-inner{grid-template-columns:1fr;gap:36px;}
  .site-footer{border-radius:24px 24px 0 0;}
  .highlight-card h3,.highlight-card p{max-width:100%;}
  .highlight-shot{display:block;position:relative;margin-top:24px;width:100%;height:auto;aspect-ratio:1/1;max-width:190px;}
  .highlight-card{padding:36px 28px;}
  .marquee-label{
    padding-bottom: 40px;
  }
  .favorites{
    padding-top: 20px;
  }
  .solutions-tabs-nav,
  .filter-pills{
    overflow: hidden;
    gap: 8px;
    flex-wrap: wrap !important;
  }
  .solutions-tabs-nav .tab-pill,
  .pill{
    padding: 6px 12px;
    font-size: 12px;
  }
  .lead-section{
    padding-top: 80px;
  }
  .contact-info{
    padding-left: 20px;
    padding-right: 30px;
  }
  .solutions-section, .lead-section,
  .testimonials,
  .favorites,
  .pricinghero,
  .contactpage > section,
  .pricingplans,
  .pricingaddons,
  .pricingcompare,
  .faqs,
  .cta,
  .aboutpage > section,
  .acc-section,
  .scroll-row-viewport,
  .highlight-section,
  .statement-section,
  .serviceDetailsPage > section,
  .brand-strip,
  .integrations-section{
    padding-bottom: 80px;
  }
  .module-hero{
    gap: 80px ;
  }
  
}

@media (max-width:520px){
  .hero-title{font-size:32px;letter-spacing:-.5px;}
  .explore-btn{display:inline-block;margin:16px 0 0;}
  .footer-inner{grid-template-columns:1fr;}
  .conscious-card{padding:24px;border-radius:24px;}
  .conscious-left h2{font-size:28px;}
  .favorites h2,.page-banner h1,.section-head h2,.cta-banner h2{font-size:28px;}
  .feature-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
  .module-hero-content h1{font-size:26px;}
  .module-actions{flex-wrap:wrap;}
  .module-actions .btn-pill,.module-actions .btn-outline{flex:1 1 100%;text-align:center;}
  .stats-strip{grid-template-columns:1fr 1fr;}
  .team-grid{grid-template-columns:1fr 1fr;}
  .modules-toolbar{flex-direction:column;align-items:stretch;}
  .filter-pills{overflow-x:auto;flex-wrap:nowrap;padding-bottom:6px;justify-content:flex-start;}
  .pill{flex-shrink:0;}
  .signin-link{display:none;}
  .nav-cta{padding:9px 16px;font-size:12.5px;}
  .header-icons{gap:12px;}
}

@media (max-width:400px){
  .feature-grid{grid-template-columns:1fr;gap:10px;}
  .hero-title{font-size:28px;}
  .stats-strip{grid-template-columns:1fr 1fr;padding:28px 16px;}
  .platform-grid{
            grid-template-columns: 1fr;

  }
}

/* ===================== Responsive: new Multiplier-layout sections ===================== */
@media (max-width:1024px){
  .statement-text{font-size:26px;}
  .acc-section{grid-template-columns:1fr;gap:40px;}
  .solution-panel.active{grid-template-columns:1fr;}
  .solution-copy,.solution-visual{padding:40px;}
  .lead-card{padding:40px 32px;}
  .lead-options{grid-template-columns:1fr 1fr;}
}
@media (max-width:820px){
  .scroll-row-head{flex-direction:column;align-items:flex-start;}
  .lead-fields{grid-template-columns:1fr;}
  .solutions-tabs-nav{overflow-x:auto;flex-wrap:nowrap;padding-bottom:6px;}
  .solutions-tabs-nav .tab-pill{flex-shrink:0;}
  .nav-dropdown.open .nav-mega{
    transform: none;
  }
}
@media (max-width:640px){
  .statement-section,.integrations-section,.scroll-row-section,.acc-section,.solutions-section,.lead-section{padding-left:18px;padding-right:18px;}
  .statement-text{font-size:22px;}
  .scroll-card{flex:0 0 220px;}
  .lead-options{grid-template-columns:1fr;}
  .layer-stack{max-width:260px;height:280px;}
  .layer{width:230px;height:52px;font-size:11.5px;}
  .section-head h2,
  .acc-heading,
  .lead-card h2,
  .favorites h2,
  .scroll-row-head h2{
    font-size: 28px;
  }
  .scroll-card .big-stat{
    font-size: 30px;
  }
  .hero-top{
    margin-bottom: 0;
  }
  .lead-stripes,
  .platform-section,
  .trust-strip,
  .cta-banner,
  .contact-info,
  .stats-strip,
  .perks-card,
  .spotlight,
  .highlight-card,
  .solution-panel.active{
    border-radius: 24px;
  }
  .spotlight:not(:last-child){
    margin-bottom: 80px;
  }
  .story-alt,
  .faqs .container,
  .aboutindustries .container,
  .leadership .container,
  .howweconnect .container,
  .relatedModules .container{
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width:520px){
  .lead-card h2{font-size:24px;}
  .lead-card{padding:32px 22px;}
  .integration-tile{width:76px;height:76px;border-radius:16px;}
  .solution-copy, .solution-visual {
        padding: 25px;
    }
}

/* =====================================================================
   DARK MODE
   Pure additive override layer — nothing above this point is touched.
   Toggled via [data-theme="dark"] on <html>, set by the inline script in
   <head> (to avoid a flash of light mode) and by the header toggle button.
   Components that are ALREADY permanently dark regardless of theme (footer,
   platform-section, lead-card, hover/active states on --ink, tooltips,
   badges sitting on a fixed-color card) are intentionally left alone —
   only the theme-dependent light surfaces and their text are overridden.
   ===================================================================== */
[data-theme="dark"]{
  --gray-text:#9698ad;
  --gray-line:#2e3044;
  --section-gray:#1c1e2b;
  --peach:#2e2418;
  --pink-card:#2e1f26;
  --yellow-card:#2c2b17;
  --purple-card:#221f36;
}

/* Page + typography */
[data-theme="dark"] body{background:#101120;color:#edeef4;}
[data-theme="dark"] .statement-text .sr-word{color:#42435a;}
[data-theme="dark"] .statement-text .sr-word.lit{color:#edeef4;}
[data-theme="dark"] .compare-table .no{color:#4c4d63;}

/* Header, nav, mobile drawer */
[data-theme="dark"] .site-header{background:#101120;border-bottom-color:#2a2b3e;}
[data-theme="dark"] .site-header.scrolled{box-shadow:0 8px 24px -18px rgba(0,0,0,.6);}
[data-theme="dark"] .main-nav a:hover,[data-theme="dark"] .main-nav a.active{color:#edeef4;}
[data-theme="dark"] .nav-dropdown-trigger:hover,[data-theme="dark"] .nav-dropdown-trigger.active,[data-theme="dark"] .nav-dropdown.open .nav-dropdown-trigger{color:#edeef4;}
[data-theme="dark"] .nav-mega-inner{background:#1a1c2b;border-color:#2a2b3e;box-shadow:0 28px 56px -24px rgba(0,0,0,.6);}
[data-theme="dark"] .nav-mega-text strong{color:#edeef4;}
[data-theme="dark"] .nav-mega-cta{color:#edeef4;}
[data-theme="dark"] .icon-btn{color:#edeef4;}
[data-theme="dark"] .nav-toggle{color:#edeef4;}
[data-theme="dark"] .nav-toggle span{background:#edeef4;}
[data-theme="dark"] .main-nav{background:#101120;box-shadow:-10px 0 40px rgba(0,0,0,.5);}
[data-theme="dark"] .main-nav a{color:#c7c8d6;}

/* Dark-mode toggle button */
.theme-toggle{
  background:none;border:none;color:var(--ink);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:50%;flex-shrink:0;
  position:relative;transition:background .2s ease;
}
.theme-toggle:hover{background:var(--section-gray);}
.theme-toggle .theme-icon{position:absolute;transition:opacity .25s ease, transform .35s ease;}
.theme-toggle .theme-icon.sun{opacity:1;transform:rotate(0) scale(1);}
.theme-toggle .theme-icon.moon{opacity:0;transform:rotate(-90deg) scale(.5);}
[data-theme="dark"] .theme-toggle{color:#edeef4;}
[data-theme="dark"] .theme-toggle:hover{background:#242637;}
[data-theme="dark"] .theme-toggle .theme-icon.sun{opacity:0;transform:rotate(90deg) scale(.5);}
[data-theme="dark"] .theme-toggle .theme-icon.moon{opacity:1;transform:rotate(0) scale(1);}

/* Filter pills, links, chips on the page (not the always-dark active/hover state) */
[data-theme="dark"] .pill{background:#1a1c2b;color:#edeef4;border-color:#33344a;}
[data-theme="dark"] .feature-link{color:#edeef4;}
[data-theme="dark"] .feature-card{border-color:#2a2b3e;}
[data-theme="dark"] .feature-card:hover{box-shadow:0 20px 34px -24px rgba(0,0,0,.6);}
[data-theme="dark"] .industry-chip{color:#edeef4;}
[data-theme="dark"] .integration-tile i{color:#edeef4;}

/* Cards & surfaces */
[data-theme="dark"] .highlight-shot{background:#1a1c2b;}
[data-theme="dark"] .perk-icon{background:#1a1c2b;}
[data-theme="dark"] .testi-card{background:#1a1c2b;border-color:#2a2b3e;box-shadow:0 4px 20px -14px rgba(0,0,0,.5);}
[data-theme="dark"] .addon-card{background:#1a1c2b;border-color:#2a2b3e;}
[data-theme="dark"] .addon-card .addon-price{color:#edeef4;}
[data-theme="dark"] .mini-record-card{background:#1a1c2b;}
[data-theme="dark"] .mini-record-card h5{color:#edeef4;}
[data-theme="dark"] .mini-record-row span:nth-child(2){color:#edeef4;}
[data-theme="dark"] .conscious-card{background:#181926;}
[data-theme="dark"] .value-card{border-color:#2a2b3e;}
[data-theme="dark"] .timeline{border-left-color:#2a2b3e;}
[data-theme="dark"] .timeline-dot{box-shadow:0 0 0 4px #101120, 0 0 0 5px #2a2b3e;}
[data-theme="dark"] .team-card .team-avatar{box-shadow:0 0 0 1px #2a2b3e;}

/* Buttons & nav arrows that sit directly on the page */
[data-theme="dark"] .btn-outline{background:#1a1c2b;color:#edeef4;border-color:#3a3c56;}
[data-theme="dark"] .scroll-arrow{background:#1a1c2b;color:#edeef4;border-color:#2e3044;}
[data-theme="dark"] .scroll-arrow:disabled:hover{background:#1a1c2b;color:#edeef4;border-color:#2e3044;}
[data-theme="dark"] .testi-prev,[data-theme="dark"] .testi-next{background:#1a1c2b;color:#edeef4;border-color:#2e3044;}
[data-theme="dark"] .solutions-tabs-nav .tab-pill{background:#1a1c2b;color:#edeef4;border-color:#2e3044;}
[data-theme="dark"] .testi-track-line{background:#2e3044;}

/* Forms (contact page, lead form step 2 inputs already sit on dark card) */
[data-theme="dark"] .field input,[data-theme="dark"] .field textarea,[data-theme="dark"] .field select{
  background:#1a1c2b;color:#edeef4;border-color:#33344a;
}
[data-theme="dark"] .field input::placeholder,[data-theme="dark"] .field textarea::placeholder{color:#6e7089;}
[data-theme="dark"] .field label{color:#edeef4;}
[data-theme="dark"] .field input:focus,[data-theme="dark"] .field textarea:focus,[data-theme="dark"] .field select:focus{border-color:#6f72a8;}
[data-theme="dark"] .contact-info{background:#181926;}
[data-theme="dark"] .info-icon{background:#1a1c2b;color:#edeef4;}
[data-theme="dark"] .social-row a{background:#1a1c2b;color:#edeef4;}
[data-theme="dark"] .social-row a:hover{background:var(--ink);color:#fff;}
[data-theme="dark"] .map-frame iframe{filter:grayscale(.4) invert(.9) contrast(.9);}

/* FAQ / tabs / accordions */
[data-theme="dark"] .faq-q{color:#edeef4;}
[data-theme="dark"] .faq-item{border-bottom-color:#2a2b3e;}
[data-theme="dark"] .tab-btn.active{color:#edeef4;border-color:#edeef4;}
[data-theme="dark"] .tabs-nav{border-bottom-color:#2a2b3e;}
[data-theme="dark"] .acc-item-head{color:#edeef4;}
[data-theme="dark"] .acc-item,[data-theme="dark"] .acc-item:last-child{border-color:#2a2b3e;}
[data-theme="dark"] .acc-mini-item{color:#c7c8d6;}

/* Pricing */
[data-theme="dark"] .pricing-card{border-color:#2a2b3e;}
[data-theme="dark"] .pricing-card.enterprise-card{background:#1c1e2b;border-color:#1c1e2b;}
[data-theme="dark"] .billing-toggle .on{color:#edeef4;}
[data-theme="dark"] .save-badge{color:#e8d36a;}
[data-theme="dark"] .compare-table th{color:#edeef4;border-bottom-color:#33344a;}
[data-theme="dark"] .compare-table td{border-bottom-color:#2a2b3e;}
[data-theme="dark"] .compare-table td:first-child{color:#edeef4;}

/* Module pages */
[data-theme="dark"] .breadcrumb a:hover{color:#edeef4;}
[data-theme="dark"] .breadcrumb .current{color:#edeef4;}
[data-theme="dark"] .module-meta strong{color:#edeef4;}
[data-theme="dark"] .module-hero-frame{background:#1a1c2b;}
[data-theme="dark"] .spotlight-media{background:#1a1c2b;}
[data-theme="dark"] .eyebrow{color:#f0a860;}
[data-theme="dark"] .story-alt-frame{background:#1a1c2b;}

/* About page */
[data-theme="dark"] .num-item .num{color:#33344a;}
[data-theme="dark"] .hero-avatars{filter:invert(1);}

/* Scrollbar (Chromium/WebKit) — keep it unobtrusive on a dark page */
[data-theme="dark"] ::-webkit-scrollbar{width:12px;height:12px;}
[data-theme="dark"] ::-webkit-scrollbar-track{background:#101120;}
[data-theme="dark"] ::-webkit-scrollbar-thumb{background:#2e3044;border-radius:999px;border:3px solid #101120;}
[data-theme="dark"] ::selection{background:#3a3c56;color:#edeef4;}
