/* ==========================================================================
   Global India Source — main stylesheet
   Theme derived from the brand logo: black + red on white/off-white.
   No external font/CDN dependency — system font stack only.
   ========================================================================== */

:root{
  /* Brand colors */
  --red: #C8202F;          /* primary accent — buttons, links, highlights */
  --red-dark: #A81B27;     /* AA-safe red for small text on white */
  --red-light: #FDECEE;    /* tint backgrounds */
  --black: #1A1A1A;        /* headings / primary text */
  --ink: #262626;
  --white: #FFFFFF;
  --bg-light: #F8F8F8;
  --bg-panel: #F3F1F0;

  --gray-900:#222222;
  --gray-700:#4A4A4A;
  --gray-500:#767676;
  --gray-300:#D9D9D9;
  --gray-200:#E9E9E9;
  --gray-100:#F2F2F2;

  --border: #E2E0DF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1200px;

  --font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; cursor:pointer; }
h1,h2,h3,h4,h5{
  font-family:var(--font-heading);
  color:var(--black);
  font-weight:800;
  line-height:1.2;
  margin:0 0 14px;
  letter-spacing:-0.01em;
}
p{ margin:0 0 14px; color:var(--gray-700); }
p:last-child{ margin-bottom:0; }

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

/* ---------- Skip link (a11y) ---------- */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--black); color:var(--white); padding:12px 18px;
  z-index:1000; border-radius:0 0 6px 0; font-weight:700;
}
.skip-link:focus{ left:0; top:0; }

:focus-visible{ outline:3px solid var(--red); outline-offset:2px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:var(--radius-sm);
  font-weight:700; font-size:15px; border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--red); color:var(--white); }
.btn-primary:hover{ background:var(--red-dark); box-shadow:var(--shadow-md); transform:translateY(-1px); }
.btn-outline{ background:transparent; color:var(--black); border-color:var(--black); }
.btn-outline:hover{ background:var(--black); color:var(--white); }
.btn-outline-white{ background:transparent; color:var(--white); border-color:var(--white); }
.btn-outline-white:hover{ background:var(--white); color:var(--black); }
.btn-block{ width:100%; }

.eyebrow{
  display:inline-block; font-size:12.5px; font-weight:800; letter-spacing:.09em;
  text-transform:uppercase; color:var(--red); margin-bottom:12px;
}

.section{ padding:42px 0; }
.section-tight{ padding:48px 0; }
.section-alt{ background:var(--bg-light); }
.section-dark{ background:var(--black); color:var(--white); }
.section-dark h2, .section-dark h3{ color:var(--white); }
.section-dark p{ color:#D0D0D0; }

.section-head{ max-width:680px; margin:0 0 40px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
/* Kept below every hero <h1> at all widths — h1 uses 3–4vw / 42–48px max,
   so this stays under 3vw and caps at 32px to preserve the heading hierarchy
   (the old 3.4vw briefly overtook the 3vw h1 around tablet/small-laptop widths). */
.section-head h2{ font-size:clamp(24px,2.6vw,32px); }
.section-head p{ font-size:16.5px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:200; background:var(--white);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 20px; max-width:var(--container); margin:0 auto;
}

/* Logo */
.logo-link{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo-img{ display:block; height:40px; width:auto; }
.footer-logo .logo-img{ height:38px; }
.logo-mark{ width:40px; height:40px; flex-shrink:0; }
.logo-text{ display:flex; flex-direction:column; line-height:1.05; }
.logo-text .l1{ font-family:var(--font-heading); font-weight:800; font-size:19px; letter-spacing:-.01em; }
.logo-text .l1 .black{ color:var(--black); }
.logo-text .l1 .red{ color:var(--red); }
.logo-text .l2{ display:flex; align-items:center; gap:6px; margin-top:2px; }
.logo-text .l2 span{ font-size:9.5px; font-weight:700; letter-spacing:.25em; color:var(--black); }
.logo-text .l2 i{ height:1px; width:14px; background:var(--red); display:block; }

.primary-nav{ display:flex; align-items:center; gap:2px; flex:1 1 auto; min-width:0; justify-content:center; }
.primary-nav > ul{ display:flex; align-items:center; gap:2px; }
.nav-link{
  display:flex; align-items:center; gap:6px; padding:10px 11px; border-radius:var(--radius-sm);
  font-weight:700; font-size:14px; color:var(--gray-900); white-space:nowrap;
}
.nav-link:hover, .nav-link[aria-current="page"]{ color:var(--red); background:var(--red-light); }
.nav-item{ position:relative; }

.caret{ width:9px; height:9px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg); margin-top:-3px; transition:transform .15s ease; }
.nav-item.open .caret{ transform:rotate(-135deg); margin-top:3px; }

/* Mega menu
   .mega-menu is the hoverable hit-area: it starts flush against the trigger
   (top:100%) and uses padding-top to create the visual gap instead of a real
   gap in the box model. That gap used to be genuinely empty space between the
   trigger and the panel — moving the mouse through it (even briefly, even in
   a straight line) landed on neither element, fired mouseleave, and closed
   the menu before a click could land. Padding keeps the hit area continuous
   the whole way down, so the panel (.mega-menu-panel) can carry the visible
   card styling without reintroducing that dead zone. */
.mega-menu{
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  padding-top:8px; width:640px; display:none; z-index:50;
}
.nav-item.open .mega-menu{ display:block; }
.mega-menu-panel{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg); padding:18px;
  display:grid; grid-template-columns:1fr 1fr; gap:4px 20px;
}
.mega-menu a{
  display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:8px; font-size:14px; font-weight:600; color:var(--gray-900);
}
.mega-menu a:hover{ background:var(--bg-light); color:var(--red); }
.mega-menu a i{ width:16px; text-align:center; color:var(--red); flex-shrink:0; font-size:14px; }

.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.header-cta{ white-space:nowrap; }
@media (max-width: 1180px){
  .header-cta{ display:none; }
}

/* Language switcher */
.lang-switch{ display:flex; align-items:center; gap:2px; background:var(--bg-light); border-radius:999px; padding:3px; }
.lang-opt{
  display:flex; align-items:center; gap:6px; padding:6px 11px 6px 8px; border-radius:999px;
  font-size:12.5px; font-weight:800; color:var(--gray-700); letter-spacing:.03em;
}
.lang-opt svg{ width:18px; height:13px; border-radius:2px; box-shadow:0 0 0 1px rgba(0,0,0,.12); flex-shrink:0; }
.lang-opt[aria-current="true"]{ background:var(--white); color:var(--black); box-shadow:var(--shadow-sm); }
.lang-opt:hover{ color:var(--red); }

.hamburger{
  display:none; flex-direction:column; gap:4px; width:38px; height:38px; align-items:center; justify-content:center;
  border:1px solid var(--border); border-radius:var(--radius-sm); background:var(--white);
}
.mobile-nav{ display:none; }
.hamburger span{ width:19px; height:2px; background:var(--black); display:block; transition:transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  background:linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  border-bottom:1px solid var(--border);
}
.hero-inner{ max-width:760px; }
.hero h1{ font-size:clamp(30px,4.6vw,50px); }
.hero p{ font-size:17.5px; max-width:620px; }
.hero-cta{ margin-top:28px; display:flex; gap:14px; flex-wrap:wrap; }

/* Homepage globe banner --------------------------------------------------- */
.hero.hero-globe{
  position:relative; isolation:isolate; overflow:hidden;
  background:
    radial-gradient(circle at 81% 43%, rgba(200,32,47,.16), transparent 25%),
    radial-gradient(circle at 12% 12%, rgba(200,32,47,.08), transparent 23%),
    linear-gradient(118deg, #fafafa 0%, #fff 44%, #f5f2f2 100%);
}
/* .hero.hero-globe::before{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:-1; opacity:.38;
  background-image:linear-gradient(rgba(26,26,26,.045) 1px, transparent 1px),linear-gradient(90deg, rgba(26,26,26,.045) 1px, transparent 1px);
  background-size:48px 48px; mask-image:linear-gradient(90deg, transparent, #000 36%, #000 77%, transparent);
} */
.hero-layout{ display:grid; grid-template-columns:minmax(0,1.06fr) minmax(410px,.94fr); align-items:center; gap:28px; }
.hero-copy{ max-width:660px; position:relative; z-index:2; }
.hero-globe .hero-copy h1{ max-width:660px; font-size: clamp(30px, 3.7vw, 46px); letter-spacing:-.035em; }
.hero-globe .hero-copy p{ max-width:610px; font-size:17px; }
.hero-proof{ display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:25px; }
.hero-proof li{ display:flex; align-items:center; gap:7px; color:var(--gray-700); font-size:12.5px; font-weight:700; }
.hero-proof i{ color:var(--red); font-size:13px; }

.hero-globe-visual{ position:relative; min-height:526px; width:100%; display:grid; place-items:center; }
.hero-globe-visual::before{
  content:""; width:82%; aspect-ratio:1; border-radius:50%; position:absolute; z-index:-1;
  background:radial-gradient(circle, rgba(200,32,47,.18) 0%, rgba(200,32,47,.07) 35%, transparent 69%);
  filter:blur(2px);
}
.trade-globe{ width:min(100%, 550px); height:auto; position:relative; z-index:2; overflow:visible; animation:globeFloat 7s ease-in-out infinite; }
.globe-shadow{ fill:#11161b; opacity:.18; filter:blur(7px); transform:translate(10px,13px); }
.globe-water{ stroke:#ffffff; stroke-opacity:.4; stroke-width:1.5px; }
.globe-grid{ transform-box:fill-box; transform-origin:center; animation:globeGridTurn 10s ease-in-out infinite; }
.globe-map{ transform-box:fill-box; transform-origin:center; }
.world-land{ fill:url(#globeLand); stroke:#ffffff; stroke-opacity:.58; stroke-width:.8px; stroke-linejoin:round; }
.route-glow{ stroke:#ff5c69; stroke-width:10px; stroke-linecap:round; opacity:.27; filter:url(#glow); }
.route-line{ stroke:url(#globeRoute); stroke-width:2.7px; stroke-linecap:round; stroke-dasharray:1; stroke-dashoffset:1; animation:routeDraw 6s ease-in-out infinite; }
.route-dot{ fill:#fff; stroke:#ff5361; stroke-width:4px; filter:url(#glow); }
.route-pulse{ fill:none; stroke:#ff8190; stroke-width:2px; opacity:0; transform-box:fill-box; transform-origin:center; }
.route-pulse-russia{ animation:routePulse 2.6s ease-out infinite; }
.route-pulse-india{ animation:routePulse 2.6s ease-out .7s infinite; }
.map-tag rect{ fill:#151a20; stroke:#ff7b86; stroke-width:1px; }
.map-tag text{ fill:#fff; font-family:var(--font-body); font-size:10px; font-weight:800; letter-spacing:.09em; }
.map-tag-russia, .map-tag-india{ animation:tagPulse 3.3s ease-in-out infinite; transform-box:fill-box; transform-origin:center; }
.map-tag-india{ animation-delay:.5s; }
.globe-rim{ stroke:#fff; stroke-opacity:.62; stroke-width:2px; }
.globe-shine{ fill:#fff; opacity:.09; filter:blur(5px); }
.globe-orbit{ position:absolute; left:50%; top:50%; border:1px solid rgba(200,32,47,.36); border-radius:50%; pointer-events:none; }
.globe-orbit-one{ width:88%; height:34%; transform:translate(-50%,-50%) rotate(-21deg); animation:orbitSpin 12s linear infinite; }
.globe-orbit-two{ width:72%; height:22%; border-color:rgba(26,26,26,.21); transform:translate(-50%,-50%) rotate(56deg); animation:orbitSpinReverse 14s linear infinite; }
.globe-spark{ position:absolute; width:8px; height:8px; border-radius:50%; background:#f04d5a; box-shadow:0 0 0 5px rgba(240,77,90,.13), 0 0 19px rgba(240,77,90,.8); z-index:3; }
.globe-spark-one{ top:18%; right:17%; animation:sparkPop 2.8s ease-in-out infinite; }
.globe-spark-two{ left:14%; bottom:24%; width:5px; height:5px; animation:sparkPop 3.6s ease-in-out .8s infinite; }
.globe-spark-three{ right:28%; bottom:12%; width:5px; height:5px; animation:sparkPop 3.1s ease-in-out 1.3s infinite; }

@keyframes globeFloat{ 0%,100%{ transform:translateY(0) rotate(-2deg); } 50%{ transform:translateY(-12px) rotate(2deg); } }
@keyframes globeGridTurn{ 0%,100%{ transform:translateX(11px) scaleX(.94); } 50%{ transform:translateX(-11px) scaleX(1.03); } }
@keyframes routeDraw{ 0%,16%{ stroke-dashoffset:1; opacity:0; } 27%,75%{ stroke-dashoffset:0; opacity:1; } 90%,100%{ stroke-dashoffset:0; opacity:.35; } }
@keyframes routePulse{ 0%{ transform:scale(.45); opacity:.9; } 80%,100%{ transform:scale(1.9); opacity:0; } }
@keyframes tagPulse{ 0%,100%{ opacity:.88; } 50%{ opacity:1; } }
@keyframes orbitSpin{ from{ transform:translate(-50%,-50%) rotate(-21deg); } to{ transform:translate(-50%,-50%) rotate(339deg); } }
@keyframes orbitSpinReverse{ from{ transform:translate(-50%,-50%) rotate(56deg); } to{ transform:translate(-50%,-50%) rotate(-304deg); } }
@keyframes sparkPop{ 0%,100%{ transform:scale(.7); opacity:.5; } 50%{ transform:scale(1.35); opacity:1; } }

/* ==========================================================================
   HOME HERO V2  — Figma-matched hero + floating stats card.
   Reversible: set HOME_HERO_V2 = false in home-template.js (legacy markup and
   the .hero-globe / .stats-strip rules above are left untouched).
   ========================================================================== */
.hero.hero-home2{
  background:
    radial-gradient(circle at 78% 46%, rgba(200,32,47,.10), transparent 26%),
    radial-gradient(circle at 4% 4%, rgba(200,32,47,.045), transparent 20%),
    linear-gradient(120deg, #fcfbfb 0%, #ffffff 50%, #f8f5f5 100%);
  padding:20px 0 64px;
}
.hero-home2 .hero-layout{ align-items:center; gap:32px; }
@media (min-width: 901px){
  .hero-home2 .hero-layout{ align-items:start; }
  .hero-home2 .hero-copy{ padding-top:18px; }
  .hero-home2 .hero-globe-visual{ margin-top:-18px; }
}

/* --- Banner variant: rendered globe image as a full-bleed hero background --- */
.hero.hero-home2-banner{
  background-color:#f1f1f2;
  background-image:
    linear-gradient(95deg, #f1f1f2 0%, #f1f1f2 44%, rgba(241,241,242,.62) 56%, rgba(241,241,242,0) 72%),
    url('/assets/images/home-banner.webp');
  background-repeat:no-repeat, no-repeat;
  background-position:center, right center;
  background-size:auto, contain;
  padding:26px 0 40px;
  display:flex; align-items:flex-start; min-height:600px;
}
.hero-home2-banner .container{ width:100%; }
.hero-home2-banner .hero-layout{ display:block; }
.hero-home2-banner .hero-copy{ max-width:620px; }
.hero-home2-banner .hero-copy h1{ font-size:clamp(30px,3.5vw,43px); max-width:600px; text-wrap:normal; }
.hero-home2-banner .hero-copy > p{ max-width:520px; }
.hero-home2-banner .hero-cta{ margin-top:30px; }
.hero-home2-banner .hero-cta .btn{ padding:14px 22px; }
.hero-home2-banner .hero-proof{ gap:18px 28px; margin-top:32px; }
.hero-home2-banner .hero-proof li > span:last-child{ max-width:none; }
.hero-home2-banner .hero-proof-icon{ width:44px; height:44px; font-size:16px; }
@media (min-width: 901px){
  .hero-home2-banner .hero-copy{ padding-top:20px; }
}
@media (max-width: 1100px){
  .hero.hero-home2-banner{ background-position:center, calc(100% + 90px) center; min-height:520px; }
  .hero-home2-banner .hero-copy{ max-width:480px; }
  .hero-home2-banner .hero-copy h1{ max-width:none; }
}
@media (max-width: 900px){
  .hero.hero-home2-banner{
    background:
      linear-gradient(180deg, rgba(248,247,247,.86) 0%, rgba(248,247,247,.9) 55%, rgba(248,247,247,.82) 100%),
      url('/assets/images/home-banner.webp') no-repeat 68% top / cover,
      #f4f3f3;
    padding:20px 0 56px; min-height:0;
  }
  .hero-home2-banner .hero-copy{ max-width:680px; }
}
@media (max-width: 560px){
  .hero.hero-home2-banner{ padding:26px 0 48px; background-size:auto 118%, cover; }
}

/* Eyebrow with leading dot */
.eyebrow-dot{ display:inline-flex; align-items:center; gap:9px; }
.eyebrow-dot::before{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--red);
  box-shadow:0 0 0 4px rgba(200,32,47,.16); flex-shrink:0;
}

/* Headline + red accent + flourish */
.hero-home2 .hero-copy h1{
  margin:0; font-size:clamp(32px,3.9vw,48px); line-height:1.12;
  letter-spacing:-.025em; text-wrap:balance;
}
.hero-home2 .hero-copy h1 .accent{ color:var(--red); }
.hero-flourish{
  display:block; width:46px; height:4px; border-radius:2px; background:var(--red);
  position:relative; margin:12px 0 20px;
}
.hero-flourish::after{
  content:""; position:absolute; left:58px; top:-1px;
  width:6px; height:6px; border-radius:50%; background:var(--red);
}

.hero-home2 .hero-copy p{ font-size:17px; max-width:560px; color:var(--gray-700); }

/* CTA buttons with arrow */
.hero-home2 .hero-cta{ margin-top:26px; gap:14px; }
.hero-home2 .hero-cta .btn{ border-radius:8px; padding:15px 24px; }
.hero-home2 .hero-cta .btn-outline{ border-width:1px; border-color:var(--gray-300); }
.hero-home2 .hero-cta .btn-outline:hover{ border-color:var(--black); }
.hero-home2 .btn-arrow{
  width:auto; height:auto; background:none; border-radius:0; font-size:12px;
  display:inline-flex; transition:transform .15s ease;
}
.hero-home2 .btn:hover .btn-arrow{ transform:translateX(3px); }

/* Proof row — icon chips + labels */
.hero-home2 .hero-proof{ gap:14px 30px; margin-top:28px; }
.hero-home2 .hero-proof li{
  display:flex; align-items:center; gap:11px; font-size:13px; font-weight:700;
  color:var(--black); line-height:1.28;
}
.hero-home2 .hero-proof li > span:last-child{ max-width:120px; }
.hero-proof-icon{
  width:42px; height:42px; border-radius:50%; background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:15px;
}

/* Globe — dark sphere, bright continents, orbit arc, India glow, glowing pedestal */
.hero-home2 .hero-globe-visual{ min-height:560px; margin-right:-24px; }
.hero-home2 .trade-globe{ width:min(100%, 588px); }
.hero-home2 .globe-water{ stroke:#fff; stroke-opacity:.35; stroke-width:1px; }
.hero-home2 .world-land{ fill:url(#globeLand); stroke:#dfe4e8; stroke-opacity:.35; stroke-width:.6px; }
.hero-home2 .globe-rim{ stroke:#fff; stroke-opacity:.5; stroke-width:1.5px; }
.hero-home2 .india-glow{ animation:indiaGlowPulse 3s ease-in-out infinite; transform-box:fill-box; transform-origin:center; }
.hero-home2 .globe-node{ animation:sparkPop 3.4s ease-in-out infinite; transform-box:fill-box; transform-origin:center; }
.hero-home2 .globe-node-b{ animation-delay:.9s; }
.hero-home2 .globe-node-c{ animation-delay:1.7s; }
.globe-podium{ animation:podiumPulse 4s ease-in-out infinite; }
@keyframes podiumPulse{ 0%,100%{ opacity:.85; } 50%{ opacity:1; } }
@keyframes indiaGlowPulse{ 0%,100%{ opacity:.6; transform:scale(.9); } 50%{ opacity:1; transform:scale(1.08); } }

/* Floating stats card — overlaps the hero */
.stats-card-wrap{ padding:0 0 40px; margin-top:-56px; position:relative; z-index:5; }
.stats-card{
  background:var(--white); border:1px solid var(--border); border-radius:20px;
  box-shadow:0 22px 60px rgba(26,26,26,.12);
  display:grid; grid-template-columns:repeat(4,1fr); padding:24px 12px;
}
.stats-card .stat{
  position:relative; display:flex; align-items:center; gap:15px; padding:10px 22px; text-align:left;
}
.stats-card .stat + .stat::before{
  content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:1px; height:56%; background:var(--gray-200);
}
.stats-card .stat-icon{
  width:52px; height:52px; border-radius:50%; background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:20px;
}
.stats-card .stat-body{ min-width:0; }
.stats-card .stat h3{ font-size:26px; color:var(--red); margin:0 0 2px; letter-spacing:-.02em; }
.stats-card .stat p{ font-size:13px; color:var(--gray-700); font-weight:700; margin:0; line-height:1.3; }

@media (max-width: 1024px){
  .hero-home2 .hero-globe-visual{ min-height:440px; }
  .hero-home2 .trade-globe{ width:min(100%, 450px); }
  .stats-card{ grid-template-columns:repeat(2,1fr); padding:14px 12px; }
  .stats-card .stat:nth-child(2n+1)::before{ display:none; }
  .stats-card .stat:nth-child(n+3){ border-top:1px solid var(--gray-200); }
}
@media (max-width: 900px){
  .hero.hero-home2{ padding:34px 0 60px; }
  .hero-home2 .hero-copy{ max-width:680px; }
  .stats-card-wrap{ margin-top:-40px; }
}
@media (max-width: 720px){
  .hero-home2 .hero-proof{ gap:12px 20px; }
  .hero-home2 .hero-proof li{ font-size:12px; }
  .hero-proof-icon{ width:38px; height:38px; font-size:13px; }
}
@media (max-width: 560px){
  .hero.hero-home2{ padding:26px 0 48px; }
  .hero-home2 .hero-cta .btn{ width:100%; }
  .stats-card-wrap{ margin-top:-28px; }
  .stats-card{ grid-template-columns:1fr; padding:8px 10px; }
  .stats-card .stat{ padding:15px 16px; }
  .stats-card .stat::before{ display:none !important; }
  .stats-card .stat + .stat{ border-top:1px solid var(--gray-200); }
}

/* ==========================================================================
   Legal pages (Privacy Policy) — light hero with a shield mark + a width-capped
   reading column that stays aligned with the site's centred container.
   ========================================================================== */
.legal-hero{
  position:relative; isolation:isolate; overflow:hidden;
  background:linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  border-bottom:1px solid var(--border);
  padding:24px 0 34px;
}
.legal-hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(560px 300px at 92% 2%, rgba(200,32,47,.10), transparent 62%),
    radial-gradient(420px 260px at -4% 100%, rgba(200,32,47,.06), transparent 65%);
}
.legal-hero-inner{
  display:grid; grid-template-columns:minmax(0,600px) minmax(0,1fr);
  gap:40px; align-items:center;
}
.legal-hero-copy{ min-width:0; }
.legal-hero .breadcrumbs{ color:var(--gray-500); }
.legal-hero .breadcrumbs a{ color:var(--gray-700); }
.legal-hero .breadcrumbs a:hover{ color:var(--red); }
.legal-hero .eyebrow{ color:var(--red); }
.legal-hero h1{ color:var(--black); font-size:clamp(28px,4vw,42px); margin-bottom:14px; }
.legal-hero-copy p{ color:var(--gray-700); font-size:16.5px; margin:0; }

/* Privacy globe/shield emblem — sits directly on the hero, centred in column 2 */
.legal-hero-art{
  justify-self:center; align-self:center;
  width:100%; max-width:380px;
  display:flex; align-items:center; justify-content:center;
}
.legal-hero-art svg{ display:block; width:100%; height:auto; }

/* Reading column — capped for legibility, left-aligned with the hero copy above */
.legal-body{ padding:40px 0 56px; }
.legal-body .legal-doc{ max-width:780px; }
.legal-body .legal-doc > p:first-child{ font-size:16px; margin-bottom:26px; }
.legal-section{ margin-bottom:32px; }
.legal-section:last-child{ margin-bottom:0; }
.legal-section h2{ font-size:19px; margin-bottom:12px; color:var(--black); }
.legal-section ul{ margin:0 0 14px; padding-left:20px; list-style:disc; }
.legal-section li{ margin-bottom:8px; color:var(--gray-700); line-height:1.6; }
.legal-section li strong{ color:var(--black); }
.legal-contact-card{ margin-top:14px; }
.legal-contact-card p{ margin-bottom:4px; }
.legal-contact-card p:last-child{ margin-bottom:0; }

@media (max-width: 1024px){
  .legal-hero-inner{ grid-template-columns:minmax(0,520px) minmax(0,1fr); gap:20px; }
  .legal-hero-art{ max-width:300px; }
}
@media (max-width: 900px){
  /* Match the other inner-page heroes: drop the decorative panel on small screens */
  .legal-hero{ padding:18px 0 24px; }
  .legal-hero-inner{ grid-template-columns:1fr; gap:0; }
  .legal-hero-art{ display:none; }
  .legal-body{ padding:32px 0 44px; }
}

.breadcrumbs{ font-size:12.5px; color:#BFBFBF; margin-bottom:16px; }
.breadcrumbs a{ color:#BFBFBF; font-weight:600; }
.breadcrumbs a:hover{ color:var(--white); }
.breadcrumbs span{ margin:0 6px; }

/* ==========================================================================
   Shared "content hero" — Product Category pages, the Categories hub page,
   and Contact Us. Light, matching the Homepage's palette. Text-only.
   ========================================================================== */
.content-hero{
  position:relative; isolation:isolate; overflow:hidden;
  background:linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  padding:18px 0; border-bottom:1px solid var(--border);
}
.content-hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(560px 300px at 90% 6%, rgba(200,32,47,.10), transparent 62%),
    radial-gradient(420px 260px at 2% 98%, rgba(200,32,47,.06), transparent 65%);
}
.content-hero-copy{ max-width:640px; }
.content-hero .breadcrumbs{ color:var(--gray-500); }
.content-hero .breadcrumbs a{ color:var(--gray-700); }
.content-hero .breadcrumbs a:hover{ color:var(--red); }
.content-hero h1{ font-size:clamp(28px,4vw,42px); }
.content-hero-copy p{ font-size:16.5px; max-width:560px; }

/* Per-category hero photo (see content-hero.js) */
.content-hero.has-photo{
  background-image:var(--hero-photo);
  background-size:cover;
  background-position:right center;
  background-repeat:no-repeat;
  min-height:460px;
  display:flex;
  align-items:center;
}
.content-hero.has-photo .content-hero-inner{ margin-left:0; }

/* Hero trust highlights — 3 category-specific highlights under the hero
   description (see content-hero.js / site-strings.js heroHighlights). */
.hero-highlights{
  display:flex; flex-wrap:wrap; gap:22px 28px; margin-top:24px; max-width:560px;
}
.hero-highlight{ display:flex; flex-direction:column; gap:10px; flex:1 1 150px; min-width:140px; }
.hero-highlight-icon{
  width:38px; height:38px; border-radius:50%; background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hero-highlight-icon i{ font-size:15px; }
.hero-highlight h3{ font-size:14px; font-weight:800; color:var(--black); margin:0 0 3px; }
.hero-highlight p{ font-size:12.5px; color:var(--gray-500); margin:0; line-height:1.4; }

/* ==========================================================================
   Content hero v2 — left copy stays readable over the per-category photo via
   a left-anchored fade (no card). Rolled out category-by-category: add
   `hero-v2` to `.content-hero.has-photo`.
   ========================================================================== */
.content-hero.hero-v2{
  display:block;                 /* not flex — keep the copy inside the centered container */
  min-height:440px;
  padding:32px 0 40px;
  background-position:right center;
}
/* Restore the site-wide centered 1200px container (the .has-photo rule zeroes
   its left margin, which flushed the copy to the viewport edge on wide screens
   while the header + sections below stayed centered). */
.content-hero.hero-v2 .content-hero-inner{ margin:0 auto; }
/* Left-anchored fade. The copy column (max 600px) inside the centered container
   always ends at ~50% of the viewport on screens >=1200px, so the solid part is
   sized to that and the tail fades out smoothly (no hard band). */
.content-hero.hero-v2::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(90deg,
    #f5f5f6 0%,
    #f5f5f6 50%,
    rgba(245,245,246,.88) 57%,
    rgba(245,245,246,.5) 66%,
    rgba(245,245,246,.15) 73%,
    rgba(245,245,246,0) 80%);
}
.content-hero.hero-v2 .content-hero-copy{ max-width:600px; }
.content-hero.hero-v2 .breadcrumbs{ margin-bottom:18px; }

/* Trust badge pill */
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 15px 7px 12px; margin:0 0 20px;
  background:var(--red-light); color:var(--black);
  border-radius:999px; font-size:13px; font-weight:600; line-height:1;
}
.hero-badge i{ color:var(--red); font-size:12px; }

/* Heading with brush-underlined accent word */
.content-hero.hero-v2 h1{
  font-size:clamp(32px,3vw,46px); line-height:1.1;
  letter-spacing:-0.02em; margin:0 0 20px; max-width:560px;
  text-wrap:balance;
}
.hl-accent{ color:var(--red); position:relative; white-space:nowrap; }
.hl-accent-line{
  position:absolute; left:-.02em; right:-.02em; bottom:-.02em;
  width:calc(100% + .04em); height:.2em; overflow:visible;
}

.content-hero.hero-v2 .content-hero-copy > p{
  font-size:16px; color:var(--gray-700); max-width:560px; margin:0;
}

/* Highlights: icon-left rows, tinted chips kept */
.content-hero.hero-v2 .hero-highlights{
  gap:16px 18px; margin-top:30px; max-width:610px;
}
.content-hero.hero-v2 .hero-highlight{
  flex-direction:row; align-items:flex-start; gap:10px;
  flex:1 1 180px; min-width:170px;
}
.content-hero.hero-v2 .hero-highlight > div{ flex:1; }
.content-hero.hero-v2 .hero-highlight-icon{ width:30px; height:30px; }
.content-hero.hero-v2 .hero-highlight-icon i{ font-size:12px; }
.content-hero.hero-v2 .hero-highlight h3{ font-size:12px; margin:2px 0 3px; letter-spacing:-.01em; }
.content-hero.hero-v2 .hero-highlight p{ font-size:11.5px; color:var(--gray-500); line-height:1.45; }

/* CTA with arrow chip */
.content-hero.hero-v2 .hero-cta{ margin-top:32px; }
.content-hero.hero-v2 .hero-cta .btn{ padding:15px 24px; gap:12px; }
.btn-arrow{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%;
  background:rgba(255,255,255,.22); font-size:10.5px; flex-shrink:0;
}

/* Below ~1100px there isn't room for copy beside the photo, so the photo
   becomes a faint backdrop under an almost-solid scrim. */
@media (max-width: 1100px){
  .content-hero.hero-v2{ min-height:0; padding:24px 0 30px; background-position:center; }
  .content-hero.hero-v2::after{
    background:linear-gradient(180deg, rgba(245,245,246,.93) 0%, rgba(245,245,246,.97) 100%);
  }
  .content-hero.hero-v2 .content-hero-copy,
  .content-hero.hero-v2 .content-hero-copy > p,
  .content-hero.hero-v2 h1{ max-width:none; }
  .content-hero.hero-v2 .hero-highlights{ max-width:none; }
  .content-hero.hero-v2 .hero-highlight{ flex:1 1 200px; }
}
@media (max-width: 560px){
  .content-hero.hero-v2{ padding:26px 0; }
  .content-hero.hero-v2 .hero-highlight{ flex:1 1 100%; min-width:0; }
}

/* Product Categories hub — decorative full-bleed banner behind the copy.
   Overrides the .has-photo photo-hero rules (must stay after them in source). */
.content-hero.hero-banner{
  display:block;
  min-height:0;
  padding:38px 0 42px;
  background-image:var(--hero-photo);
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}
.content-hero.hero-banner::before{ content:none; }
.content-hero.hero-banner .content-hero-inner{ margin:0 auto; }
.content-hero.hero-banner::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(90deg,
    rgba(249,245,236,.97) 0%,
    rgba(249,245,236,.93) 40%,
    rgba(249,245,236,.74) 58%,
    rgba(249,245,236,.46) 74%,
    rgba(249,245,236,.30) 100%);
}
.content-hero.hero-banner .content-hero-copy{ max-width:720px; }

/* Hub hero highlights — icon-left rows, own sizing (kept distinct from the
   category-page hero-v2 highlights). */
.content-hero.hero-banner .hero-highlights{ gap:16px 30px; margin-top:26px; max-width:none; }
.content-hero.hero-banner .hero-highlight{
  flex-direction:row; align-items:flex-start; gap:12px; flex:1 1 200px; min-width:0;
}
.content-hero.hero-banner .hero-highlight-icon{ width:34px; height:34px; }
.content-hero.hero-banner .hero-highlight-icon i{ font-size:13px; }
.content-hero.hero-banner .hero-highlight > div{ flex:1; }
.content-hero.hero-banner .hero-highlight h3{ font-size:12.5px; margin:1px 0 3px; }
.content-hero.hero-banner .hero-highlight p{ font-size:11.5px; line-height:1.45; }

@media (max-width: 1100px){
  .content-hero.hero-banner{ background-position:center; padding:28px 0 32px; }
  .content-hero.hero-banner::after{
    background:linear-gradient(180deg, rgba(249,245,236,.90) 0%, rgba(249,245,236,.96) 100%);
  }
  .content-hero.hero-banner .content-hero-copy{ max-width:none; }
}
@media (max-width: 560px){
  .content-hero.hero-banner .hero-highlight{ flex:1 1 100%; }
}

/* ==========================================================================
   Grids / Cards
   ========================================================================== */
.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

.card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:26px 24px; box-shadow:var(--shadow-sm); transition:box-shadow .2s ease, transform .2s ease;
}
.card:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); }
.card h3{ font-size:17px; margin-bottom:8px; }
.card p{ font-size:14.5px; }

.icon-badge{
  width:46px; height:46px; border-radius:12px; background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; flex-shrink:0;
}
.icon-badge svg{ width:24px; height:24px; }
.icon-badge i{ font-size:19px; }
.cat-tile .icon-badge{ margin-bottom:0; }
.hub-card h3{ display:flex; align-items:center; gap:8px; }
.hub-card h3 i{ color:var(--red); font-size:14px; }
.footer-social a i{ font-size:14px; }

/* Category tile (grid on homepage) */
.cat-tile{
  display:flex; flex-direction:column; gap:10px; padding:22px 20px; border-radius:var(--radius-md);
  border:1px solid var(--border); background:var(--white); box-shadow:var(--shadow-sm);
}
.cat-tile:hover{ border-color:var(--red); box-shadow:var(--shadow-md); }
.cat-tile .cat-name{ font-weight:800; color:var(--black); font-size:15px; }
.cat-tile .cat-arrow{ color:var(--red); font-weight:800; font-size:13px; }

/* Image-topped, interactive category cards — homepage "Industries We Serve"
   and the Product Categories index. Separate from .cat-tile (still used for
   the sub-category chips on category pages). */
.cat-card-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.cat-card{
  display:flex; flex-direction:column; overflow:hidden;
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.cat-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--red); }
.cat-card:focus-visible{ outline:2px solid var(--red); outline-offset:2px; }
.cat-card-media{
  position:relative; aspect-ratio:16 / 9; overflow:hidden; background:var(--gray-100);
}
.cat-card-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s cubic-bezier(.2,.6,.2,1);
}
.cat-card-media::after{
  content:""; position:absolute; inset:0; opacity:0; transition:opacity .28s ease;
  background:linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.18));
}
.cat-card:hover .cat-card-media img{ transform:scale(1.07); }
.cat-card:hover .cat-card-media::after{ opacity:1; }
.cat-card-body{ display:flex; flex-direction:column; gap:7px; padding:17px 19px 19px; }
.cat-card-name{
  font-family:var(--font-heading); font-weight:800; color:var(--black);
  font-size:15.5px; line-height:1.32;
}
.cat-card-link{
  display:inline-flex; align-items:center; gap:7px;
  color:var(--red); font-weight:800; font-size:13px;
}
.cat-card-link i{ font-size:11px; transition:transform .28s ease; }
.cat-card:hover .cat-card-link i{ transform:translateX(4px); }

/* Process steps — animated vertical stepper */
.process-list{ counter-reset:step; display:grid; gap:0; max-width:760px; margin:0 auto; }
.process-step{
  display:flex; gap:20px; align-items:flex-start; padding:4px 4px 30px;
  opacity:0; transform:translateY(26px); transition:opacity .6s ease, transform .6s ease;
}
.process-step.in-view{ opacity:1; transform:translateY(0); }
.process-step:last-child{ padding-bottom:4px; }
.process-step:nth-child(1){ transition-delay:.02s; }
.process-step:nth-child(2){ transition-delay:.12s; }
.process-step:nth-child(3){ transition-delay:.22s; }
.process-step:nth-child(4){ transition-delay:.32s; }
.process-step:nth-child(5){ transition-delay:.42s; }
.process-step:nth-child(6){ transition-delay:.52s; }
.process-step:nth-child(7){ transition-delay:.62s; }
.process-step:nth-child(8){ transition-delay:.72s; }

.process-step .num-col{ display:flex; flex-direction:column; align-items:center; flex-shrink:0; }
.process-step .num{
  counter-increment:step; width:44px; height:44px; border-radius:50%;
  background:var(--black); color:var(--white); font-weight:800; font-size:17px; display:flex; align-items:center; justify-content:center;
  position:relative; z-index:2; box-shadow:0 4px 12px rgba(0,0,0,.14); transition:background .45s ease, transform .45s ease .1s;
}
.process-step .num::before{ content: counter(step); }
.process-step.in-view .num{ background:var(--red); transform:scale(1.08); }
.process-step .line{ width:2px; flex:1; min-height:30px; margin-top:4px; background:var(--border); position:relative; overflow:hidden; }
.process-step .line::after{
  content:""; position:absolute; top:0; left:0; width:100%; height:0%;
  background:var(--red); transition:height .7s ease .2s;
}
.process-step.in-view .line::after{ height:100%; }
.process-step:last-child .line{ display:none; }

.process-step .step-body{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:16px 20px; flex:1; margin-top:-2px; transition:border-color .3s ease, box-shadow .3s ease;
}
.process-step.in-view .step-body{ border-color:#f0d3d6; box-shadow:var(--shadow-sm); }
.process-step h3{ font-size:16px; margin-bottom:4px; }
.process-step p{ font-size:14px; }

@media (prefers-reduced-motion: reduce){
  .process-step{ opacity:1; transform:none; transition:none; }
  .process-step .num{ transition:none; }
  .process-step .line::after{ transition:none; height:100%; }
  .cat-card, .cat-card-media img, .cat-card-link i{ transition:none; }
  .cat-card:hover{ transform:none; }
  .cat-card:hover .cat-card-media img{ transform:none; }
}

/* Stats / trust strip */
.stats-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat h3{ font-size:30px; color:var(--red); margin-bottom:4px; }
.stat p{ font-size:13.5px; color:var(--gray-500); font-weight:600; }

/* Hub cards */
.hub-card{ border-left:4px solid var(--red); padding:14px 18px; background:var(--bg-light); border-radius:0 var(--radius-sm) var(--radius-sm) 0; }
.hub-card h3{ font-size:15.5px; margin-bottom:4px; }
.hub-card p{ font-size:13.5px; }

/* Placeholder marker for not-yet-finalized copy */
.tbd{ position:relative; background:linear-gradient(90deg, var(--red-light), transparent); border-left:3px dashed var(--red-dark); padding-left:12px; }
.tbd-tag{
  display:inline-block; font-size:10.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:var(--red-dark); background:var(--red-light); border:1px solid #f3c3c8; border-radius:4px; padding:2px 7px; margin-bottom:8px;
}

/* CTA banner */
.cta-banner{
  background:var(--black); border-radius:var(--radius-lg); padding:52px 44px; text-align:center;
  color:var(--white); position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; inset:0; background:radial-gradient(600px 200px at 20% 0%, rgba(200,32,47,.35), transparent 60%);
}
.cta-banner > *{ position:relative; }
.cta-banner h2{ color:var(--white); font-size:clamp(24px,3.2vw,34px); }
.cta-banner p{ color:#D6D6D6; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-banner .hero-cta{ justify-content:center; margin-top:24px; }

/* Strip section (didn't find your category) */
.strip{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background:var(--red-light); border:1px solid #f3c3c8; border-radius:var(--radius-md); padding:26px 30px;
}
.strip h3{ font-size:18px; margin-bottom:4px; }
.strip p{ font-size:14px; margin-bottom:0; max-width:480px; }

/* ==========================================================================
   Forms (Contact / RFQ) — adapted from the approved wireframe
   ========================================================================== */
.form-panel{ background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:34px 34px 38px; box-shadow:var(--shadow-sm); }
.form-panel h2{ font-size:21px; margin-bottom:22px; }

.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:700; margin-bottom:6px; color:var(--black); }
.field .req{ color:var(--red-dark); font-weight:800; }
.field .field-note{ display:block; font-weight:400; color:var(--gray-500); font-size:11.5px; margin-top:3px; }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field select, .field textarea{
  width:100%; border:1.5px solid var(--border); background:var(--white); padding:12px 14px;
  font:inherit; font-size:14px; border-radius:var(--radius-sm); color:var(--ink);
}
.field select:disabled{ background:var(--bg-light); color:var(--gray-500); cursor:not-allowed; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:2.5px solid var(--red); outline-offset:1px; border-color:var(--red); }
.field textarea{ resize:vertical; min-height:110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.error-msg{ color:var(--red-dark); font-size:12px; margin-top:5px; display:none; font-weight:600; }
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color:var(--red-dark); }
.field.invalid .error-msg{ display:block; }
.field.hidden{ display:none; }

.confirm-panel{
  display:none; text-align:center; padding:48px 26px; background:#eef7ee; border:1px solid #86bd86;
  border-radius:var(--radius-lg);
}
.confirm-panel .check{
  width:48px; height:48px; border-radius:50%; border:2px solid #3f8f3f; color:#2f6f2f;
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:22px; font-weight:800;
}
.confirm-panel h1, .confirm-panel h3{ font-size:18px; color:#2f5c2f; }
.confirm-panel p{ color:#3d5f3d; }

.sidebar-card{ padding:24px 22px; border-radius:var(--radius-md); margin-bottom:18px; border:1px solid var(--border); }
.sidebar-card.alt{ background:var(--bg-light); }
.sidebar-card h4{ font-size:14.5px; margin-bottom:12px; }
.sidebar-card li{ font-size:13.5px; color:var(--gray-700); margin-bottom:9px; line-height:1.5; padding-left:18px; position:relative; }
.sidebar-card li::before{ content:"—"; position:absolute; left:0; color:var(--red); font-weight:800; }

/* ==========================================================================
   Contact Us — bespoke dark hero + lifted form layout
   ========================================================================== */
.contact-hero{
  position:relative; isolation:isolate; overflow:hidden; color:#fff;
  padding:26px 0 96px;
  background:
    radial-gradient(700px 440px at 88% -12%, rgba(200,32,47,.32), transparent 62%),
    radial-gradient(520px 360px at 4% 120%, rgba(200,32,47,.15), transparent 60%),
    linear-gradient(157deg, #211d1d 0%, #1a1717 45%, #251517 100%);
}
.contact-hero::before{
  content:""; position:absolute; inset:0; z-index:-1; opacity:.55;
  background-image:radial-gradient(rgba(255,255,255,.10) 1.1px, transparent 1.3px);
  background-size:24px 24px;
  -webkit-mask-image:linear-gradient(180deg,#000 0%, transparent 92%);
  mask-image:linear-gradient(180deg,#000 0%, transparent 92%);
}
.contact-hero-inner{
  display:grid; grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr);
  align-items:center; gap:44px;
}
.contact-hero-copy{ max-width:600px; }
.contact-hero .breadcrumbs{ margin-bottom:18px; color:#c9bcbd; }
.contact-hero .breadcrumbs a{ color:#e7dcdd; }
.contact-hero .breadcrumbs a:hover{ color:#fff; }
.contact-hero .eyebrow{ color:#ff9ba1; margin-bottom:14px; }
.contact-hero .eyebrow-dot::before{ background:#ff9ba1; box-shadow:0 0 0 4px rgba(255,155,161,.18); }
.contact-hero h1{
  color:#fff; font-size:clamp(30px,3.6vw,46px); line-height:1.12;
  letter-spacing:-.025em; margin:0 0 18px; text-wrap:balance;
}
.ch-accent{ color:#ff8189; position:relative; white-space:nowrap; }
.ch-underline{
  position:absolute; left:0; right:0; bottom:-.08em;
  width:100%; height:.24em; overflow:visible; color:var(--red);
}
.contact-hero-copy p{ color:#d8cccd; font-size:16.5px; margin:0; max-width:520px; }

.contact-hero-art{ justify-self:center; width:min(100%, 460px); }
.contact-art-svg{ width:100%; height:auto; display:block; animation:chFloat 7s ease-in-out infinite; }
@keyframes chFloat{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-12px) } }
.ch-pulse{ transform-box:fill-box; transform-origin:center; animation:chPulse 3s ease-in-out infinite; }
@keyframes chPulse{ 0%,100%{ opacity:.28; transform:scale(.68) } 50%{ opacity:.55; transform:scale(1.3) } }

.contact-body{ background:var(--bg-light); padding:0 0 58px; border-bottom:1px solid var(--border); }
.contact-body .contact-grid{
  display:grid; grid-template-columns:1.6fr 1fr; gap:32px; align-items:start;
  margin-top:-68px; position:relative; z-index:2;
}
.contact-body .form-panel{ padding:0; overflow:hidden; }
.form-panel-head{
  display:flex; align-items:center; gap:14px;
  padding:22px 30px; border-bottom:1px solid var(--border);
  background:linear-gradient(180deg,#fff,#fbf9f9);
}
.form-panel-icon{
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.form-panel-head h2{ margin:0; font-size:19px; }
.form-panel-head p{ margin:2px 0 0; font-size:12px; color:var(--gray-500); }
.form-panel form{ padding:26px 30px 32px; }

/* Form field polish (contact form only) */
.form-panel .field label{
  display:flex; flex-wrap:wrap; align-items:baseline; gap:2px 6px;
}
.form-panel .field label .req{ order:1; }
.form-panel .field .field-note{ order:2; flex-basis:100%; margin-top:2px; }
.form-panel .field input[type=text],
.form-panel .field input[type=email],
.form-panel .field input[type=tel],
.form-panel .field select,
.form-panel .field textarea{
  background:#fbfafa; border:1.5px solid var(--border); border-radius:9px;
  padding:12px 14px; transition:border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.form-panel .field input:hover,
.form-panel .field select:hover,
.form-panel .field textarea:hover{ border-color:var(--gray-300); }
.form-panel .field input:focus,
.form-panel .field select:focus,
.form-panel .field textarea:focus{
  outline:none; background:#fff; border-color:var(--red);
  box-shadow:0 0 0 3px rgba(200,32,47,.14);
}
.form-panel .field select{
  appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; padding-right:38px;
}
.form-panel .btn-block{ margin-top:6px; padding:15px 24px; font-size:15px; }

.contact-sidebar{ position:sticky; top:96px; display:flex; flex-direction:column; gap:16px; }
.contact-sidebar .sidebar-card{ margin-bottom:0; background:var(--white); box-shadow:var(--shadow-sm); }
.contact-sidebar .sidebar-card.alt{ background:var(--bg-light); box-shadow:none; }
.sidebar-card-head{ display:flex; align-items:center; gap:11px; margin-bottom:15px; }
.sidebar-card-head h4{ margin:0; font-size:14px; }
.sidebar-card-head .sc-icon{
  width:34px; height:34px; border-radius:9px; flex-shrink:0;
  background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center; font-size:13.5px;
}

.sidebar-steps{ counter-reset:s; }
.sidebar-steps li{
  position:relative; padding-left:40px; margin-bottom:16px;
  font-size:13.5px; color:var(--gray-700); line-height:1.5;
}
.sidebar-steps li::before{
  counter-increment:s; content:counter(s);
  position:absolute; left:0; top:-2px;
  width:27px; height:27px; border-radius:50%;
  background:var(--red); color:#fff; font-size:12px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.sidebar-steps li:last-child{ margin-bottom:0; }
.sidebar-steps li:not(:last-child)::after{
  content:""; position:absolute; left:13px; top:29px; bottom:-10px; width:1.5px;
  background:repeating-linear-gradient(180deg,var(--gray-300) 0 3px,transparent 3px 7px);
}

.contact-lines li{
  display:flex; align-items:flex-start; gap:11px; padding-left:0;
  font-size:13.5px; color:var(--gray-700); margin-bottom:11px; line-height:1.5;
}
.contact-lines li:last-child{ margin-bottom:0; }
.contact-lines li::before{ display:none; }
.contact-lines li i{
  color:var(--red); font-size:13px; margin-top:3px; flex-shrink:0; width:17px; text-align:center;
}

@media (max-width: 900px){
  .contact-hero{ padding:22px 0 84px; }
  .contact-hero-inner{ grid-template-columns:1fr; gap:28px; }
  .contact-hero-art{ width:min(76%, 320px); order:-1; }
  .contact-body .contact-grid{ grid-template-columns:1fr; margin-top:-52px; }
  .contact-sidebar{ position:static; }
}
@media (max-width: 560px){
  .contact-hero{ padding:20px 0 72px; }
  .contact-hero h1{ font-size:24px; }
  .contact-hero-copy p{ font-size:15.5px; }
  .contact-hero-art{ display:none; }
  .contact-body .contact-grid{ margin-top:-44px; }
  .form-panel-head{ padding:18px 18px; }
  .form-panel form{ padding:22px 18px 26px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  position:relative; isolation:isolate; overflow:hidden;
  /* darker at the top (behind the columns), lifting to charcoal at the base so
     the skyline reads against it */
  background:linear-gradient(180deg, #171717 0%, #1c1c1c 42%, #242424 72%, #2d2d2d 100%);
  color:#D6D6D6; padding:56px 0 24px;
}
/* Skyline art (white line-art; `screen` blend lifts it off the gradient)
   sitting on the bottom edge like a horizon, dissolving upward. */
.site-footer::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:min(82%, 430px);
  background:url('/assets/images/footer-bg.webp') center bottom / 100% auto no-repeat;
  mix-blend-mode:screen; filter:brightness(1.75) contrast(1.05); pointer-events:none; z-index:0;
  -webkit-mask-image:linear-gradient(to top, #000 32%, rgba(0,0,0,.55) 68%, transparent 100%);
          mask-image:linear-gradient(to top, #000 32%, rgba(0,0,0,.55) 68%, transparent 100%);
}
.site-footer .container{ position:relative; z-index:1; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-col h4{ color:var(--white); font-size:13.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.footer-col li{ margin-bottom:10px; font-size:14px; }
.footer-col a:hover{ color:var(--white); }
.footer-about p{ font-size:14px; color:#B8B8B8; max-width:280px; }
.footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo .logo-text .l1 .black{ color:var(--white); }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ border-color:var(--red); color:var(--red); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:22px; flex-wrap:wrap; gap:10px; font-size:12.5px; color:#b3b3b3; }
.footer-bottom a:hover{ color:var(--white); }
.footer-legal{ display:flex; gap:18px; }
.footer-madein{ display:inline-flex; align-items:center; gap:5px; }
.footer-madein span{ font-size:12px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .hero-layout{ grid-template-columns:minmax(0,1fr) minmax(350px,.82fr); gap:8px; }
  .hero-globe-visual{ min-height:445px; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .cat-card-grid{ grid-template-columns:repeat(2,1fr); gap:20px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .stats-strip{ grid-template-columns:repeat(2,1fr); gap:28px; }
}

@media (max-width: 900px){
  .hero-layout{ grid-template-columns:1fr; gap:10px; }
  .hero-copy{ max-width:680px; }
  .hero-globe-visual{ min-height:430px; max-width:560px; margin:0 auto -8px; }
  .contact-grid{ grid-template-columns:1fr; }
  .primary-nav{ display:none; }
  .hamburger{ display:flex; }
  .header-actions{ gap:8px; }

  .mobile-nav{
    display:none; flex-direction:column; gap:2px; background:var(--white); border-top:1px solid var(--border);
    padding:14px 24px 22px;
  }
  .mobile-nav.open{ display:flex; }
  .mobile-nav .nav-link{ padding:12px 8px; border-bottom:1px solid var(--gray-100); border-radius:0; justify-content:space-between; }
  .mobile-submenu{ display:none; padding-left:14px; }
  .mobile-submenu.open{ display:block; }
  .mobile-submenu a{ display:flex; align-items:center; gap:10px; padding:9px 8px; font-size:13.5px; font-weight:600; color:var(--gray-700); }
  .mobile-submenu a i{ width:16px; text-align:center; color:var(--red); flex-shrink:0; font-size:13px; }
}

@media (max-width: 720px){
  .hero-globe .hero-copy h1{ font-size:clamp(32px,9.2vw,42px); }
  .hero-globe .hero-copy p{ font-size:16px; }
  .hero-proof{ gap:8px 12px; margin-top:21px; }
  .hero-proof li{ font-size:11.5px; }
  .hero-globe-visual{ min-height:340px; margin-top:4px; }
  .trade-globe{ width:min(100%, 390px); }
  .globe-orbit-one{ width:91%; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns:1fr; }
  .cat-card-grid{ grid-template-columns:1fr; }
  .field-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .stats-strip{ grid-template-columns:1fr 1fr; }
  .cta-banner{ padding:38px 22px; }
  .strip{ flex-direction:column; text-align:center; }
  .strip p{ max-width:100%; }
  .hero-highlights{ gap:16px; margin-top:20px; }
  .hero-highlight{ flex:1 1 130px; min-width:130px; }
  .content-hero.has-photo{ min-height:320px; }
}

/* Small phones: the header row (logo + language switch + hamburger) is flex-shrink:0
   on both ends by design (so the logo and buttons never squash), which means on very
   narrow screens the row needs to be made narrower directly, not left to shrink itself —
   otherwise the language switch and hamburger silently overflow off the right edge. */
@media (max-width: 480px){
  .header-inner{ padding:9px 10px; gap:8px; }
  .logo-mark{ width:32px; height:32px; }
  .logo-img{ height:30px; }
  .logo-text .l1{ font-size:15px; }
  .logo-text .l2{ display:none; }
  .header-actions{ gap:4px; }
  .lang-switch{ padding:1px; gap:0; }
  .lang-opt{ padding:4px 5px 4px 4px; gap:2px; font-size:11px; }
  .hamburger{ width:30px; height:30px; }

  /* The strip's CTA button inherits .btn's white-space:nowrap, which needs more
     width than a very narrow phone has once the strip's own padding is subtracted —
     let it wrap here instead of forcing the whole page to scroll sideways. */
  .strip{ padding:22px 16px; }
  .strip .btn{ white-space:normal; }
}

@media (prefers-reduced-motion: reduce){
  .trade-globe, .globe-grid, .route-line, .route-pulse, .map-tag-russia, .map-tag-india,
  .globe-orbit, .globe-spark, .globe-podium, .india-glow, .globe-node,
  .contact-art-svg, .ch-pulse{ animation:none; }
  .route-line{ stroke-dashoffset:0; }
}


/* ==========================================================================
   About page — hero redesign
   ========================================================================== */
.about-hero{
  position:relative; isolation:isolate; overflow:hidden;
  background:linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  border-bottom:1px solid var(--border);
  padding:18px 0;
}
.about-hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(560px 320px at 84% 12%, rgba(200,32,47,.12), transparent 60%),
    radial-gradient(420px 260px at 8% 92%, rgba(200,32,47,.07), transparent 65%);
}
.about-hero .breadcrumbs{ margin-bottom:16px; color:var(--gray-500); }
.about-hero .breadcrumbs a{ color:var(--gray-700); }
.about-hero .breadcrumbs a:hover{ color:var(--red); }
.about-hero .eyebrow{ color:var(--red); }
.about-hero h1{ color:var(--black); font-size:clamp(30px,4.4vw,48px); max-width:600px; }
.about-hero-copy p{ color:var(--gray-700); font-size:17px; max-width:560px; }

.about-hero-inner{
  display:grid; grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  align-items:center; gap:40px;
}
.about-hero-proof{ margin-top:26px; }

.about-hero-stats{
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
  position:relative; z-index:2;
}
.stat-float-card{
  position:relative; z-index:1;
  background:var(--white); border:1px solid var(--border);
  box-shadow:var(--shadow-md); border-radius:var(--radius-md); padding:20px 18px;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.stat-float-card:hover{ transform:translateY(-4px); border-color:rgba(200,32,47,.4); box-shadow:var(--shadow-lg); }
.stat-float-card .icon-badge{ margin-bottom:14px; }
.stat-float-card h3{ color:var(--black); font-size:24px; margin-bottom:2px; }
.stat-float-card p{ color:var(--gray-500); font-size:12.5px; font-weight:700; margin:0; }
.stat-float-card-2{ transform:translateY(18px); }
.stat-float-card-2:hover{ transform:translateY(14px); }
.stat-float-card-4{ transform:translateY(18px); }
.stat-float-card-4:hover{ transform:translateY(14px); }

@media (max-width:900px){
  .about-hero-inner{ grid-template-columns:1fr; }
  .about-hero-stats{ margin-top:8px; }
  .stat-float-card-2, .stat-float-card-4{ transform:none; }
}
@media (max-width:520px){
  .about-hero-stats{ grid-template-columns:1fr 1fr; gap:12px; }
  .stat-float-card{ padding:16px 14px; }
}

/* Who We Are */
.who-we-are .lede{
  max-width:820px; font-size:17.5px; color:var(--gray-700); margin-bottom:40px;
}
.who-grid{
  display:grid; grid-template-columns:1.3fr .9fr; gap:40px; align-items:start;
}
.who-copy h2{ font-size:clamp(24px,3vw,32px); margin-top:6px; }
.parent-card{
  background:var(--bg-light); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:30px 26px; position:sticky; top:96px;
}
.parent-card h4{ font-size:17px; margin-bottom:8px; color:var(--black); }
.parent-card > p{ font-size:14px; margin-bottom:18px; }
.parent-card ul{ display:grid; gap:10px; }
.parent-card li{
  font-size:13.5px; color:var(--gray-700); padding-left:20px; position:relative; font-weight:600;
}
.parent-card li::before{ content:"✓"; position:absolute; left:0; color:var(--red); font-weight:800; }

@media (max-width:900px){
  .who-grid{ grid-template-columns:1fr; }
  .parent-card{ position:static; }
}

/* Mission — enhanced */
.mission-section{ position:relative; overflow:hidden; }
.mission-wrap{ max-width:720px; text-align:center; position:relative; }
.mission-mark{
  display:block; font-family:Georgia, serif; font-size:120px; line-height:1;
  color:var(--red); opacity:.14; margin-bottom:-40px;
}
.mission-wrap h2{ font-size:clamp(24px,3.2vw,34px); }
.mission-wrap p{ font-size:18px; color:var(--gray-700); }

/* ==========================================================================
   Contact form — error toast (top-right)
   ========================================================================== */
.gis-toast{
  position:fixed; z-index:1000; right:24px; top:84px;
  display:flex; align-items:flex-start; gap:13px;
  width:370px; max-width:calc(100vw - 32px);
  padding:16px 16px 17px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 18px 50px -12px rgba(20,20,20,.28), 0 4px 12px rgba(20,20,20,.08);
  overflow:hidden;
  opacity:0; transform:translateY(-16px) scale(.97);
  transition:opacity .3s ease, transform .3s cubic-bezier(.22,.68,.28,1.1);
}
.gis-toast.is-in{ opacity:1; transform:translateY(0) scale(1); }
.gis-toast-icon{
  flex-shrink:0; width:36px; height:36px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--red-light); color:var(--red); font-size:15px;
}
.gis-toast-text{ flex:1; min-width:0; padding-top:1px; }
.gis-toast-text strong{
  display:block; font-family:var(--font-heading);
  font-size:14px; font-weight:700; color:var(--black); margin-bottom:3px;
}
.gis-toast-text p{ margin:0; font-size:12.5px; line-height:1.55; color:var(--gray-700); }
.gis-toast-close{
  flex-shrink:0; width:26px; height:26px; margin:-3px -4px 0 0;
  display:grid; place-items:center;
  background:transparent; border:0; border-radius:7px;
  color:var(--gray-500); font-size:13px;
  transition:background .15s ease, color .15s ease;
}
.gis-toast-close:hover{ background:var(--gray-100); color:var(--black); }
.gis-toast-bar{
  position:absolute; left:0; right:0; bottom:0; height:3px;
  background:var(--red); transform-origin:left;
  animation:gisToastBar 7s linear forwards;
}
@keyframes gisToastBar{ from{ transform:scaleX(1); } to{ transform:scaleX(0); } }

@media (max-width:520px){
  .gis-toast{ right:12px; left:12px; top:74px; width:auto; max-width:none; }
}
@media (prefers-reduced-motion: reduce){
  .gis-toast{ transition:opacity .01s linear; transform:none; }
  .gis-toast.is-in{ transform:none; }
  .gis-toast-bar{ animation:none; }
}
