/* ================================================================
   GOVI AI — ULTRA MODERN DESIGN SYSTEM 2025
   ================================================================ */


/* ---- Custom Properties ---- */
:root {
  --g950: #040c06;
  --g900: #081410;
  --g800: #111f16;
  --g700: #1e4028;
  --g600: #2a5a35;
  --g500: #3a7848;
  --g400: #4d9c60;
  --g100: #d6edd9;
  --g50:  #eef7ef;

  --gold:      #c8912a;
  --gold-dark: #a87520;
  --gold-pale: #f5e3b4;

  --white:   #ffffff;
  --off:     #f7faf8;
  --line:    #e0e8e1;
  --muted:   #6b7b6d;
  --ink:     #0c170e;

  --max:  1260px;
  --gap:  2rem;
  --r:    12px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  --ease:   cubic-bezier(.25,.46,.45,.94);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --dur:    .28s;

  --sh-xs: 0 1px 6px rgba(4,12,6,.06);
  --sh-sm: 0 4px 18px rgba(4,12,6,.09);
  --sh:    0 10px 40px rgba(4,12,6,.13);
  --sh-lg: 0 24px 72px rgba(4,12,6,.18);
  --sh-xl: 0 40px 100px rgba(4,12,6,.24);

  --glow-green: 0 0 40px rgba(58,120,72,.35), 0 0 80px rgba(58,120,72,.15);
  --glow-gold:  0 0 40px rgba(200,145,42,.35), 0 0 80px rgba(200,145,42,.15);
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--g950);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
h1,h2,h3,h4,h5 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Container ---- */
.container {
  width: min(100% - var(--gap), var(--max));
  margin-inline: auto;
}

/* ---- Skip ---- */
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: var(--ink); color: #fff; padding: .7rem 1.2rem;
  border-radius: var(--r); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ================================================================
   ANIMATION SYSTEM
   ================================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-60px) translateY(0); }
[data-reveal="right"] { transform: translateX(60px) translateY(0); }
[data-reveal="scale"] { transform: scale(.86); }
[data-reveal="none"]  { transform: none; }
[data-reveal].visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }
[data-delay="6"] { transition-delay: .48s; }
[data-delay="7"] { transition-delay: .56s; }
[data-delay="8"] { transition-delay: .64s; }

/* Gradient text */
.grad-text {
  background: linear-gradient(135deg, #ffffff 0%, #f5e3b4 50%, #c8912a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text--green {
  background: linear-gradient(135deg, #2a5a35, #4d9c60);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Noise overlay */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Glow pulse */
@keyframes glow-pulse {
  0%,100% { box-shadow: var(--glow-gold); }
  50%      { box-shadow: 0 0 60px rgba(200,145,42,.5), 0 0 120px rgba(200,145,42,.25); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes blob-shift {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33%     { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  66%     { border-radius: 50% 60% 30% 70% / 40% 30% 60% 70%; }
}
@keyframes sdot {
  0%   { top: 6px;  opacity: 1; }
  100% { top: 22px; opacity: 0; }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scale-in {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes bar-fill {
  from { width: 0; }
}
@keyframes ping {
  0%   { transform: scale(1); opacity: .85; }
  75%,100% { transform: scale(2.2); opacity: 0; }
}

/* ================================================================
   HEADER — Premium Navbar
   ================================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 600;
  padding: 1rem 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 35px rgba(13, 23, 17, .08);
  transition:
    background  .35s var(--ease),
    padding     .35s var(--ease),
    box-shadow  .35s var(--ease),
    border-color .35s var(--ease);
}

/* Scrolled — keep the same light header for consistency */
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  padding: .75rem 0;
  box-shadow:
    0 1px 0 rgba(0,0,0,.06),
    0 10px 28px rgba(13, 23, 17, .08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Gold top accent line when scrolled */
.site-header.scrolled::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--g600) 20%,
    var(--gold) 50%,
    var(--g600) 80%,
    transparent 100%);
  opacity: .7;
}

/* Nav wrap */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ---- BRAND / LOGO ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -.01em;
  transition: color .35s var(--ease), opacity .35s var(--ease);
}
.brand:hover { opacity: .88; }
.site-header.scrolled .brand { color: var(--ink); }

.brand-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  transition: transform .4s var(--spring);
}

body,
.site-header,
main,
section,
footer {
  max-width: 100%;
}

.brand-logo-css {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  height: 44px;
  padding: .3rem .52rem .3rem .34rem;
  border-radius: 8px;
  background: #28b84a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  transition: height .35s var(--ease), transform .35s var(--spring), box-shadow .35s var(--ease);
}
.brand-leaf {
  position: relative;
  width: 20px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 80% 0 80% 80%;
  background: #fff;
  transform: rotate(-18deg);
}
.brand-leaf::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 2px;
  border-radius: 2px;
  background: #28b84a;
  transform: translateX(-50%) rotate(12deg);
}
.brand:hover .brand-logo-css { transform: scale(1.03); }
.site-header.scrolled .brand-logo-css {
  height: 40px;
  font-size: 1.24rem;
  box-shadow: 0 4px 12px rgba(4,12,6,.08);
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
  transition: height .35s var(--ease), transform .35s var(--spring), filter .35s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.03); }
.site-header.scrolled .brand-logo {
  height: 40px;
  filter: drop-shadow(0 4px 12px rgba(4,12,6,.08));
}
.footer-brand .brand-logo {
  height: 48px;
  filter: none;
}
@media (max-width: 640px) {
  .brand-logo-css { height: 38px; font-size: 1.15rem; }
  .site-header.scrolled .brand-logo-css { height: 36px; }
  .brand-leaf { width: 17px; height: 24px; }
  .brand-logo { height: 38px; }
  .site-header.scrolled .brand-logo { height: 36px; }
  .footer-brand .brand-logo { height: 42px; }
}
.brand:hover .brand-icon { transform: rotate(-8deg) scale(1.08); }
.brand em { font-style: normal; color: var(--gold); }

/* Brand text underline dot */
.brand-text { position: relative; }

/* ---- NAV LINKS ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .45rem .64rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
  border-radius: var(--r);
  transition: color .3s var(--ease);
  white-space: nowrap;
}

/* Animated underline */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .88rem; right: .88rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--spring);
}
.nav-menu a:hover { color: var(--g700); }
.nav-menu a:hover::after { transform: scaleX(1); }

/* Active page */
.nav-menu a[aria-current="page"] {
  color: var(--g700);
}
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* Scrolled state */
.site-header.scrolled .nav-menu a {
  color: var(--muted);
}
.site-header.scrolled .nav-menu a::after {
  background: var(--g600);
}
.site-header.scrolled .nav-menu a:hover {
  color: var(--g700);
}
.site-header.scrolled .nav-menu a[aria-current="page"] {
  color: var(--g700);
  font-weight: 700;
}

/* ---- NAV ACTIONS ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.site-header .btn {
  min-height: 44px;
  padding: .68rem 1.25rem;
  font-size: .84rem;
}

/* ================================================================
   LANGUAGE / TRANSLATE BUTTON
   ================================================================ */

/* Hide the raw Google Translate widget — we control the UI */
.translate-box { display: none !important; }

/* Mobile translate row hidden on desktop */
#mobile-translate-row { display: none; }

.translate-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 46px;
  min-width: 128px;
  padding: .62rem 1rem;
  border-radius: var(--r);
  border: 1.5px solid rgba(42,90,53,.22);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--g50) 100%);
  color: var(--g700);
  box-shadow: 0 8px 24px rgba(4,12,6,.08), inset 0 1px 0 rgba(255,255,255,.8);
  cursor: pointer;
  isolation: isolate;
  transition: background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), transform .25s var(--spring);
}
.translate-wrap:hover {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, #ffffff, var(--g50));
  box-shadow: 0 16px 34px rgba(4,12,6,.12), inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateY(-2px);
}
.translate-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,145,42,.16), 0 14px 30px rgba(4,12,6,.12);
}
.site-header.scrolled .translate-wrap {
  border-color: rgba(42,90,53,.22);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--g50) 100%);
  color: var(--g700);
  box-shadow: var(--sh-xs);
}
.translate-wrap .translate-box {
  display: block !important;
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 3;
}
.translate-wrap .goog-te-gadget {
  display: block;
  position: absolute;
  inset: 0;
  overflow: visible;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1;
  z-index: 3;
}
.translate-wrap .goog-te-combo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: transparent;
  color: transparent !important;
  font: 700 .8rem "Space Grotesk", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  opacity: 0;
}
.translate-wrap .goog-te-combo option {
  background: #ffffff !important;
  color: #0c170e !important;
  font: 600 .92rem "Space Grotesk", sans-serif;
}
.translate-wrap .goog-te-combo:focus {
  outline: 0;
}
.translate-globe,
.translate-arrow {
  flex-shrink: 0;
  color: currentColor;
  position: relative;
  z-index: 1;
}
.translate-globe {
  width: 18px;
  height: 18px;
}
.translate-arrow {
  color: var(--gold);
}
.translate-label {
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Wrapper for positioning the dropdown */
.lang-wrap { position: relative; }

/* ---- Pill button ---- */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .42rem .82rem .42rem .65rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background .28s var(--ease),
    border-color .28s var(--ease),
    color .28s var(--ease),
    transform .25s var(--spring),
    box-shadow .28s var(--ease);
}
.lang-btn:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.17);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.lang-btn:active { transform: translateY(0) scale(.97); }

.site-header.scrolled .lang-btn {
  border-color: var(--line);
  background: var(--white);
  color: var(--g700);
  box-shadow: var(--sh-xs);
}
.site-header.scrolled .lang-btn:hover {
  border-color: var(--g500);
  background: var(--g50);
  box-shadow: var(--sh-sm);
}

/* Globe icon */
.lang-globe {
  flex-shrink: 0;
  color: rgba(255,255,255,.78);
  transition: transform .45s var(--spring), color .28s;
}
.lang-btn:hover .lang-globe { transform: rotate(-20deg) scale(1.12); }
.site-header.scrolled .lang-globe { color: var(--g500); }

/* Chevron */
.lang-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,.48);
  transition: transform .32s var(--spring), color .28s;
}
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-btn:hover .lang-chevron { color: rgba(255,255,255,.9); }
.site-header.scrolled .lang-chevron { color: var(--muted); }
.site-header.scrolled .lang-btn:hover .lang-chevron { color: var(--g600); }

/* ---- Dropdown panel ---- */
.lang-dropdown {
  position: absolute;
  top: calc(100% + .7rem);
  right: 0;
  width: 215px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-xl);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.96);
  transform-origin: top right;
  transition:
    opacity .24s var(--ease),
    visibility .24s,
    transform .28s var(--spring);
  z-index: 800;
}
.lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Dropdown header */
.lang-dropdown-head {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .65rem .55rem;
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  margin-bottom: .4rem;
}
.lang-dropdown-head svg { color: var(--g600); flex-shrink: 0; }

/* Language list grid */
.lang-list { display: grid; gap: 2px; }

/* Single language option */
.lang-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  padding: .5rem .75rem;
  border-radius: var(--r);
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: .855rem;
  font-weight: 500;
  color: var(--ink);
  transition:
    background .18s var(--ease),
    color .18s var(--ease),
    padding-left .2s var(--ease);
}
.lang-option:hover {
  background: var(--g50);
  color: var(--g700);
  padding-left: 1.1rem;
}
.lang-option.is-active {
  background: var(--g100);
  color: var(--g700);
  font-weight: 700;
}
.lang-option.is-active .lang-check { display: block; }
.lang-check {
  display: none;
  margin-left: auto;
  color: var(--g600);
  flex-shrink: 0;
}
.lang-flag { font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.lang-name  { flex: 1; line-height: 1.3; }

/* Hide Google's global UI chrome */
#goog-gt-tt, .goog-te-balloon-frame, .goog-te-menu-frame { display: none !important; }
body > .skiptranslate,
.skiptranslate > iframe { display: none !important; }
body { top: 0 !important; }

/* ---- HAMBURGER ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-xs);
  cursor: pointer;
  padding: 0;
  transition: background .3s, border-color .3s, transform .3s var(--spring);
}
.menu-toggle:hover {
  background: var(--g50);
  border-color: var(--g400);
  transform: scale(1.04);
}
.menu-toggle span {
  display: block;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--spring), opacity .25s, width .25s;
}
.menu-toggle span:nth-child(1) { width: 20px; height: 2px; }
.menu-toggle span:nth-child(2) { width: 14px; height: 2px; }
.menu-toggle span:nth-child(3) { width: 20px; height: 2px; }
.menu-toggle:hover span:nth-child(2) { width: 20px; }

.site-header.scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--sh-xs);
}
.site-header.scrolled .menu-toggle span { background: var(--ink); }

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .78rem 1.6rem;
  border-radius: var(--r);
  font-family: "Space Grotesk", sans-serif;
  font-size: .93rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    background   var(--dur) var(--ease),
    color        var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform    var(--dur) var(--spring),
    box-shadow   var(--dur) var(--ease);
}
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(.97); }

/* Ripple */
.btn::after {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: width .5s ease, height .5s ease, opacity .5s ease;
  opacity: 0;
}
.btn:active::after { width: 300px; height: 300px; opacity: 0; transition-duration: 0s; }

.btn-primary {
  background: var(--g600);
  color: var(--white);
  border-color: var(--g600);
  box-shadow: 0 8px 28px rgba(42,90,53,.28), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover {
  background: var(--g700);
  border-color: var(--g700);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(42,90,53,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(200,145,42,.32), inset 0 1px 0 rgba(255,255,255,.2);
  animation: glow-pulse 3s ease infinite;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.btn-outline-white {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline-dark:hover {
  background: var(--g50);
  border-color: var(--g600);
  color: var(--g600);
}

/* ================================================================
   LABELS
   ================================================================ */
.label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .9rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g500);
}
.label::before {
  content: '';
  display: none;
  width: 30px; height: 2px;
  background: currentColor;
  flex-shrink: 0; border-radius: 2px;
}
.label--light  { color: var(--gold-pale); }
.label--gold   { color: var(--gold); }
.label--center {
  justify-content: center;
  display: flex;
}
.label--center::before,
.label--center::after {
  content: ''; width: 24px; height: 2px;
  background: currentColor; flex-shrink: 0; border-radius: 2px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--g950);
  color: #fff;
  overflow: hidden;
}

/* Background image + overlay */
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg img { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      rgba(4,12,6,.96) 0%,
      rgba(8,20,16,.84) 38%,
      rgba(8,20,16,.62) 68%,
      rgba(8,20,16,.40) 100%),
    linear-gradient(0deg, rgba(4,12,6,.80) 0%, transparent 55%);
}

/* Animated gradient blobs */
.hero__blob1, .hero__blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blob-shift 12s ease-in-out infinite alternate;
}
.hero__blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,120,72,.28), transparent 65%);
  top: 10%; left: 5%;
}
.hero__blob2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,145,42,.20), transparent 65%);
  bottom: 15%; right: 10%;
  animation-delay: -4s;
}

/* Dot grid pattern */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px 0 100px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
  padding: .4rem 1rem .4rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.hero__eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
  animation: ping 1.8s ease infinite;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6.2vw, 5.8rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.6rem;
  max-width: 900px;
}
@keyframes lineSlideIn {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes revealFadeUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: none; }
}
@keyframes revealFadeNone {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero above-fold reveals: CSS animation, no JS needed */
.hero [data-reveal]        { animation: revealFadeUp  0.85s cubic-bezier(.25,.46,.45,.94) both; }
.hero [data-reveal="none"] { animation: revealFadeNone 0.85s cubic-bezier(.25,.46,.45,.94) both; }
.hero [data-delay="2"]     { animation-delay: 0.16s; }
.hero [data-delay="3"]     { animation-delay: 0.24s; }
.hero [data-delay="4"]     { animation-delay: 0.32s; }
.hero h1 .line { display: block; overflow: hidden; padding: 0.12em 0; margin: -0.12em 0; }
.hero h1 .line-inner {
  display: block;
  animation: lineSlideIn 0.85s cubic-bezier(.34,1.56,.64,1) both;
}
.hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.13s; }
.hero.revealed h1 .line-inner { transform: translateY(0); }

.hero__sub {
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 2.6rem;
  line-height: 1.8;
  font-weight: 400;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Floating stat chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: transform var(--dur) var(--spring), background var(--dur);
}
.hero__chip:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.hero__chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g400);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero__scroll-text {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.hero__scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 7px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: sdot 2s ease infinite;
}

/* ================================================================
   MARQUEE / TICKER
   ================================================================ */
.marquee-strip {
  background: var(--g800);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  white-space: nowrap;
}
.marquee-item-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================================
   BENTO GRID
   ================================================================ */
.bento-section { padding: clamp(3.5rem,7vw,6.5rem) 0; background: var(--g900); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: .9rem;
}

/* Glassmorphism bento card */
.bento-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform .4s var(--spring), box-shadow var(--dur) var(--ease);
  cursor: default;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.bento-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(4,12,6,.4);
}

/* Card sizes */
.bento-a { grid-column: span 2; grid-row: span 2; }
.bento-b { grid-column: span 2; }
.bento-c { grid-column: span 1; }
.bento-d { grid-column: span 1; }
.bento-e { grid-column: span 2; }

.bento-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: rgba(200,145,42,.15);
  color: var(--gold-pale);
  margin-bottom: 1.2rem;
  transition: background var(--dur), color var(--dur);
}
.bento-card:hover .bento-icon {
  background: var(--gold);
  color: var(--white);
}
.bento-num {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem,7vw,5.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .4rem;
}
.bento-num.gold { color: var(--gold); }
.bento-num.white { color: var(--white); }
.bento-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: .5rem;
}
.bento-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: .65rem;
}
.bento-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.72;
}
.bento-card .bento-tag {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: var(--r-pill);
  background: rgba(77,156,96,.2);
  color: var(--g400);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

/* Bento large card extra visual */
.bento-visual {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,156,96,.18), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

/* Mini metric inside bento */
.bento-metrics { display: grid; gap: .5rem; margin-top: 1.2rem; }
.bento-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem .75rem;
  border-radius: var(--r);
  background: rgba(255,255,255,.05);
  font-size: .82rem;
}
.bento-metric-row span { color: rgba(255,255,255,.5); }
.bento-metric-row strong { color: var(--g400); font-size: .88rem; }

/* Bar chart visual */
.bento-bars {
  display: flex;
  align-items: flex-end;
  gap: .4rem;
  height: 72px;
  margin-top: 1.2rem;
}
.bento-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(77,156,96,.25);
  transition: background var(--dur);
  animation: bar-fill .8s var(--ease) both;
}
.bento-bar.active { background: var(--g400); }
.bento-bar:nth-child(1) { height: 55%; animation-delay: .1s; }
.bento-bar:nth-child(2) { height: 75%; animation-delay: .2s; }
.bento-bar:nth-child(3) { height: 60%; animation-delay: .3s; }
.bento-bar:nth-child(4) { height: 90%; animation-delay: .4s; }
.bento-bar:nth-child(5) { height: 70%; animation-delay: .5s; }
.bento-bar:nth-child(6) { height: 85%; animation-delay: .6s; animation-delay: .6s; }
.bento-bar:hover { background: var(--gold) !important; }

/* ================================================================
   SECTIONS — common
   ================================================================ */
.section { padding: clamp(3rem,6vw,5.75rem) 0; }
.section--white { background: var(--white); }
.section--off   { background: var(--off); }
.section--light { background: var(--g50); }
.section--dark  { background: var(--g900); }
.section--green { background: var(--g700); }

@supports (content-visibility: auto) {
  .section,
  .cta-banner,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

.sec-head { margin-bottom: clamp(1.8rem,3.5vw,3rem); }
.sec-head--center {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(1.8rem,3.5vw,3.25rem);
}
.section h2 {
  font-size: clamp(2rem,4.5vw,3.7rem);
  margin-bottom: .9rem;
}
.section--dark h2, .section--green h2 { color: var(--white); }
.lead {
  font-size: 1.04rem;
  color: var(--muted);
  line-height: 1.8;
}
.lead--light { color: rgba(255,255,255,.62); }

/* ================================================================
   SPLIT LAYOUT
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,7vw,7rem);
  align-items: center;
}
.split--rev .split__content { order: 2; }
.split--rev .split__visual   { order: 1; }

.split__content h2 {
  font-size: clamp(1.9rem,4vw,3.2rem);
  margin-bottom: 1rem;
}

/* Checklist */
.checklist { display: grid; gap: .7rem; margin: 1.6rem 0 2.2rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
}
.checklist li::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--g600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover;
}

/* Dashboard floating card */
.dash-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--line);
  position: relative;
}
.dash-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--g50);
}
.dash-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.dash-card__badge {
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .6rem;
  border-radius: var(--r-pill);
  background: rgba(77,156,96,.14);
  color: var(--g500);
}
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem .9rem;
  border-radius: var(--r);
  margin-bottom: .45rem;
  background: var(--g50);
  transition: background var(--dur), transform var(--dur) var(--spring);
}
.metric-row:hover { background: var(--g100); transform: translateX(4px); }
.metric-row span   { font-size: .86rem; font-weight: 500; color: var(--muted); }
.metric-row strong { font-size: .9rem; font-weight: 700; }
.val-green { color: var(--g500); }
.val-gold  { color: var(--gold); }

.dash-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--g50);
  font-size: .79rem;
}
.dash-card__foot span { color: var(--muted); }
.dash-card__foot a { color: var(--g500); font-weight: 600; }
.dash-card__foot a:hover { color: var(--g600); }

/* Floating badge on image */
.img-visual { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.img-visual img { width: 100%; height: 480px; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: .9rem 1.2rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.8);
  animation: float 4s ease-in-out infinite;
}
.img-badge strong { display: block; font-size: .86rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.img-badge span   { font-size: .74rem; color: var(--muted); }

/* Feature list */
.feat-list { display: grid; gap: 1.4rem; margin: 1.8rem 0 2.4rem; }
.feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--g600);
  color: var(--white);
  transition: background var(--dur), transform var(--dur) var(--spring);
}
.feat-item:hover .feat-icon { background: var(--gold); transform: scale(1.1) rotate(-4deg); }
.feat-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .3rem;
}
.feat-item p { font-size: .87rem; color: var(--muted); }

/* ================================================================
   SERVICES GRID (glassmorphism)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.svc-card {
  background: rgba(255,255,255,.03);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur), transform .4s var(--spring);
  cursor: default;
}
.svc-card:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.03), transparent);
  pointer-events: none;
}
.svc-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: rgba(200,145,42,.12);
  color: var(--gold-pale);
  margin-bottom: 1rem;
  transition: background var(--dur), color var(--dur), transform .4s var(--spring);
}
.svc-card:hover .svc-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.svc-num {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(200,145,42,.5);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.svc-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; }
.svc-card p  { font-size: .87rem; color: rgba(255,255,255,.52); line-height: 1.72; margin-bottom: 1.3rem; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-pale);
  transition: gap var(--dur), color var(--dur);
}
.svc-link:hover { gap: .7rem; color: var(--gold); }

/* ================================================================
   COUNTER SECTION
   ================================================================ */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.counter-item {
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
  transition: background var(--dur);
}
.counter-item:hover { background: rgba(255,255,255,.04); }
.counter-item:last-child { border-right: none; }
.counter-num {
  display: inline;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem,5vw,5rem);
  font-weight: 800;
  color: var(--white);
}
.counter-unit {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 700;
  color: var(--gold);
}
.counter-item p {
  margin-top: .6rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
}

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
}
.process-step { text-align: center; padding: 0 .5rem; }
.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--g600);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 28px rgba(42,90,53,.3), 0 0 0 0 rgba(42,90,53,.3);
  transition: background var(--dur), transform var(--dur) var(--spring), box-shadow var(--dur);
}
.process-step:hover .process-num {
  background: var(--gold);
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(200,145,42,.4);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.process-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 36px; color: var(--g400); opacity: .5;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.8rem;
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform .4s var(--spring), box-shadow var(--dur), border-color var(--dur);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--g100);
}
.testi-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.testi-text {
  font-size: .96rem;
  line-height: 1.8;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--g700);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
}
.testi-role {
  font-size: .78rem;
  color: var(--muted);
}
.testi-quote {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--g50);
  font-family: "Space Grotesk", sans-serif;
  pointer-events: none;
  user-select: none;
}

/* ================================================================
   AUDIENCE CARDS
   ================================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.aud-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.4rem 2rem;
  border: 1.5px solid var(--line);
  text-align: center;
  transition: transform .4s var(--spring), box-shadow var(--dur), border-color var(--dur);
}
.aud-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--g100);
}
.aud-icon {
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--g50);
  color: var(--g600);
  margin: 0 auto 1.3rem;
  transition: background var(--dur), color var(--dur), transform var(--dur) var(--spring);
}
.aud-card:hover .aud-icon { background: var(--g700); color: var(--white); transform: scale(1.1); }
.aud-card h3 { font-size: 1.22rem; margin-bottom: .7rem; }
.aud-card p  { font-size: .88rem; color: var(--muted); margin-bottom: 1.3rem; }
.aud-link {
  font-size: .85rem; font-weight: 700; color: var(--g600);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color var(--dur), gap var(--dur);
}
.aud-link:hover { color: var(--gold); gap: .6rem; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: clamp(3.75rem,7vw,7rem) 0;
  overflow: hidden;
  background: var(--g950);
}
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(4,12,6,.95) 0%, rgba(4,12,6,.88) 55%, rgba(4,12,6,.80) 100%);
}
.cta-banner__body { position: relative; z-index: 2; max-width: 720px; }
.cta-banner h2 {
  font-size: clamp(2rem,4.5vw,4.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner .lead--light { font-size: 1.06rem; margin-bottom: 2.2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--g950);
  color: rgba(255,255,255,.65);
  padding: clamp(2.75rem,5vw,5rem) 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1) 30%, rgba(200,145,42,.4) 50%, rgba(255,255,255,.1) 70%, transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  line-height: 1.78;
  margin-bottom: 1.6rem;
  max-width: 300px;
}
.footer-social { display: flex; gap: .65rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  transition: background var(--dur), color var(--dur), transform var(--dur) var(--spring);
}
.footer-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.footer-col h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--white); margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  transition: color var(--dur), padding-left var(--dur);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.4rem 0;
  font-size: .81rem; color: rgba(255,255,255,.28);
}
.footer-updated {
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.28); transition: color var(--dur); }
.footer-legal a:hover { color: var(--gold); }

/* Site search */
.site-search-button {
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 44px; padding: .55rem .75rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); color: var(--g700); font: inherit;
  font-size: .8rem; font-weight: 700; cursor: pointer;
}
.site-search-button:hover { border-color: var(--g400); }
.site-search-dialog {
  width: min(680px, calc(100% - 2rem)); max-height: min(720px, calc(100dvh - 2rem));
  margin: auto; padding: clamp(1.25rem, 4vw, 2rem); border: 0;
  border-radius: var(--r-lg); box-shadow: 0 24px 80px rgba(4,12,6,.32);
  color: var(--ink); overflow: auto;
}
.site-search-dialog::backdrop { background: rgba(4,12,6,.72); backdrop-filter: blur(5px); }
.site-search-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.site-search-head h2 { margin: .35rem 0 1rem; font-size: clamp(1.45rem, 4vw, 2rem); }
.site-search-close { width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; background: var(--off); color: var(--ink); font-size: 1.6rem; cursor: pointer; }
.site-search-field input { width: 100%; min-height: 54px; padding: .8rem 1rem; border: 2px solid var(--line); border-radius: var(--r); font: inherit; color: var(--ink); }
.site-search-field input:focus { border-color: var(--g500); outline: 3px solid rgba(58,120,72,.14); }
.site-search-status { margin: .8rem 0 .35rem; color: var(--muted); font-size: .82rem; }
.site-search-results { display: grid; gap: .4rem; }
.site-search-results a { display: grid; gap: .15rem; padding: .75rem .9rem; border-radius: var(--r); background: var(--off); }
.site-search-results a:hover { background: var(--g50); }
.site-search-results strong { color: var(--g700); }
.site-search-results span { color: var(--muted); font-size: .84rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Human-readable sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sitemap-group { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white); box-shadow: var(--sh-xs); }
.sitemap-group h2 { margin-bottom: .85rem; font-size: 1.25rem; color: var(--g700); }
.sitemap-group ul { display: grid; gap: .65rem; }
.sitemap-group a { color: var(--g600); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(42,90,53,.25); text-underline-offset: 3px; }
.sitemap-group p { margin-top: .15rem; color: var(--muted); font-size: .84rem; }
@media(max-width:900px){.site-search-button span{display:none}.sitemap-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.sitemap-grid{grid-template-columns:1fr}.site-search-dialog{padding:1rem}.site-search-results span{display:none}}
.footer-trust-badges {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .9rem;
  padding: .9rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  padding: .45rem;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
  transition: transform var(--dur) var(--spring), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.footer-trust-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(200,145,42,.5);
  background: rgba(255,255,255,.1);
}
.footer-trust-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================================================================
   INNER HERO — dark cinematic (like homepage)
   ================================================================ */
.inner-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--g950);
  color: var(--white);
  overflow: hidden;
  padding: 0;
}

/* Background image layer */
.inner-hero__bg {
  position: absolute;
  inset: 0;
}
.inner-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      rgba(4,12,6,.95) 0%,
      rgba(4,12,6,.85) 42%,
      rgba(4,12,6,.65) 72%,
      rgba(4,12,6,.50) 100%),
    linear-gradient(0deg, rgba(4,12,6,.75) 0%, transparent 55%);
}

/* Blobs */
.inner-hero__blob1, .inner-hero__blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: blob-shift 14s ease-in-out infinite alternate;
}
.inner-hero__blob1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(58,120,72,.22), transparent 65%);
  top: 5%; left: 3%;
}
.inner-hero__blob2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,145,42,.16), transparent 65%);
  bottom: 10%; right: 8%;
  animation-delay: -5s;
}

/* Dot grid */
.inner-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Body content */
.inner-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 135px 0 72px;
}

/* Eyebrow pill */
.inner-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
  padding: .38rem 1rem .38rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.inner-hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}
.inner-hero__eyebrow-dot::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
  animation: ping 1.8s ease infinite;
}

/* Heading */
.inner-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 1.4rem;
  max-width: 900px;
}
.inner-hero h1 .line { display: block; overflow: hidden; padding: 0.12em 0; margin: -0.12em 0; }
.inner-hero h1 .line-inner {
  display: block;
  animation: lineSlideIn 0.85s cubic-bezier(.34,1.56,.64,1) both;
}
.inner-hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
.inner-hero h1 .line:nth-child(3) .line-inner { animation-delay: 0.24s; }
.inner-hero.revealed h1 .line-inner { transform: translateY(0); }

/* Sub */
.inner-hero__sub {
  font-size: clamp(.98rem, 1.8vw, 1.14rem);
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin-bottom: 1.65rem;
  line-height: 1.8;
}

/* CTAs */
.inner-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/* ================================================================
   PAGE HERO (inner pages) — kept for legal/utility pages
   ================================================================ */
.page-hero {
  padding: calc(80px + clamp(2.5rem,5vw,4.5rem)) 0 clamp(2rem,4vw,3.25rem);
  background: linear-gradient(150deg, var(--g50) 0%, var(--white) 60%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,90,53,.08), transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem,4.6vw,4rem);
  margin-bottom: 1.1rem;
  max-width: 800px;
}
.page-hero .lead { max-width: 640px; font-size: 1.08rem; }

/* ================================================================
   INNER HERO — SPLIT LAYOUT ENHANCEMENTS
   ================================================================ */

/* Split grid */
.inner-hero__split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.inner-hero__left  { min-width: 0; }
.inner-hero__right { flex-shrink: 0; }

/* Background watermark text */
.inner-hero__watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-55%);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(7rem, 14vw, 17rem);
  font-weight: 800;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: -.04em;
}

/* Breadcrumb nav */
.inner-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.3rem;
  font-size: .78rem;
  font-weight: 600;
}
.inner-hero__breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: color var(--dur);
}
.inner-hero__breadcrumb a:hover { color: var(--gold-pale); }
.inner-hero__breadcrumb-sep { color: rgba(255,255,255,.22); font-size: .65rem; }
.inner-hero__breadcrumb-current { color: var(--gold-pale); }

/* Keyword tags row */
.inner-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.6rem;
}
.inner-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .78rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.58);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.04);
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.inner-hero__tag:hover {
  border-color: rgba(200,145,42,.5);
  color: var(--gold-pale);
  background: rgba(200,145,42,.08);
}
.inner-hero__tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Glass card (right side) */
.inner-hero__card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.inner-hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Card header */
.hcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hcard-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: var(--r-pill);
  background: rgba(77,156,96,.25);
  color: var(--g400);
}
.hcard-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g400);
  animation: ping 1.8s ease infinite;
  flex-shrink: 0;
}

/* Card rows */
.hcard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem .8rem;
  border-radius: var(--r);
  margin-bottom: .4rem;
  background: rgba(255,255,255,.05);
  transition: background var(--dur);
}
.hcard-row:hover { background: rgba(255,255,255,.09); }
.hcard-row span  { font-size: .82rem; color: rgba(255,255,255,.52); font-weight: 500; }
.hcard-row strong { font-size: .86rem; font-weight: 700; }
.hcard-green { color: var(--g400); }
.hcard-gold  { color: var(--gold); }
.hcard-white { color: rgba(255,255,255,.85); }

/* Card big stat */
.hcard-stat {
  text-align: center;
  padding: 1rem 0;
}
.hcard-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hcard-stat-num.gold { color: var(--gold); }
.hcard-stat-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-top: .3rem;
  display: block;
}

/* Card stats grid */
.hcard-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: .5rem;
}
.hcard-mini-stat {
  background: rgba(255,255,255,.05);
  border-radius: var(--r);
  padding: .75rem;
  text-align: center;
}
.hcard-mini-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hcard-mini-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .2rem;
  display: block;
}

/* Card footer */
.hcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .76rem;
}
.hcard-foot span { color: rgba(255,255,255,.38); }
.hcard-foot a {
  color: var(--gold-pale);
  font-weight: 700;
  transition: color var(--dur);
}
.hcard-foot a:hover { color: var(--gold); }

/* ---- Inner hero responsive ---- */
@media (max-width: 960px) {
  .inner-hero__split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .inner-hero__right { display: none; }
  .inner-hero__watermark { font-size: clamp(5rem, 18vw, 9rem); right: -4%; }
}

@media (max-width: 640px) {
  .inner-hero { min-height: 85vh; }
  .inner-hero__body { padding: 118px 0 62px; }
  .inner-hero h1 { font-size: clamp(2rem, 6.8vw, 2.8rem); }
  .inner-hero::after { height: 70px; }
  .inner-hero__watermark { display: none; }
}

/* ================================================================
   CARDS GRID (inner pages)
   ================================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  border: 1.5px solid var(--line);
  transition: transform .4s var(--spring), box-shadow var(--dur), border-color var(--dur);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--g100); }
.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--g50); color: var(--g600);
  border-radius: var(--r); margin-bottom: 1rem;
  transition: background var(--dur), color var(--dur), transform var(--dur) var(--spring);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.card-icon svg { width: 22px; height: 22px; }
.card:hover .card-icon { background: var(--g700); color: var(--white); transform: translateY(-2px); }
.card h3,
.card p {
  position: relative;
  z-index: 2;
}
.card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.card p   { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform .4s var(--spring), box-shadow var(--dur), border-color var(--dur);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
  border-color: var(--g100);
}
.blog-card--featured {
  grid-column: span 2;
}
.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--g50);
}
.blog-card--featured img {
  height: 340px;
}
.blog-card__body {
  padding: 1.35rem;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .7rem;
  margin-bottom: .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-card__meta span {
  color: var(--g600);
}
.blog-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  margin-bottom: .65rem;
}
.blog-card h3 a {
  transition: color var(--dur);
}
.blog-card h3 a:hover {
  color: var(--g600);
}
.blog-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--gold-dark);
  font-size: .86rem;
  font-weight: 800;
}
.blog-card__link::after {
  content: '->';
  transition: transform var(--dur) var(--spring);
}
.blog-card__link:hover::after {
  transform: translateX(4px);
}

.blog-post {
  max-width: 880px;
  margin-inline: auto;
}
.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-post__meta span {
  color: var(--g600);
}
.blog-post__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: 1.35rem;
  box-shadow: var(--sh);
}
.blog-post h2 {
  margin-top: 1.45rem;
  margin-bottom: .55rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.blog-post p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: .75rem;
}
.blog-post ul {
  display: grid;
  gap: .45rem;
  margin: .75rem 0 1rem;
}
.blog-post li {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1.4rem;
  position: relative;
}
.blog-post li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.blog-post__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ================================================================
   PAGE-SPECIFIC LAYOUT PERSONALITY
   ================================================================ */

/* Platform: technical control-room feel */
.platform-page .inner-hero {
  min-height: 78vh;
}
.platform-page .inner-hero__overlay {
  background:
    linear-gradient(108deg, rgba(4,12,6,.98) 0%, rgba(8,20,16,.9) 34%, rgba(8,20,16,.58) 70%, rgba(8,20,16,.32) 100%),
    linear-gradient(0deg, rgba(4,12,6,.8) 0%, transparent 60%);
}
.platform-page .section--white .cards-grid {
  grid-template-columns: 1.15fr .9fr 1.05fr;
  align-items: stretch;
}
.platform-page .section--white .card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238,247,239,.65), #fff 42%),
    var(--white);
  border-left: 4px solid var(--g500);
}
.platform-page .section--white .card:nth-child(1),
.platform-page .section--white .card:nth-child(4) {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.platform-page .section--light {
  background:
    linear-gradient(90deg, #fff 0%, #fff 49%, var(--g50) 49%, var(--g50) 100%);
}

/* Solutions: consultative lanes, less card-wall feeling */
.solutions-page .inner-hero {
  min-height: 70vh;
}
.solutions-page .section--white .cards-grid {
  grid-template-columns: 1fr;
  gap: .9rem;
  max-width: 980px;
  margin-inline: auto;
}
.solutions-page .section--white .card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}
.solutions-page .section--white .card::before {
  counter-increment: solution;
  content: counter(solution, decimal-leading-zero);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(42,90,53,.14);
  grid-column: 1;
  grid-row: 1 / span 2;
}
.solutions-page .section--white .cards-grid {
  counter-reset: solution;
}
.solutions-page .section--white .card .card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  transform: none;
}
.solutions-page .section--white .card h3,
.solutions-page .section--white .card p {
  grid-column: 2;
}
.solutions-page .section--light .split {
  grid-template-columns: .85fr 1.15fr;
}

/* Projects: case-study portfolio rhythm */
.projects-page .inner-hero__watermark {
  right: auto;
  left: -3%;
}
.projects-page .section--white {
  background: var(--off);
}
.projects-page .section--white .cards-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.projects-page .section--white .card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 230px;
  padding-top: 4.6rem;
  background: var(--white);
}
.projects-page .section--white .card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 72px;
  background:
    linear-gradient(110deg, rgba(42,90,53,.92), rgba(200,145,42,.7)),
    url("assets/site-photos/platform-installation-hero.webp") center/cover;
}
.projects-page .section--white .card:nth-child(2)::before,
.projects-page .section--white .card:nth-child(6)::before {
  background:
    linear-gradient(110deg, rgba(42,90,53,.88), rgba(200,145,42,.62)),
    url("assets/site-photos/greenhouse-sensor-hero.webp") center/cover;
}
.projects-page .section--white .card:nth-child(3)::before,
.projects-page .section--white .card:nth-child(5)::before {
  background:
    linear-gradient(110deg, rgba(42,90,53,.88), rgba(200,145,42,.62)),
    url("assets/site-photos/electrical-cabinet-hero.webp") center/cover;
}
.projects-page .section--white .card .card-icon {
  position: absolute;
  top: 44px;
  left: 1.4rem;
  box-shadow: var(--sh-sm);
}
.project-case-study {
  background:
    linear-gradient(90deg, var(--off) 0%, var(--off) 52%, #fff 52%, #fff 100%);
}
.project-case-study--reverse {
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, var(--g50) 48%, var(--g50) 100%);
}
.project-case {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.project-case--reverse .project-case__media {
  order: 2;
}
.project-case--reverse .project-case__content {
  order: 1;
}
.project-case__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--sh-lg);
}
.project-case__media::after {
  content: 'DAMBULLA';
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .35rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(4,12,6,.78);
  color: var(--gold-pale);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.project-case__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.project-case__content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--sh-sm);
}
.project-case__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin: 1.4rem 0;
}
.project-case__facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem;
  background: var(--g50);
}
.project-case__facts span {
  display: block;
  margin-bottom: .2rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-case__facts strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
}
.project-case__list {
  display: grid;
  gap: .55rem;
  margin: 1.1rem 0;
}
.project-case__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.7;
}
.project-case__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .68rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.project-case__quote {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: var(--off);
  border-radius: 0 8px 8px 0;
}
.project-case__quote p {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: .65rem;
}
.project-case__quote cite {
  color: var(--muted);
  font-size: .8rem;
  font-style: normal;
  font-weight: 700;
}

/* Resources: knowledge hub / index cards */
.resources-page .section--white .cards-grid {
  grid-template-columns: repeat(3, 1fr);
}
.resources-page .section--white .card {
  border-radius: 8px;
  padding: 1.35rem;
}
.resources-page .section--white .card:nth-child(1),
.resources-page .section--white .card:nth-child(4) {
  grid-column: span 1;
}
.resources-page .section--white .card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}
.resources-page .section--light .cards-grid .card {
  border-left: 4px solid var(--gold);
  box-shadow: none;
}

/* Blog: more editorial, less product page */
.blog-page .inner-hero {
  min-height: 64vh;
}
.blog-page .inner-hero__split {
  grid-template-columns: 1fr 300px;
}
.blog-page .blog-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}
.blog-page .blog-card {
  border-radius: 8px;
}

/* About and Contact: give utility pages their own shapes too */
.about-page .section--white .cards-grid {
  grid-template-columns: repeat(3, 1fr);
}
.about-page .section--white .card {
  border-radius: 8px;
  border-top: 5px solid var(--gold);
}
.contact-page .contact-wrap {
  grid-template-columns: .8fr 1.2fr;
}
.contact-page .contact-form,
.contact-page .metric-panel {
  border-radius: 8px;
}

/* Bullet list */
.bullet-list { display: grid; gap: .65rem; }
.bullet-list li { display: flex; align-items: center; gap: .75rem; font-size: .94rem; color: var(--ink); }
.bullet-list li::before {
  content: ''; display: block;
  width: 10px; height: 10px; flex-shrink: 0;
  border-radius: 50%; background: var(--gold);
}

/* Metric panel */
.metric-panel {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-lg);
}

/* Contact */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 1rem; }
.contact-info p  { font-size: 1rem; color: var(--muted); margin-bottom: 1.8rem; }
.contact-details { display: grid; gap: .8rem; }
.contact-detail { display: flex; align-items: center; gap: .75rem; font-size: .93rem; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r); background: var(--g50); color: var(--g600);
}
.contact-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .87rem; font-weight: 700; color: var(--ink); }
.field input,
.field textarea,
.field select {
  width: 100%; min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: .75rem 1rem;
  font: inherit; font-size: .93rem;
  color: var(--ink); background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--g500);
  box-shadow: 0 0 0 4px rgba(77,156,96,.12);
}
.field textarea { min-height: 150px; resize: vertical; }

/* Policy */
.policy { max-width: 880px; margin-inline: auto; }
.policy h2 { font-size: clamp(1.4rem,3vw,2.1rem); margin-top: 2.5rem; margin-bottom: .75rem; }
.policy p, .policy li { font-size: .95rem; color: var(--muted); line-height: 1.85; }
.policy ul { padding-left: 1.5rem; list-style: disc; display: block; }
.policy ul li + li { margin-top: .4rem; }

/* 404 */
.not-found {
  min-height: 75vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 6rem 0;
}
.not-found__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem,15vw,10rem); font-weight: 800;
  background: linear-gradient(135deg, var(--g100), var(--g50));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: .5rem;
}
.not-found h1 { font-size: clamp(1.7rem,4vw,2.6rem); margin-bottom: 1rem; }
.not-found p  { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; }

/* ================================================================
   RESPONSIVE — 1100px
   ================================================================ */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-a { grid-column: span 2; grid-row: span 1; }
  .bento-e { grid-column: span 2; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-arrow { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

/* ================================================================
   RESPONSIVE — 900px (tablets)
   ================================================================ */
/* Home link: hidden on desktop, shown inside mobile menu */
.nav-home-link { display: none; }

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container {
    max-width: 100%;
  }
  .nav-home-link { display: flex; }
  .site-header {
    padding: .72rem 0;
    width: 100%;
  }
  .site-header.scrolled {
    padding: .62rem 0;
  }
  .nav-wrap {
    gap: .75rem;
  }
  .brand-logo {
    height: 38px;
  }
  .site-header.scrolled .brand-logo {
    height: 36px;
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1200;
  }
  .nav-menu {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    min-width: 0;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(8,20,16,.97);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    padding: calc(74px + env(safe-area-inset-top)) 1.1rem calc(1.5rem + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity .24s var(--ease), visibility .24s var(--ease), transform .24s var(--ease);
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    z-index: 1100;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  /* Gold top accent on open mobile menu */
  .nav-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-menu a {
    color: rgba(255,255,255,.72) !important;
    background: rgba(255,255,255,.035) !important;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: .8rem 1rem;
    font-size: .92rem;
    font-weight: 600;
    border-radius: var(--r);
    border-bottom: 1px solid rgba(255,255,255,.05);
    letter-spacing: .02em;
  }
  .nav-menu a::after { display: none; }
  .nav-menu a:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,.06) !important;
    padding-left: 1.4rem !important;
  }
  .nav-menu a[aria-current="page"] {
    color: var(--gold-pale) !important;
    background: rgba(200,145,42,.08) !important;
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem !important;
  }
  .nav-actions .btn-primary { display: none; }
  .nav-actions .btn-gold { display: none; }
  .nav-actions .translate-wrap,
  .nav-actions .lang-wrap { display: none; }
  body.nav-open {
    overflow: hidden;
  }

  /* Translate row inside mobile menu — hidden by default, shown by media query below */
  #mobile-translate-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: .85rem 1rem;
    margin-top: .4rem;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
  }
  #mobile-lang-select,
  #mobile-translate-load {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    border-radius: var(--r);
    padding: .3rem .55rem;
    font-size: .82rem;
    font-family: "Space Grotesk", sans-serif;
    cursor: pointer;
    outline: none;
  }
  #mobile-lang-select:focus,
  #mobile-translate-load:focus {
    border-color: var(--gold);
  }

  .split,
  .split--rev .split__content,
  .split--rev .split__visual {
    grid-template-columns: 1fr; order: unset;
  }
  .split { gap: 3rem; }
  .split--rev .split__content { order: unset; }
  .split--rev .split__visual  { order: unset; }

  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .counter-item:nth-child(3), .counter-item:nth-child(4) { border-bottom: none; }

  .aud-grid   { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: span 2; }
  .platform-page .section--white .cards-grid,
  .projects-page .section--white .cards-grid,
  .resources-page .section--white .cards-grid,
  .about-page .section--white .cards-grid,
  .blog-page .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .platform-page .section--white .card:nth-child(1),
  .platform-page .section--white .card:nth-child(4),
  .resources-page .section--white .card:nth-child(1),
  .resources-page .section--white .card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .solutions-page .section--light .split,
  .contact-page .contact-wrap,
  .project-case {
    grid-template-columns: 1fr;
  }
  .project-case--reverse .project-case__media,
  .project-case--reverse .project-case__content {
    order: initial;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .contact-wrap { grid-template-columns: 1fr; }
  .img-visual img { height: 340px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e { grid-column: span 1; grid-row: span 1; }
}

/* ================================================================
   RESPONSIVE — 640px (mobile)
   ================================================================ */
@media (max-width: 640px) {
  :root { --gap: 1.1rem; }
  .hero,
  .inner-hero,
  .page-hero,
  .section {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  body { font-size: 15px; }
  .site-header {
    padding: .58rem 0;
  }
  .nav-wrap {
    min-height: 46px;
  }
  .brand-logo {
    height: 34px;
  }
  .site-header.scrolled .brand-logo {
    height: 32px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .nav-menu {
    padding-inline: .95rem;
  }
  .nav-menu a {
    font-size: .9rem;
  }
  .hero h1 { font-size: clamp(2.1rem,7.5vw,2.9rem); }
  .hero h1,
  .inner-hero h1,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero h1 .line,
  .inner-hero h1 .line {
    overflow: visible;
  }
  .hero__body { padding: 104px 0 64px; }
  .hero__sub {
    font-size: .98rem;
    line-height: 1.65;
    margin-bottom: 1.6rem;
  }
  .hero__ctas {
    display: grid;
    gap: .75rem;
    margin-bottom: 2rem;
  }
  .hero__ctas .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
  .hero__chips { gap: .5rem; }
  .hero__chip {
    font-size: .76rem;
    padding: .44rem .7rem;
    max-width: 100%;
    white-space: normal;
  }
  .section {
    padding: 3.4rem 0;
  }
  .sec-head {
    margin-bottom: 2rem;
  }
  .sec-head h2,
  .split__content h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .lead {
    font-size: .98rem;
    line-height: 1.7;
  }
  .inner-hero {
    min-height: auto;
  }
  .inner-hero__body {
    padding: 104px 0 54px;
  }
  .inner-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }
  .inner-hero__sub {
    font-size: .96rem;
    line-height: 1.65;
  }
  .inner-hero__ctas {
    display: grid;
  }
  .inner-hero__ctas .btn {
    width: 100%;
  }
  .inner-hero__tags {
    gap: .45rem;
  }
  .inner-hero__tag {
    font-size: .72rem;
    padding: .42rem .65rem;
  }

  .services-grid, .aud-grid, .cards-grid, .blog-grid,
  .process-grid, .counter-grid { grid-template-columns: 1fr; }
  .platform-page .section--white .cards-grid,
  .projects-page .section--white .cards-grid,
  .resources-page .section--white .cards-grid,
  .about-page .section--white .cards-grid,
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }
  .solutions-page .section--white .card {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }
  .solutions-page .section--white .card::before {
    grid-column: 1;
    grid-row: auto;
  }
  .solutions-page .section--white .card .card-icon {
    transform: none;
    grid-column: 1;
    grid-row: auto;
  }
  .solutions-page .section--white .card h3,
  .solutions-page .section--white .card p {
    grid-column: 1;
  }
  .project-case__facts {
    grid-template-columns: 1fr;
  }
  .blog-card--featured { grid-column: span 1; }
  .blog-card img,
  .blog-card--featured img { height: 230px; }

  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .counter-item:nth-child(odd) { border-right: none; }
  .counter-item:last-child { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .site-footer {
    padding-top: 3rem;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 0, rgba(77,156,96,.18), transparent 38%),
      linear-gradient(180deg, var(--g900), var(--g950));
  }
  .site-footer::before {
    height: 3px;
    background: linear-gradient(90deg, var(--g500), var(--gold), var(--g500));
    opacity: .9;
  }
  .footer-top {
    gap: .85rem;
    padding-bottom: 1.5rem;
    border-bottom: 0;
  }
  .footer-brand {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 1.4rem 1.15rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
  }
  .footer-brand .brand {
    justify-content: center;
    margin-bottom: .85rem;
  }
  .footer-brand .brand-logo {
    height: 46px;
  }
  .footer-brand p {
    max-width: 31rem;
    margin-bottom: 1.15rem;
    color: rgba(255,255,255,.68);
    font-size: .88rem;
    line-height: 1.75;
  }
  .footer-social {
    justify-content: center;
    gap: .75rem;
  }
  .footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: var(--gold-pale);
    border: 1px solid rgba(255,255,255,.1);
  }
  .footer-col {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
  }
  .footer-col h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
    font-size: .72rem;
    color: var(--gold-pale);
  }
  .footer-col h3::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,145,42,.14);
  }
  .footer-col ul {
    gap: .35rem;
  }
  .footer-col a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: .42rem .6rem;
    border-radius: 10px;
    color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.025);
  }
  .footer-col a:hover {
    padding-left: .8rem;
    background: rgba(200,145,42,.12);
  }
  .footer-bottom {
    flex-direction: column;
    gap: .8rem;
    text-align: center;
    padding: 1rem 0 1.25rem;
    color: rgba(255,255,255,.46);
  }
  .footer-trust-badges {
    padding: .75rem 0 1.25rem;
  }
  .footer-trust-badge {
    width: 96px;
    height: 96px;
  }
  .footer-legal {
    justify-content: center;
    gap: .45rem;
  }
  .footer-legal a {
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    color: rgba(255,255,255,.64);
  }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
}

/* ================================================================
   MOTION PREFERENCES
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ================================================================
   BESTWEB FIXED FLOATING BADGE
   ================================================================ */
.bestweb-fixed {
  position: fixed;
  bottom: 5.5rem;
  left: 1rem;
  z-index: 9000;
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  transition: transform var(--dur) var(--spring), box-shadow var(--dur) var(--ease);
}
.bestweb-fixed:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--sh-xl);
}
.bestweb-fixed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ================================================================
   ACCESSIBILITY CONTROLS
   ================================================================ */
.a11y-panel {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 9000;
  font-family: "Space Grotesk", sans-serif;
}
.a11y-toggle {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--g700);
  color: var(--white);
  box-shadow: var(--sh-lg);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--spring), box-shadow var(--dur) var(--ease);
}
.a11y-toggle:hover {
  background: var(--g600);
  border-color: var(--gold-pale);
  box-shadow: var(--sh-xl);
  transform: translateY(-2px);
}
.a11y-toggle img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.a11y-toggle:focus-visible,
.a11y-menu button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.a11y-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + .75rem);
  width: 220px;
  padding: .8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--sh-xl);
}
.a11y-menu__title {
  margin-bottom: .6rem;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.a11y-menu button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  margin-top: .35rem;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--off);
  color: var(--ink);
  font: 800 .82rem "Space Grotesk", sans-serif;
  cursor: pointer;
}
.a11y-menu button[aria-pressed="true"] {
  border-color: var(--g600);
  background: var(--g700);
  color: var(--white);
}
.a11y-menu button[aria-pressed="true"]::after {
  content: 'On';
  color: var(--gold-pale);
  font-size: .72rem;
}
html[data-font-size="large"] {
  font-size: 112%;
}
body.a11y-contrast {
  --white: #ffffff;
  --off: #ffffff;
  --line: #111111;
  --muted: #1f1f1f;
  --ink: #000000;
  --g50: #ffffff;
  --g100: #f4fff4;
  color: #000000;
}
body.a11y-contrast .site-header.scrolled,
body.a11y-contrast .card,
body.a11y-contrast .blog-card,
body.a11y-contrast .dash-card,
body.a11y-contrast .metric-panel,
body.a11y-contrast .project-case__content,
body.a11y-contrast .contact-form,
body.a11y-contrast .a11y-menu {
  border-color: #000000;
}
body.a11y-contrast a {
  text-decoration-thickness: 2px;
}
body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
  scroll-behavior: auto !important;
}
body.a11y-reduce-motion [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}
