/* ============================================================
   GLOVERSE LABS — v5 FINAL
   Philosophy: Refined authority. Every value is intentional.
   Reference: Stripe, Linear, Vercel, Palantir
   Font: Barlow (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ── TOKENS ── */
:root {
  /* Colour */
  --black:     #0A0A0A;
  --black-2:   #111111;
  --black-3:   #1A1A1A;
  --white:     #FFFFFF;
  --grey:      #F4F4F2;
  --yellow:    #E3E02E;

  /* Text on dark */
  --d1: rgba(255,255,255,0.88);
  --d2: rgba(255,255,255,0.45);
  --d3: rgba(255,255,255,0.25);
  --d4: rgba(255,255,255,0.16);

  /* Text on light */
  --l1: #0A0A0A;
  --l2: #5A5A5A;
  --l3: rgba(0,0,0,0.35);
  --l4: rgba(0,0,0,0.2);

  /* Borders */
  --bd: rgba(255,255,255,0.08);
  --bl: rgba(0,0,0,0.08);

  /* Type scale — 6 sizes */
  --xs:   0.68rem;
  --sm:   0.84rem;
  --base: 0.95rem;
  --lg:   1.05rem;
  --xl:   1.4rem;
  --2xl:  2.4rem;

  /* Spacing */
  --max-w: 1100px;
  --r:     2px;

  /* Fonts */
  --fd: 'Barlow', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.75;
  color: var(--l1);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--fd);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.page-offset { padding-top: 68px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fb); font-size: var(--sm); font-weight: 600;
  padding: 13px 28px; border-radius: var(--r);
  transition: all 0.18s; cursor: pointer; white-space: nowrap; border: none;
}
.btn-primary  { background: var(--yellow); color: var(--black); border: 1.5px solid var(--yellow); }
.btn-primary:hover { background: #d4d11a; border-color: #d4d11a; }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost-light { background: transparent; color: var(--d2); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { color: var(--d1); border-color: rgba(255,255,255,0.4); }
.btn-ghost-dark  { background: transparent; color: var(--l2); border: 1px solid rgba(0,0,0,0.18); }
.btn-ghost-dark:hover  { color: var(--l1); border-color: rgba(0,0,0,0.4); }

/* ── LABELS ── */
.label, .section-label {
  display: block; font-family: var(--fb); font-size: var(--xs);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--l3); margin-bottom: 16px;
}
.label-light, .section-label-light {
  display: block; font-family: var(--fb); font-size: var(--xs);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--d3); margin-bottom: 16px;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black); border-bottom: 1px solid var(--bd);
  height: 68px; display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 40px rgba(0,0,0,0.6); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links li a,
.nav-links li button {
  font-family: var(--fb); font-size: var(--sm); font-weight: 500;
  color: var(--d3); padding: 8px 12px; border-radius: var(--r);
  transition: color 0.2s; background: none; border: none;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
}
.nav-links li a:hover, .nav-links li button:hover { color: var(--d1); }
.nav-links li a.active { color: var(--white); }
.nav-links li.nav-cta a {
  background: var(--yellow); color: var(--black);
  padding: 8px 18px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.01em; border-radius: var(--r);
}
.nav-links li.nav-cta a:hover { background: #d4d11a; }

/* Dropdown */
.chevron {
  display: inline-block; width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.2s;
}
.dropdown { position: relative; }
.dropdown.open .chevron { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--black-2); border: 1px solid var(--bd);
  min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.2s; z-index: 200;
}
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 11px 20px; font-size: var(--sm);
  font-weight: 500; color: var(--d2);
  border-bottom: 1px solid var(--bd); transition: all 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--white); background: var(--black-3); }
.dropdown-menu a.active { color: var(--yellow); }

/* Mobile nav */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--d2); transition: all 0.25s; }
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--black-2); border-bottom: 1px solid var(--bd);
  padding: 24px 28px 32px; z-index: 99; flex-direction: column; gap: 4px;
  max-height: calc(100vh - 68px); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.94rem; font-weight: 500; color: var(--d2);
  padding: 10px 0; border-bottom: 1px solid var(--bd); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-mobile-contact { font-size: var(--xs); color: var(--d4); letter-spacing: 0.08em; margin-bottom: 8px; border-bottom: none; }
.mobile-dropdown-toggle {
  font-size: 0.94rem; font-weight: 500; color: var(--d2);
  padding: 10px 0; border-bottom: 1px solid var(--bd);
  width: 100%; text-align: left; background: none;
  border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: var(--fb);
}
.nav-mobile-sub { display: none; flex-direction: column; padding-left: 16px; }
.nav-mobile-sub.open { display: flex; }
.nav-mobile-sub a { font-size: var(--sm); color: var(--d4); }
.nav-mobile-cta { margin-top: 16px; }
.nav-mobile-cta a {
  display: inline-block; background: var(--yellow); color: var(--black);
  padding: 11px 24px; font-weight: 700; font-size: var(--sm);
  border-bottom: none; border-radius: var(--r);
}

/* ── HOMEPAGE HERO ── */
.hero {
  background: var(--black); min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 32px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bd);
}
.hero::before {
  content: ''; position: absolute; top: -10%; left: 50%;
  transform: translateX(-50%); width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(227,224,46,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-label {
  display: block; font-family: var(--fb); font-size: var(--xs);
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--d4); margin-bottom: 40px;
}
.hero h1 {
  font-family: var(--fd); font-weight: 700; color: var(--white);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 40px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-body { max-width: 520px; margin: 0 auto 12px; font-size: var(--base); color: var(--d2); line-height: 1.8; }
.hero-body2 { max-width: 520px; margin: 0 auto 48px; font-size: var(--sm); color: var(--d3); line-height: 1.8; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--d4); }
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--d4), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--grey); border-bottom: 1px solid var(--bl); padding: 18px 32px; }
.trust-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: var(--xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--l4); white-space: nowrap; }
.trust-name { font-size: var(--sm); font-weight: 500; color: var(--l3); white-space: nowrap; }
.trust-sep { color: var(--bl); font-size: 1.2rem; line-height: 1; }
.trust-badge { font-size: var(--xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--l4); }

/* ── BRAND STATEMENT ── */
.statement { background: var(--white); padding: 140px 32px; text-align: center; border-bottom: 1px solid var(--bl); }
.statement-inner { max-width: 660px; margin: 0 auto; }
.statement-eyebrow { font-family: var(--fb); font-size: clamp(0.95rem, 2vw, 1.1rem); font-weight: 400; color: var(--l2); line-height: 1.7; margin-bottom: 28px; }
.statement-text { font-family: var(--fd); font-weight: 700; color: var(--black); font-size: clamp(2.6rem, 6.5vw, 5rem); letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 48px; }
.statement-body { font-size: var(--base); color: var(--l2); line-height: 1.85; margin-bottom: 14px; max-width: 540px; margin-left: auto; margin-right: auto; }
.statement-deploy { font-family: var(--fb); font-size: var(--base); font-weight: 600; color: var(--l1); line-height: 1.6; margin: 40px auto 10px; max-width: 540px; }
.statement-mission { font-family: var(--fb); font-size: var(--sm); font-weight: 700; color: var(--black); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 40px; }
.statement-link { font-size: var(--sm); font-weight: 600; color: var(--l3); border-bottom: 1px solid rgba(0,0,0,0.18); padding-bottom: 2px; transition: all 0.2s; }
.statement-link:hover { color: var(--l1); border-color: rgba(0,0,0,0.5); }

/* ── SOLUTIONS GRID ── */
.sol-section { background: var(--grey); border-bottom: 1px solid var(--bl); }
.sol-header { padding: 96px 32px 60px; max-width: var(--max-w); margin: 0 auto; }
.sol-header h2 { font-family: var(--fd); font-weight: 700; color: var(--l1); font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 18px; max-width: 620px; }
.sol-header-sub { font-size: var(--sm); color: var(--l2); line-height: 1.8; max-width: 480px; }
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--bl); }
.sol-card { padding: 52px 48px; border-right: 1px solid var(--bl); border-bottom: 1px solid var(--bl); position: relative; background: var(--white); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.sol-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.sol-card:nth-child(2n) { border-right: none; }
.sol-card:nth-child(3), .sol-card:nth-child(4) { border-bottom: none; }
.sol-card[data-num]::before { content: attr(data-num); position: absolute; top: 28px; right: 32px; font-family: var(--fd); font-size: var(--xs); font-weight: 700; letter-spacing: 0.1em; color: rgba(0,0,0,0.1); }
.sol-card h3 { font-family: var(--fd); font-weight: 700; color: var(--l1); font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px; }
.sol-card p { font-size: var(--sm); color: var(--l2); line-height: 1.8; margin-bottom: 28px; }
.sol-card-link { font-size: 0.82rem; font-weight: 600; color: var(--l1); border-bottom: 1px solid rgba(0,0,0,0.15); padding-bottom: 2px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.sol-card-link:hover { border-color: var(--l1); }
.sol-breadth { max-width: var(--max-w); margin: 0 auto; padding: 22px 32px 44px; font-size: var(--xs); color: var(--l3); line-height: 1.75; font-style: italic; border-top: 1px solid var(--bl); }

/* ── PROCESS ── */
.process-section { background: var(--white); border-bottom: 1px solid var(--bl); }
.process-header { padding: 96px 32px 60px; max-width: var(--max-w); margin: 0 auto; text-align: center; }
.process-header h2 { font-family: var(--fd); font-weight: 700; color: var(--l1); font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.process-header p { font-size: var(--sm); color: var(--l2); line-height: 1.8; max-width: 440px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--bl); max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.process-item { background: var(--grey); padding: 40px 28px 44px; transition: background 0.2s; }
.process-item:hover { background: var(--white); }
.process-num { font-family: var(--fd); font-size: var(--2xl); font-weight: 700; color: var(--yellow); letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; display: block; }
.process-item h4 { font-family: var(--fd); font-size: 0.95rem; font-weight: 700; color: var(--l1); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.process-item p { font-size: var(--sm); color: var(--l2); line-height: 1.8; }
.process-footer { padding: 44px 32px 72px; text-align: center; background: var(--white); }

/* ── CUSTOM SOLUTIONS (homepage) ── */
.custom-section { background: var(--black); padding: 120px 32px; border-bottom: 1px solid var(--bd); }
.custom-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.custom-inner h2 { font-family: var(--fd); font-weight: 700; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.025em; line-height: 1.1; margin-top: 16px; }
.custom-inner h2 em { font-style: normal; color: var(--yellow); }
.custom-body { font-size: var(--sm); color: var(--d2); line-height: 1.85; margin-bottom: 14px; }
.custom-pull { font-size: var(--sm); font-weight: 600; color: var(--d3); margin-bottom: 32px; line-height: 1.6; }
.custom-iiot { margin-top: 24px; padding: 20px 24px; border: 1px solid var(--bd); background: rgba(255,255,255,0.02); }
.custom-iiot-label { font-size: var(--xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); opacity: 0.65; margin-bottom: 8px; display: block; }
.custom-iiot p { font-size: var(--sm); color: var(--d3); line-height: 1.8; }

/* ── FINAL CTA ── */
.cta-final { background: var(--black); padding: 140px 32px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--bd); }
.cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(227,224,46,0.05) 0%, transparent 60%); pointer-events: none; }
.cta-final-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-final h2 { font-family: var(--fd); font-weight: 700; color: var(--white); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 24px; }
.cta-final h2 em { font-style: normal; color: var(--yellow); }
.cta-final p { font-size: var(--sm); color: var(--d3); line-height: 1.85; margin-bottom: 44px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── UNIVERSAL INNER-PAGE HERO ── */
/* ALL non-homepage pages use these exact rules */
.page-hero-wrap {
  background: var(--black);
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bd);
}
.page-hero-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 40%, rgba(227,224,46,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.page-hero-grid h1 {
  font-family: var(--fd); font-weight: 700; color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 0;
}
.page-hero-grid h1 em { font-style: normal; color: var(--yellow); }
.page-hero-body { font-size: var(--sm); color: var(--d2); line-height: 1.85; }
.page-hero-body p { margin-bottom: 14px; }
.page-hero-body p:last-child { margin-bottom: 0; }
/* Single column variant */
.page-hero-single {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-single h1 {
  font-family: var(--fd); font-weight: 700; color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.025em; line-height: 1.1;
  max-width: 720px; margin-bottom: 24px;
}
.page-hero-single h1 em { font-style: normal; color: var(--yellow); }
.page-hero-single .page-hero-body { max-width: 560px; }

/* ── SOL HERO (solution pages — keep for backward compat) ── */
.sol-hero { background: var(--black); padding: 120px 32px 100px; position: relative; overflow: hidden; border-bottom: 1px solid var(--bd); }
.sol-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 55% 40%, rgba(227,224,46,0.04) 0%, transparent 65%); pointer-events: none; }
.sol-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sol-hero h1 { font-family: var(--fd); font-weight: 700; color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.025em; line-height: 1.1; }
.sol-hero h1 em { font-style: normal; color: var(--yellow); }
.sol-hero-right p { font-size: var(--sm); color: var(--d2); line-height: 1.85; margin-bottom: 14px; }
.sol-stat-row { display: flex; margin-top: 32px; border-top: 1px solid var(--bd); padding-top: 28px; }
.sol-stat { flex: 1; padding-right: 20px; border-right: 1px solid var(--bd); margin-right: 20px; }
.sol-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.sol-stat-val { font-family: var(--fd); font-size: var(--xl); font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 5px; letter-spacing: -0.02em; }
.sol-stat-lbl { font-size: var(--xs); color: var(--d3); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── CONVICTION/CLOSING ── */
.conviction-section { background: var(--black); padding: 120px 32px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--bd); }
.conviction-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 450px; background: radial-gradient(ellipse, rgba(227,224,46,0.05) 0%, transparent 60%); pointer-events: none; }
.conviction-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.conviction-inner blockquote { font-family: var(--fd); font-weight: 700; color: var(--white); font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 22px; border: none; padding: 0; }
.conviction-inner blockquote em { font-style: normal; color: var(--yellow); }
.conviction-sub { font-size: var(--sm); color: var(--d3); margin-bottom: 36px; line-height: 1.8; max-width: 460px; margin-left: auto; margin-right: auto; }
.conviction-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PULL QUOTE ── */
.pull-quote { margin: 40px 0; padding: 28px 32px; background: var(--grey); border-left: 3px solid var(--black); }
.pull-quote p { font-family: var(--fb); font-size: var(--base); font-weight: 600; color: var(--l1); line-height: 1.6; }

/* ── BREADCRUMB ── */
.bc-bar { background: var(--black-2); padding: 13px 32px; border-bottom: 1px solid var(--bd); }
.bc-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 10px; font-size: var(--xs); color: var(--d4); }
.bc-inner a { color: var(--d3); transition: color 0.2s; }
.bc-inner a:hover { color: var(--yellow); }
.bc-sep { opacity: 0.2; }
.bc-current { color: var(--d2); }

/* ── FOOTER ── */
.footer { background: var(--black); border-top: 1px solid var(--bd); padding: 80px 32px 36px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--bd); }
.footer-brand p { font-size: var(--sm); color: var(--d4); line-height: 1.7; margin-top: 20px; }
.footer-col h4 { font-family: var(--fb); font-size: var(--xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--d4); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: var(--sm); color: var(--d3); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--d1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: var(--xs); color: var(--d4); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  :root { --max-w: 960px; }
}
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sol-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .custom-inner { grid-template-columns: 1fr; gap: 48px; }
  .sol-grid { grid-template-columns: 1fr; }
  .sol-card { border-right: none; }
  .sol-card:nth-child(3) { border-bottom: 1px solid var(--bl); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero { padding: 88px 24px; min-height: auto; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .statement { padding: 88px 24px; }
  .sol-header { padding: 72px 24px 48px; }
  .sol-card { padding: 44px 28px; }
  .process-header { padding: 72px 24px 48px; }
  .process-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .cta-final { padding: 88px 24px; }
  .cta-btns, .hero-ctas { flex-direction: column; align-items: center; }
  .footer { padding: 56px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero-wrap { padding: 88px 24px 80px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-grid h1, .page-hero-single h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .sol-hero { padding: 88px 24px 80px; }
  .sol-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .sol-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .custom-section { padding: 80px 24px; }
  .conviction-section { padding: 88px 24px; }
  .sol-stat-row { flex-wrap: wrap; gap: 16px; }
  .sol-stat { flex: 0 0 calc(50% - 8px); border-right: none; margin-right: 0; padding-right: 0; }
  .trust-strip { padding: 16px 24px; }
  .trust-sep { display: none; }
}
@media (max-width: 480px) {
  .hero-ctas, .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .cta-btns .btn { text-align: center; justify-content: center; }
  .sol-stat { flex: 0 0 100%; }
  .process-grid { grid-template-columns: 1fr; }
}
