/* ==========================================================================
   SHYAM ELECTRIC CO — Design System
   Premium White Theme | 30% Glassmorphism | 20% Claymorphism | 50% Clean UI
   ========================================================================== */

:root{
  /* Core palette */
  --charcoal:        #1C1B19;
  --charcoal-soft:    #3A3733;
  --ink-muted:        #6B6560;
  --warm-white:       #FAF7F2;
  --warm-white-2:     #F3EEE6;
  --paper:            #FFFFFF;
  --line:             #E7E1D6;

  /* Accent — restrained copper/amber (solar) + deep electric blue (electrical) */
  --amber:            #C17A2E;
  --amber-light:      #E3A85E;
  --amber-dim:        #F4E3CB;
  --electric:         #1F3A5F;
  --electric-light:   #35577F;
  --success:          #2F7A4F;
  --danger:           #B3432E;

  /* Shadows */
  --shadow-clay-out:  8px 8px 20px rgba(28,27,25,0.10), -8px -8px 20px rgba(255,255,255,0.9);
  --shadow-clay-press: inset 4px 4px 10px rgba(28,27,25,0.10), inset -4px -4px 10px rgba(255,255,255,0.7);
  --shadow-soft:      0 10px 30px rgba(28,27,25,0.07);
  --shadow-lift:      0 20px 45px rgba(28,27,25,0.14);
  --shadow-glass:     0 8px 32px rgba(28,27,25,0.10);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

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

.container{ max-width:1240px; margin:0 auto; padding:0 24px; }
.hide-sm{ display:inline-block; }
@media (max-width:640px){ .hide-sm{ display:none !important; } }

h1,h2,h3,h4{ font-family:var(--font-head); color:var(--charcoal); line-height:1.15; margin:0 0 .5em; font-weight:600; }
h1{ font-size:clamp(1.9rem, 3.6vw, 3.1rem); letter-spacing:-.01em; }
h2{ font-size:clamp(1.55rem, 2.6vw, 2.25rem); letter-spacing:-.01em; }
h3{ font-size:1.18rem; }
p{ margin:0 0 1em; color:var(--charcoal-soft); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--amber); margin-bottom:14px;
}
.eyebrow::before{ content:''; width:22px; height:2px; background:var(--amber); display:inline-block; }

.section{ padding:88px 0; }
.section--tight{ padding:56px 0; }
.section--alt{ background:var(--warm-white-2); }
.section-head{ max-width:680px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ==========================================================================
   Buttons — clean + subtle claymorphism
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px; border-radius:100px; font-weight:700; font-size:.95rem;
  border:none; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn--sm{ padding:11px 22px; font-size:.85rem; }
.btn--primary{
  background:linear-gradient(145deg, var(--amber-light), var(--amber));
  color:#fff;
  box-shadow:0 10px 24px rgba(193,122,46,.35), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover{ transform:translateY(-3px); box-shadow:0 16px 30px rgba(193,122,46,.45); }
.btn--dark{
  background:linear-gradient(145deg, var(--charcoal-soft), var(--charcoal));
  color:#fff;
  box-shadow:0 10px 24px rgba(28,27,25,.28);
}
.btn--dark:hover{ transform:translateY(-3px); box-shadow:0 16px 30px rgba(28,27,25,.35); }
.btn--outline{
  background:transparent; color:var(--charcoal); border:1.5px solid var(--line);
}
.btn--outline:hover{ border-color:var(--amber); color:var(--amber); transform:translateY(-2px); }
.btn--outline-light{
  background:rgba(255,255,255,.08); color:#fff; border:1.5px solid rgba(255,255,255,.4); backdrop-filter:blur(6px);
}
.btn--outline-light:hover{ background:rgba(255,255,255,.18); transform:translateY(-2px); }
.btn--block{ width:100%; }
.btn:disabled{ opacity:.6; cursor:not-allowed; transform:none !important; }

/* ==========================================================================
   Topbar + Header
   ========================================================================== */
.topbar{ background:var(--charcoal); color:#EDE7DC; font-size:.8rem; }
.topbar__inner{ display:flex; justify-content:space-between; align-items:center; padding:8px 24px; gap:16px; }
.topbar__contact{ display:flex; gap:20px; }
.topbar__contact a{ opacity:.9; transition:opacity .2s; }
.topbar__contact a:hover{ opacity:1; color:var(--amber-light); }
.ico{ opacity:.85; margin-right:2px; }

.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(250,247,242,.82);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s var(--ease);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand__logo{ height:54px; width:auto; object-fit:contain; }
.brand__mark{
  width:46px; height:46px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--amber-light), var(--electric));
  color:#fff; font-family:var(--font-head); font-weight:700; font-size:1.1rem;
  box-shadow:var(--shadow-clay-out);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.2; white-space:nowrap; }
.brand__name{ font-family:var(--font-head); font-weight:700; font-size:1.15rem; color:var(--charcoal); }
.brand__tag{ font-size:.68rem; color:var(--ink-muted); letter-spacing:.03em; }
.brand--footer{ margin-bottom:14px; }
.brand--footer .brand__name{ color:#fff; }

.main-nav{ min-width:0; flex-shrink:1; overflow:visible; }
.main-nav ul{ display:flex; gap:2px; flex-wrap:nowrap; }
.main-nav a{
  display:block; padding:10px 13px; border-radius:100px; font-weight:600; font-size:.87rem;
  color:var(--charcoal-soft); transition:all .25s var(--ease); white-space:nowrap;
}
.main-nav a:hover, .main-nav a.is-active{ background:var(--paper); color:var(--amber); box-shadow:var(--shadow-soft); }

.header__actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; flex-shrink:0; }
.nav-toggle span{ width:24px; height:2.5px; background:var(--charcoal); border-radius:2px; transition:.3s; }

@media (max-width:1360px){
  .main-nav a{ padding:9px 10px; font-size:.83rem; }
}
@media (max-width:1240px){
  .brand__tag{ display:none; }
  .main-nav a{ padding:9px 9px; font-size:.8rem; }
}
@media (max-width:1180px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; top:0; height:100vh; width:80%; max-width:300px;
    background:var(--paper); box-shadow:-10px 0 40px rgba(0,0,0,.15);
    transform:translateX(100%); transition:transform .35s var(--ease); z-index:220;
    padding:90px 22px 24px; overflow-y:auto;
    display:flex; flex-direction:column;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:2px; flex-wrap:wrap; }
  .main-nav a{ padding:12px 14px; font-size:.92rem; font-weight:600; white-space:normal; border-radius:10px; }
  .main-nav a.is-active{ box-shadow:none; background:var(--warm-white-2); }
  .nav-toggle{ display:flex; }
  .nav-toggle.is-open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity:0; }
  .nav-toggle.is-open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
  .brand__tag{ display:block; }

  .main-nav__mobile-cta{ display:flex; flex-direction:column; gap:10px; margin-top:20px; padding-top:20px; border-top:1px solid var(--line); }
  .main-nav__mobile-cta .btn{ width:100%; justify-content:center; padding:12px 20px; font-size:.85rem; }

  .nav-scrim{
    display:none; position:fixed; inset:0; background:rgba(20,18,16,.5); z-index:210;
    opacity:0; transition:opacity .3s var(--ease);
  }
  .nav-scrim.is-open{ display:block; opacity:1; }
}

.main-nav__mobile-cta{ display:none; }
body.nav-open-lock{ overflow:hidden; }

/* ==========================================================================
   Glassmorphism components (~30%)
   ========================================================================== */
.glass{
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:var(--shadow-glass);
}
.glass-dark{
  background:rgba(28,27,25,.55);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

/* ==========================================================================
   Claymorphism components (~20%)
   ========================================================================== */
.clay{
  background:var(--warm-white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-clay-out);
  transition:box-shadow .3s var(--ease), transform .3s var(--ease);
}
.clay:hover{ transform:translateY(-4px); }
.clay-icon{
  width:64px; height:64px; border-radius:20px; display:flex; align-items:center; justify-content:center;
  background:var(--warm-white); box-shadow:var(--shadow-clay-out); color:var(--amber); flex-shrink:0;
}

/* ==========================================================================
   Reusable hero building blocks (badge / actions / stats) — used by both
   the video hero-v2 and inner .page-hero sections
   ========================================================================== */
.hero__badge{
  display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:100px;
  background:var(--paper); box-shadow:var(--shadow-soft); font-size:.8rem; font-weight:700; color:var(--electric); margin-bottom:22px;
}
.hero__badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--success); box-shadow:0 0 0 4px rgba(47,122,79,.18); }
.hero__desc{ font-size:1.08rem; max-width:520px; margin-bottom:32px; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:40px; }
.hero__stats{ display:flex; gap:28px; flex-wrap:wrap; }
.hero__stat .num{ font-family:var(--font-head); font-size:1.9rem; font-weight:700; color:var(--charcoal); display:flex; align-items:baseline; gap:2px; }
.hero__stat .num small{ font-size:1.1rem; color:var(--amber); }
.hero__stat .label{ font-size:.8rem; color:var(--ink-muted); }

/* ==========================================================================
   Hero v2 — full-screen video background + centered content + live dashboard
   ========================================================================== */
.hero-v2{
  position:relative; height:100vh; min-height:560px; max-height:960px; display:flex; align-items:center; justify-content:center;
  overflow:hidden; background:var(--charcoal); padding:0;
}
.hero-v2__media{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-v2__media video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.hero-v2__overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,14,13,.45) 0%, rgba(15,14,13,.55) 45%, rgba(15,14,13,.85) 100%);
}
.hero-v2__content{ position:relative; z-index:2; text-align:center; max-width:760px; padding:0 24px; margin:0 auto; }
.hero-v2__content h1{ color:#fff; margin-bottom:16px; }
.hero-v2__content .hero__desc{ color:#E5DFD3; max-width:580px; margin:0 auto 30px; }
.hero-v2 .hero__badge{ background:rgba(255,255,255,.12); backdrop-filter:blur(10px); color:#fff; border:1px solid rgba(255,255,255,.25); box-shadow:none; margin-bottom:20px; }
.hero-v2 .hero__badge .dot{ background:#5FD98A; box-shadow:0 0 0 4px rgba(95,217,138,.25); }
.hero-v2 .hero__actions{ justify-content:center; margin-bottom:0; }

.live-dash{
  position:absolute; right:28px; bottom:28px; z-index:3; width:270px; border-radius:22px; padding:20px 22px;
  color:var(--charcoal); background:rgba(255,255,255,.88);
}
.live-dash__head{
  display:flex; align-items:center; gap:8px; font-size:.7rem; font-weight:800; letter-spacing:.06em;
  color:var(--ink-muted); text-transform:uppercase; margin-bottom:14px; position:relative; padding-right:44px;
}
.live-dash__dot{ width:8px; height:8px; border-radius:50%; background:var(--success); box-shadow:0 0 0 4px rgba(47,122,79,.18); animation:pulse-dot 1.6s infinite; flex-shrink:0; }
.live-dash__ring{
  position:absolute; right:0; top:-8px; width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:conic-gradient(var(--amber) 0%, rgba(28,27,25,.08) 0);
  transition:background 1s var(--ease);
}
.live-dash__ring::before{ content:''; position:absolute; inset:4px; border-radius:50%; background:#fdfbf8; }
.live-dash__ring span{ position:relative; z-index:1; font-size:.62rem; font-weight:800; color:var(--charcoal); }
.live-dash__kw{ font-family:var(--font-head); font-size:2.2rem; font-weight:700; line-height:1; }
.live-dash__unit{ font-size:1.05rem; color:var(--ink-muted); font-weight:600; font-family:var(--font-body); }
.live-dash__today{ font-size:.82rem; color:var(--ink-muted); margin-top:6px; }
.live-dash__loc{ font-size:.78rem; color:var(--ink-muted); margin-top:2px; display:flex; align-items:center; gap:4px; }
.live-dash__chart{ display:flex; align-items:flex-end; gap:3px; height:52px; margin-top:16px; }
.live-dash__bar{ flex:1; background:linear-gradient(180deg, var(--amber-light), var(--success)); border-radius:3px 3px 0 0; transition:height .7s var(--ease); min-height:4px; }
.live-dash__axis{ display:flex; justify-content:space-between; font-size:.64rem; color:var(--ink-muted); margin-top:6px; }

@keyframes pulse-dot{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

.hero-v2__scroll-cue{ position:absolute; left:50%; bottom:18px; transform:translateX(-50%); z-index:3; }
.hero-v2__scroll-cue span{
  display:block; width:26px; height:42px; border:2px solid rgba(255,255,255,.5); border-radius:14px; position:relative;
}
.hero-v2__scroll-cue span::before{
  content:''; position:absolute; top:6px; left:50%; width:4px; height:8px; background:#fff; border-radius:2px;
  transform:translateX(-50%); animation:scrollcue 1.8s infinite;
}
@keyframes scrollcue{ 0%{ opacity:1; top:6px; } 70%{ opacity:0; top:20px; } 100%{ opacity:0; top:6px; } }

@media (max-width:980px){
  .hero-v2{ height:auto; min-height:100vh; padding:130px 0 60px; }
  .live-dash{ display:none; }
  .hero-v2__scroll-cue{ display:none; }
}
@media (max-width:560px){
  .hero-v2{ padding:120px 0 50px; }
  .hero__actions{ flex-direction:column; align-items:stretch; }
  .hero__actions .btn{ width:100%; }
}



/* ==========================================================================
   Text marquee — infinite scrolling text strip (between hero and legacy)
   ========================================================================== */
.text-marquee{
  background:var(--charcoal); padding:20px 0; overflow:hidden; position:relative;
  border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06);
}
.text-marquee__track{
  display:flex; width:max-content; animation:marquee-scroll 26s linear infinite;
}
.text-marquee:hover .text-marquee__track{ animation-play-state:paused; }
.text-marquee__group{ display:flex; align-items:center; flex-shrink:0; }
.text-marquee__item{
  font-family:var(--font-head); font-size:1.05rem; font-weight:600; color:#EDE7DC;
  white-space:nowrap; padding:0 26px;
}
.text-marquee__dot{ color:var(--amber); font-size:.6rem; flex-shrink:0; }

@keyframes marquee-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media (prefers-reduced-motion:reduce){
  .text-marquee__track{ animation:none; overflow-x:auto; }
}
@media (max-width:640px){
  .text-marquee__item{ font-size:.9rem; padding:0 18px; }
}

/* ==========================================================================
   Trust / Legacy strip
   ========================================================================== */
.legacy{ padding:64px 0; background:var(--charcoal); color:#fff; position:relative; overflow:hidden; }
.legacy::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 20% 20%, rgba(193,122,46,.18), transparent 50%);
}
.legacy__grid{ display:grid; grid-template-columns:1.2fr 2fr; gap:48px; align-items:center; position:relative; }
.legacy h2{ color:#fff; }
.legacy p{ color:#C9C3B8; }
.legacy__stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.legacy__stat{
  text-align:center; padding:26px 14px; border-radius:18px;
  background:var(--warm-white);
  box-shadow:0 16px 34px rgba(0,0,0,.38);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.legacy__stat:hover{ transform:translateY(-4px); box-shadow:0 22px 44px rgba(0,0,0,.45); }
.legacy__stat .num{ font-family:var(--font-head); font-size:2.4rem; font-weight:700; color:var(--amber); }
.legacy__stat .label{ font-size:.8rem; color:var(--charcoal-soft); margin-top:4px; font-weight:600; }
@media (max-width:820px){ .legacy__grid{ grid-template-columns:1fr; } .legacy__stats{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   Cards — Services / Solar / Electrical grids
   ========================================================================== */
.grid{ display:grid; gap:26px; }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }
.grid--2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:980px){ .grid--3,.grid--4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .grid--3,.grid--4,.grid--2{ grid-template-columns:1fr; } }

.card{
  background:var(--paper); border-radius:var(--radius-lg); padding:32px 28px; border:1px solid var(--line);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position:relative; overflow:hidden;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); border-color:transparent; }
.card__icon{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg, var(--amber-dim), var(--warm-white)); color:var(--amber); margin-bottom:20px;
  box-shadow:var(--shadow-clay-out);
}
.card h3{ margin-bottom:10px; font-size:1.15rem; }
.card p{ font-size:.92rem; margin-bottom:0; }
.card__link{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-weight:700; font-size:.85rem; color:var(--amber); }
.card__link svg{ transition:transform .25s var(--ease); }
.card:hover .card__link svg{ transform:translateX(4px); }

.card--image{ padding:0; }
.card--image .card__media{ aspect-ratio:4/3; overflow:hidden; }
.card--image .card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.card--image:hover .card__media img{ transform:scale(1.08); }
.card--image .card__body{ padding:22px 24px 26px; }

/* ==========================================================================
   Savings Calculator
   ========================================================================== */
.calculator{
  border-radius:32px; padding:52px; position:relative; overflow:hidden;
  background:linear-gradient(155deg, #22344A, var(--charcoal));
  color:#fff;
}
.calculator__grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.calculator h2{ color:#fff; }
.calculator p{ color:#C9C3B8; }
.calc-input{ margin-bottom:22px; }
.calc-input label{ display:block; font-size:.85rem; margin-bottom:8px; color:#C9C3B8; font-weight:600; }
.calc-input input[type=range]{ width:100%; accent-color:var(--amber-light); }
.calc-input .value{ font-family:var(--font-head); font-size:1.4rem; font-weight:700; color:var(--amber-light); }
.calc-results{
  display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:8px;
}
.calc-result{
  padding:18px 20px; border-radius:18px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
}
.calc-result .label{ font-size:.75rem; color:#C9C3B8; text-transform:uppercase; letter-spacing:.06em; }
.calc-result .amount{ font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--amber-light); margin-top:4px; }
@media (max-width:860px){ .calculator{ padding:32px 22px; } .calculator__grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline{ position:relative; padding-top:20px; }
.timeline__track{
  position:absolute; left:50%; top:0; bottom:0; width:2px; background:var(--line); transform:translateX(-50%);
}
.timeline__track-fill{
  position:absolute; left:0; top:0; width:100%; height:0%; background:linear-gradient(var(--amber), var(--electric));
  transition:height 1.2s var(--ease);
}
.timeline__item{
  display:grid; grid-template-columns:1fr 60px 1fr; gap:0; align-items:center; margin-bottom:56px; position:relative;
}
.timeline__item:nth-child(odd) .timeline__card{ grid-column:1; text-align:right; }
.timeline__item:nth-child(even) .timeline__card{ grid-column:3; text-align:left; }
.timeline__dot{
  grid-column:2; width:18px; height:18px; border-radius:50%; background:var(--paper); border:3px solid var(--amber);
  margin:0 auto; position:relative; z-index:2; box-shadow:0 0 0 6px var(--warm-white);
}
.timeline__card{ padding:26px 30px; }
.timeline__year{ font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--amber); }
@media (max-width:760px){
  .timeline__track{ left:20px; }
  .timeline__item{ grid-template-columns:44px 1fr; }
  .timeline__dot{ grid-column:1; margin:0; }
  .timeline__item:nth-child(odd) .timeline__card, .timeline__item:nth-child(even) .timeline__card{ grid-column:2; text-align:left; }
}

/* ==========================================================================
   Wholesale strip
   ========================================================================== */
.wholesale-band{
  border-radius:32px; padding:56px; background:var(--warm-white-2); border:1px solid var(--line);
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
@media (max-width:860px){ .wholesale-band{ grid-template-columns:1fr; padding:32px 24px; } }
.wholesale-feats{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; }
.wholesale-feat{ display:flex; gap:10px; align-items:flex-start; font-size:.9rem; font-weight:600; }
.wholesale-feat svg{ flex-shrink:0; color:var(--success); margin-top:2px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-card{
  background:var(--paper); border-radius:var(--radius-lg); padding:28px; border:1px solid var(--line); height:100%;
}
.review-card__stars{ color:var(--amber); font-size:.95rem; margin-bottom:12px; letter-spacing:2px; }
.review-card__text{ font-size:.95rem; color:var(--charcoal-soft); margin-bottom:20px; }
.review-card__who{ display:flex; align-items:center; gap:12px; }
.review-card__avatar{
  width:44px; height:44px; border-radius:50%; background:var(--warm-white-2); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; color:var(--amber); flex-shrink:0; overflow:hidden;
}
.review-card__avatar img{ width:100%; height:100%; object-fit:cover; }
.review-card__name{ font-weight:700; font-size:.9rem; }
.review-card__loc{ font-size:.78rem; color:var(--ink-muted); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta{
  border-radius:32px; padding:70px 40px; text-align:center; position:relative; overflow:hidden;
  background:linear-gradient(150deg, var(--amber), #A5601F);
  color:#fff;
}
.final-cta::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 55%); }
.final-cta h2{ color:#fff; position:relative; }
.final-cta p{ color:rgba(255,255,255,.9); max-width:560px; margin:0 auto 28px; position:relative; }
.final-cta__actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }

.pre-footer-cta{ padding:0 24px; margin-top:20px; }
.pre-footer-cta__inner{
  max-width:1192px; margin:0 auto; border-radius:28px; padding:36px 44px;
  background:linear-gradient(120deg, var(--electric), #16283F);
  color:#fff; display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
}
.pre-footer-cta h3{ color:#fff; margin-bottom:4px; }
.pre-footer-cta p{ color:#B9C4D2; margin:0; }
.pre-footer-cta__actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--charcoal); color:#C9C3B8; padding:0 0 0; margin-top:70px; }
.site-footer p{ color:#C9C3B8; }

/* ---- Newsletter panel ---- */
.footer__newsletter{ background:#252220; border-bottom:1px solid rgba(255,255,255,.08); padding:36px 0; }
.footer__newsletter-inner{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.footer__newsletter-inner h3{ color:#fff; font-size:1.25rem; margin-bottom:4px; }
.footer__newsletter-inner p{ color:#B9B2A4; margin:0; font-size:.9rem; }
.footer__newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; }
.footer__newsletter-form input[type=email]{
  padding:13px 18px; border-radius:100px; border:1.5px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06); color:#fff; font-size:.9rem; min-width:260px;
}
.footer__newsletter-form input[type=email]::placeholder{ color:#8A8378; }
.footer__newsletter-form input[type=email]:focus{ outline:none; border-color:var(--amber); background:rgba(255,255,255,.1); }
.footer__newsletter-msg{ margin:14px 0 0; font-size:.85rem; font-weight:600; }
.footer__newsletter-msg--ok{ color:#6FDB9A; }
.footer__newsletter-msg--err{ color:#F2917A; }
@media (max-width:760px){
  .footer__newsletter-inner{ flex-direction:column; align-items:flex-start; }
  .footer__newsletter-form{ width:100%; }
  .footer__newsletter-form input[type=email]{ flex:1; min-width:0; }
}

.footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding:56px 24px 50px; }
.footer__col h4{ color:#fff; font-family:var(--font-body); font-size:.95rem; margin-bottom:18px; }
.footer__col ul{ display:flex; flex-direction:column; gap:10px; }
.footer__col a{ font-size:.88rem; color:#C9C3B8; transition:color .2s; }
.footer__col a:hover{ color:var(--amber-light); }
.footer__contact li{ display:flex; gap:8px; font-size:.88rem; align-items:flex-start; color:#C9C3B8; }
.footer__tagline{ color:#B9B2A4; font-size:.88rem; max-width:280px; }
.footer__social{ display:flex; gap:10px; margin-top:16px; }
.footer__social a{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700; color:#fff; transition:background .2s;
}
.footer__social a:hover{ background:var(--amber); }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.1); padding:20px 0; }
.footer__bottom-inner{ display:flex; justify-content:space-between; font-size:.8rem; flex-wrap:wrap; gap:8px; }
.footer__bottom-inner p{ color:#948C7D; margin:0; }
@media (max-width:860px){ .footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__grid{ grid-template-columns:1fr; } }

/* ---- Footer logo: light plate so the dark logo wordmark stays legible ---- */
.brand__logo-plate{
  display:inline-flex; align-items:center; background:#FBF8F3; border-radius:12px; padding:8px 16px;
}
.brand--footer{ margin-bottom:16px; }
.brand--footer .brand__logo{ height:44px; }
.brand--footer .brand__name{ color:#fff; margin-left:10px; }

/* ==========================================================================
   Floating WhatsApp + Mobile CTA bar
   ========================================================================== */
.float-whatsapp{
  position:fixed; bottom:94px; left:20px; z-index:150;
  width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(37,211,102,.4);
  transition:transform .25s var(--ease);
}
.float-whatsapp:hover{ transform:scale(1.08); }
@media (min-width:769px){ .float-whatsapp{ bottom:28px; } }

.mobile-cta-bar{
  position:fixed; bottom:0; left:0; right:0; z-index:150; display:none;
  background:rgba(250,247,242,.95); backdrop-filter:blur(14px);
  border-top:1px solid var(--line); padding:10px 14px; gap:10px;
  box-shadow:0 -8px 24px rgba(0,0,0,.08);
}
@media (max-width:768px){ .mobile-cta-bar{ display:flex; } body{ padding-bottom:70px; } }
.mobile-cta-bar__btn{
  flex:1; display:flex; align-items:center; justify-content:center; gap:6px;
  padding:11px 8px; border-radius:12px; font-weight:700; font-size:.8rem;
  background:var(--paper); color:var(--charcoal); box-shadow:var(--shadow-soft);
}
.mobile-cta-bar__btn--whatsapp{ background:#25D366; color:#fff; }
.mobile-cta-bar__btn--primary{ background:var(--amber); color:#fff; }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:400;
  background:var(--charcoal); color:#EDE7DC;
  padding:18px 24px; display:none; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap;
  box-shadow:0 -8px 30px rgba(0,0,0,.25);
}
.cookie-banner.is-visible{ display:flex; }
.cookie-banner p{ margin:0; font-size:.85rem; color:#C9C3B8; max-width:640px; }
.cookie-banner__actions{ display:flex; gap:10px; flex-shrink:0; }
@media (max-width:640px){
  .cookie-banner{ flex-direction:column; text-align:center; padding:16px 20px; gap:14px; }
  .cookie-banner__actions{ width:100%; }
  .cookie-banner__actions .btn{ flex:1; }
}

/* ==========================================================================
   Live chat widget
   ========================================================================== */
.chat-widget{ position:fixed; right:20px; bottom:94px; z-index:250; }
@media (min-width:769px){ .chat-widget{ bottom:28px; } }

.chat-widget__bubble{
  width:60px; height:60px; border-radius:50%; border:none; cursor:pointer;
  background:linear-gradient(150deg, var(--amber-light), var(--amber)); color:#fff;
  display:flex; align-items:center; justify-content:center; position:relative;
  box-shadow:0 10px 26px rgba(193,122,46,.4); transition:transform .25s var(--ease);
}
.chat-widget__bubble:hover{ transform:scale(1.06); }
.chat-widget__bubble svg{ width:26px; height:26px; }
.chat-widget__bubble .chat-widget__badge{
  position:absolute; top:-4px; right:-4px; min-width:20px; height:20px; padding:0 5px; border-radius:10px;
  background:#E0483B; color:#fff; font-size:.68rem; font-weight:800; display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 2px var(--warm-white);
}
.chat-widget__bubble .chat-widget__badge.is-hidden{ display:none; }
.chat-widget__bubble .icon-close{ display:none; }
.chat-widget.is-open .chat-widget__bubble .icon-chat{ display:none; }
.chat-widget.is-open .chat-widget__bubble .icon-close{ display:block; }

.chat-widget__panel{
  position:absolute; bottom:76px; right:0; width:340px; max-width:calc(100vw - 40px);
  height:460px; max-height:70vh; background:var(--paper); border-radius:22px; overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.25); display:flex; flex-direction:column;
  opacity:0; transform:translateY(16px) scale(.97); pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.chat-widget.is-open .chat-widget__panel{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }

.chat-widget__header{
  background:linear-gradient(150deg, var(--charcoal), #2B2823); color:#fff;
  padding:16px 18px; display:flex; align-items:center; gap:12px; flex-shrink:0;
}
.chat-widget__header-avatar{
  width:38px; height:38px; border-radius:50%; background:var(--amber); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--font-head); flex-shrink:0;
}
.chat-widget__header-info{ flex:1; min-width:0; }
.chat-widget__header-info strong{ display:block; font-size:.92rem; }
.chat-widget__header-info span{ font-size:.74rem; color:#B9B2A4; display:flex; align-items:center; gap:5px; }
.chat-widget__header-info span::before{ content:''; width:7px; height:7px; border-radius:50%; background:#5FD98A; display:inline-block; }

.chat-widget__body{ flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px; background:var(--warm-white); }
.chat-widget__msg{ max-width:82%; padding:10px 14px; border-radius:16px; font-size:.85rem; line-height:1.45; word-wrap:break-word; }
.chat-widget__msg--visitor{ align-self:flex-end; background:var(--amber); color:#fff; border-bottom-right-radius:4px; }
.chat-widget__msg--admin{ align-self:flex-start; background:#fff; color:var(--charcoal); border:1px solid var(--line); border-bottom-left-radius:4px; }
.chat-widget__msg-time{ font-size:.65rem; opacity:.7; margin-top:4px; display:block; }
.chat-widget__empty{ margin:auto; text-align:center; color:var(--ink-muted); font-size:.85rem; padding:20px; }

.chat-widget__form{ display:flex; gap:8px; padding:12px; border-top:1px solid var(--line); background:#fff; flex-shrink:0; }
.chat-widget__input{
  flex:1; border:1.5px solid var(--line); border-radius:14px; padding:10px 14px; font-size:.85rem; resize:none;
  font-family:var(--font-body); max-height:80px; background:var(--warm-white);
}
.chat-widget__input:focus{ outline:none; border-color:var(--amber); }
.chat-widget__send{
  width:40px; height:40px; border-radius:12px; border:none; background:var(--amber); color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s;
}
.chat-widget__send:hover{ background:#A5601F; }
.chat-widget__send:disabled{ opacity:.5; cursor:not-allowed; }

/* ---- Inline contact-capture form (shown after the first auto-reply) ---- */
.chat-widget__contact-form{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:14px; margin-top:2px;
  align-self:stretch; display:flex; flex-direction:column; gap:8px;
}
.chat-widget__contact-title{ font-size:.78rem; font-weight:700; color:var(--charcoal); }
.chat-widget__contact-input{
  border:1.5px solid var(--line); border-radius:10px; padding:9px 12px; font-size:.83rem;
  font-family:var(--font-body); background:var(--warm-white);
}
.chat-widget__contact-input:focus{ outline:none; border-color:var(--amber); }
.chat-widget__contact-actions{ display:flex; gap:8px; justify-content:flex-end; margin-top:2px; }
.chat-widget__contact-skip{ background:none; border:none; color:var(--ink-muted); font-size:.8rem; font-weight:600; cursor:pointer; padding:8px 10px; }
.chat-widget__contact-submit{
  background:var(--amber); color:#fff; border:none; border-radius:10px; padding:8px 16px; font-size:.8rem;
  font-weight:700; cursor:pointer; transition:background .2s;
}
.chat-widget__contact-submit:hover{ background:#A5601F; }

/* ---- Returning-visitor teaser popup ---- */
.chat-teaser{
  position:absolute; bottom:76px; right:0; width:280px; background:#fff; border-radius:18px;
  padding:18px 18px 16px; box-shadow:0 18px 48px rgba(0,0,0,.22); border:1px solid var(--line);
  animation:chat-teaser-in .35s var(--ease);
}
@keyframes chat-teaser-in{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }
.chat-teaser__close{
  position:absolute; top:10px; right:12px; background:none; border:none; font-size:1.3rem; line-height:1;
  color:var(--ink-muted); cursor:pointer; padding:2px 6px;
}
.chat-teaser__title{ font-family:var(--font-head); font-size:1rem; font-weight:600; margin-bottom:4px; padding-right:20px; }
.chat-teaser p{ font-size:.82rem; color:var(--ink-muted); margin:0 0 12px; }
.chat-teaser__btn{ width:100%; justify-content:center; }
@media (max-width:480px){
  .chat-teaser{ width:calc(100vw - 24px); right:-4px; }
}

@media (max-width:480px){
  .chat-widget{ right:12px; }
  .chat-widget__panel{ width:calc(100vw - 24px); right:-4px; }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card{
  background:var(--paper); border-radius:var(--radius-lg); padding:40px; border:1px solid var(--line); box-shadow:var(--shadow-soft);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:8px; color:var(--charcoal); }
.field label .req{ color:var(--danger); }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:12px; border:1.5px solid var(--line); background:var(--warm-white);
  font-size:.95rem; color:var(--charcoal); transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--amber); box-shadow:0 0 0 4px var(--amber-dim);
}
.field textarea{ resize:vertical; min-height:110px; }
.field-file{
  border:1.5px dashed var(--line); border-radius:12px; padding:24px; text-align:center; background:var(--warm-white); cursor:pointer;
}
.field-hint{ font-size:.78rem; color:var(--ink-muted); margin-top:6px; }
.field-error{ font-size:.8rem; color:var(--danger); margin-top:6px; }
.honeypot{ position:absolute; left:-9999px; opacity:0; height:0; }

.alert{ padding:16px 20px; border-radius:14px; margin-bottom:24px; font-size:.92rem; font-weight:600; }
.alert--success{ background:#E4F3E9; color:var(--success); border:1px solid #BFE3CC; }
.alert--error{ background:#FBEAE6; color:var(--danger); border:1px solid #F1C7BC; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero{
  padding:56px 0 64px; background:var(--charcoal) center/cover no-repeat; color:#fff; position:relative; overflow:hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(8,7,6,.92) 0%, rgba(8,7,6,.80) 35%, rgba(8,7,6,.45) 65%, rgba(8,7,6,.20) 100%);
}
.page-hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,7,6,.25) 0%, transparent 30%, transparent 60%, rgba(8,7,6,.55) 100%);
}
.page-hero__inner{ position:relative; z-index:1; }
.page-hero h1{ color:#fff; margin-bottom:12px; text-shadow:0 2px 12px rgba(0,0,0,.35); }
.page-hero p{ color:#EDE7DC; max-width:600px; text-shadow:0 1px 8px rgba(0,0,0,.3); }
.breadcrumb{ font-size:.82rem; color:#C9C3B8; margin-bottom:16px; position:relative; z-index:1; }
.breadcrumb a{ color:#C9C3B8; }
.breadcrumb a:hover{ color:var(--amber-light); }

/* ==========================================================================
   Utility badges, tables, tags
   ========================================================================== */
.tag{ display:inline-block; padding:5px 14px; border-radius:100px; background:var(--warm-white-2); font-size:.75rem; font-weight:700; color:var(--charcoal-soft); }
.badge-featured{ position:absolute; top:16px; left:16px; background:var(--amber); color:#fff; padding:5px 14px; border-radius:100px; font-size:.72rem; font-weight:700; z-index:2; }

/* ==========================================================================
   Animations — reveal / stagger / counter / parallax
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

.reveal-left{ opacity:0; transform:translateX(-32px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.is-visible{ opacity:1; transform:translateX(0); }

.reveal-right{ opacity:0; transform:translateX(32px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.is-visible{ opacity:1; transform:translateX(0); }

.stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.stagger.is-visible > *:nth-child(1){ transition-delay:.05s; }
.stagger.is-visible > *:nth-child(2){ transition-delay:.12s; }
.stagger.is-visible > *:nth-child(3){ transition-delay:.19s; }
.stagger.is-visible > *:nth-child(4){ transition-delay:.26s; }
.stagger.is-visible > *:nth-child(5){ transition-delay:.33s; }
.stagger.is-visible > *:nth-child(6){ transition-delay:.40s; }
.stagger.is-visible > *:nth-child(7){ transition-delay:.47s; }
.stagger.is-visible > *:nth-child(8){ transition-delay:.54s; }

.text-reveal{ overflow:hidden; display:inline-block; }
.text-reveal span{ display:inline-block; transform:translateY(110%); opacity:0; transition:transform .8s var(--ease), opacity .8s var(--ease); }
.text-reveal.is-visible span{ transform:translateY(0); opacity:1; }

[data-parallax]{ will-change:transform; }

@media (prefers-reduced-motion:reduce){
  .reveal,.reveal-left,.reveal-right,.stagger > *,.text-reveal span{ opacity:1; transform:none; transition:none; }
}

/* Scroll progress bar for header */
.site-header.is-scrolled{ box-shadow:0 4px 24px rgba(0,0,0,.06); }

/* ==========================================================================
   Misc
   ========================================================================== */
.icon-check{ color:var(--success); }
.divider{ height:1px; background:var(--line); margin:40px 0; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; gap:32px; } }

.brand-logo-card{
  display:flex; align-items:center; justify-content:center; padding:24px; border-radius:18px;
  background:var(--paper); border:1px solid var(--line); height:100px; filter:grayscale(40%); opacity:.8;
  transition:all .3s var(--ease);
}
.brand-logo-card:hover{ filter:none; opacity:1; transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.brand-logo-card img{ max-height:52px; width:auto; margin:0 auto; }

.step-card{ display:flex; gap:18px; }
.step-card .step-num{
  width:44px; height:44px; border-radius:50%; background:var(--charcoal); color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; flex-shrink:0;
}
.step-card h4{ margin-bottom:6px; font-size:1.05rem; }
.step-card p{ font-size:.9rem; }

/* ==========================================================================
   Why Choose Us — animated card grid
   ========================================================================== */
.why-choose-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
@media (max-width:900px){
  .why-choose-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:600px){
  .why-choose-grid{ grid-template-columns:1fr; }
}
.why-choose-card{
  background:var(--paper); border-radius:20px; padding:30px 26px; border:1px solid var(--line);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position:relative; overflow:hidden;
}
.why-choose-card::before{
  content:''; position:absolute; inset:0; border-radius:20px; padding:1px;
  background:linear-gradient(140deg, var(--amber-light), transparent 40%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .35s var(--ease);
}
.why-choose-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lift); border-color:transparent; }
.why-choose-card:hover::before{ opacity:1; }
.why-choose-card__num{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg, var(--amber-dim), var(--warm-white)); color:var(--amber);
  font-family:var(--font-head); font-weight:700; font-size:1.15rem; margin-bottom:18px;
  box-shadow:var(--shadow-clay-out); transition:transform .35s var(--ease);
}
.why-choose-card:hover .why-choose-card__num{ transform:scale(1.08) rotate(-4deg); }
.why-choose-card h3{ font-size:1.05rem; margin-bottom:8px; }
.why-choose-card p{ font-size:.9rem; margin:0; }

/* ==========================================================================
   Audience CTAs — "Get Started" targeted buttons
   ========================================================================== */
.audience-cta-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:20px;
}
.audience-cta-card{
  display:flex; flex-direction:column; gap:14px; padding:26px 24px; border-radius:20px;
  background:var(--paper); border:1px solid var(--line);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.audience-cta-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lift); border-color:transparent; }
.audience-cta-card__label{
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-muted);
}
.audience-cta-card__btn{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  font-family:var(--font-head); font-size:1.05rem; font-weight:600; color:var(--charcoal);
}
.audience-cta-card__btn svg{ color:var(--amber); flex-shrink:0; transition:transform .25s var(--ease); }
.audience-cta-card:hover .audience-cta-card__btn svg{ transform:translateX(4px); }

.subsidy-table{ width:100%; border-collapse:collapse; background:var(--paper); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-soft); }
.subsidy-table th, .subsidy-table td{ padding:16px 20px; text-align:left; border-bottom:1px solid var(--line); }
.subsidy-table th{ background:var(--charcoal); color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:.04em; }
.subsidy-table tr:last-child td{ border-bottom:none; }
.subsidy-table td.amount{ font-weight:700; color:var(--amber); }

.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.filter-btn{ padding:9px 20px; border-radius:100px; background:var(--paper); border:1px solid var(--line); font-weight:700; font-size:.85rem; transition:all .2s; }
.filter-btn.is-active, .filter-btn:hover{ background:var(--charcoal); color:#fff; border-color:var(--charcoal); }

/* ==========================================================================
   Mobile refinement pass — tighter, more professional density on phones
   ========================================================================== */
@media (max-width:640px){
  html{ font-size:13.5px; }

  .section{ padding:52px 0; }
  .section--tight{ padding:36px 0; }
  .section-head{ margin-bottom:34px; }

  .card{ padding:22px 20px; }
  .card--image .card__body{ padding:18px 20px 22px; }
  .card__icon{ width:46px; height:46px; margin-bottom:14px; }

  .eyebrow{ font-size:.7rem; margin-bottom:10px; }
  .eyebrow::before{ width:16px; }

  .page-hero{ padding:44px 0 48px; }
  .page-hero h1{ margin-bottom:8px; }

  .btn{ padding:13px 24px; font-size:.87rem; }
  .btn--sm{ padding:10px 18px; font-size:.78rem; }

  .legacy{ padding:44px 0; }
  .legacy__stat{ padding:18px 10px; }
  .legacy__stat .num{ font-size:1.9rem; }

  .timeline__card{ padding:18px 20px; }
  .timeline__year{ font-size:1.2rem; }

  .calculator{ padding:26px 18px; border-radius:22px; }
  .final-cta{ padding:44px 24px; border-radius:22px; }
  .wholesale-band{ padding:26px 20px; border-radius:22px; }
  .form-card{ padding:26px 20px; }

  .pre-footer-cta__inner{ padding:26px 24px; border-radius:20px; }
  .footer__newsletter{ padding:26px 0; }
  .footer__grid{ padding:40px 24px 36px; gap:30px; }
}
@media (max-width:400px){
  html{ font-size:13px; }
}
