/* ════════════════════════════════════════════════════════════════
   ORYGGEN — styles.css
   Tokens → Reset → Layout → Nav → Hero → Sections → Footer → Responsive
════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors — extracted from ORYGGEN logo */
  --white:      #FFFFFF;
  --off:        #F5F7F9;
  --ink:        #0B0D10;
  --dark:       #0D1822;        /* deep navy-blue, logo's dark tone */
  --muted:      #6B7280;
  --border:     #DDE3E9;
  --orange:     #C8222A;        /* ORYGGEN logo red */
  --orange-lt:  rgba(200, 34, 42, 0.08);
  --orange-md:  rgba(200, 34, 42, 0.20);
  --steel:      #4B8CAA;        /* logo blue geometric shape */
  --steel-lt:   rgba(75, 140, 170, 0.14);
  --steel-md:   rgba(75, 140, 170, 0.30);

  /* Typography */
  --font:       'Montserrat', system-ui, -apple-system, sans-serif;
  --fs-xs:      11px;
  --fs-sm:      13px;
  --fs-base:    16px;
  --fs-lg:      18px;
  --fs-xl:      clamp(28px, 4vw, 48px);
  --fs-2xl:     clamp(28px, 4.4vw, 58px);
  --fs-hero:    clamp(28px, 4.4vw, 58px);

  /* Spacing */
  --sp-1:   8px;
  --sp-2:   16px;
  --sp-3:   24px;
  --sp-4:   32px;
  --sp-5:   48px;
  --sp-6:   64px;
  --sp-7:   96px;
  --sp-8:   128px;
  --sp-section: clamp(80px, 10vw, 160px);

  /* Effects */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.30, 0.64, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);
  --shadow-or: 0 8px 32px rgba(200,34,42,.25);

  /* Layout */
  --max-w: 1280px;
  --nav-h: 68px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}


/* ── 2. RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: var(--fs-base);
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: none; }
address { font-style: normal; }
::selection { background: var(--orange); color: #fff; }


/* ── 3. CURSOR ────────────────────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.28s var(--ease),
    height 0.28s var(--ease),
    background 0.28s,
    opacity 0.2s;
  mix-blend-mode: difference;
  will-change: transform;
}

#cursor.is-hover { width: 48px; height: 48px; }
#cursor.is-dark  { background: var(--white); }


/* ── 4. SCROLL PROGRESS ───────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  z-index: 9000;
  pointer-events: none;
  transition: width 0.06s linear;
}


/* ── 5. LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.section {
  padding: var(--sp-section) 0;
}

.text-accent { color: var(--orange); }


/* ── 6. SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal       { transform: translateY(36px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* Staggered delay via inline --d variable */
.reveal[style],
.reveal-left[style],
.reveal-right[style] {
  transition-delay: var(--d, 0ms);
}


/* ── 7. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.26s var(--spring),
    box-shadow 0.26s,
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
  cursor: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Shine sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-110%);
  transition: transform 0.45s var(--ease);
}

.btn:hover::after { transform: translateX(0); }
.btn svg { flex-shrink: 0; transition: transform 0.22s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

/* Primary */
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-or);
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 14px 40px rgba(200, 34, 42, 0.45);
}

/* Ghost on dark */
.btn-ghost-dark {
  border: 1.5px solid rgba(75, 140, 170, 0.35);
  color: var(--steel);
}
.btn-ghost-dark:hover {
  border-color: var(--steel);
  color: var(--ink);
  transform: scale(1.03);
}

/* Ghost on light */
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.03);
}

/* Full width */
.btn-full { width: 100%; justify-content: center; }


/* ── 8. SECTION LABELS / HEADERS ──────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-3);
}

.section-label.light { color: rgba(255,255,255,0.45); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.section-title {
  font-size: var(--fs-2xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--sp-3);
}

.section-sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   9. NAVIGATION
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  height: var(--nav-h);
  background: rgba(238, 244, 250, 0.80);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(75, 140, 170, 0.12);
  transition:
    background 0.4s var(--ease),
    border-bottom-color 0.4s,
    box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(75, 140, 170, 0.08);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.brand-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.3s;
}

#navbar.scrolled .brand-name { color: var(--ink); }

/* Real logo image — always original colors */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover       { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

#navbar.scrolled .nav-links a        { color: var(--muted); }
#navbar.scrolled .nav-links a:hover  { color: var(--ink); }

/* CTA nav button */
.nav-cta {
  padding: 10px 24px !important;
  border-radius: 100px;
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(200, 34, 42, 0.32);
  transition: transform 0.25s var(--spring), box-shadow 0.25s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover  {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(200, 34, 42, 0.5) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

#navbar.scrolled .nav-hamburger span { background: var(--ink); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  pointer-events: none;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile ul {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  display: block;
  padding: var(--sp-2) 0;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--orange); }


/* ══════════════════════════════════════════════════════════════
   10. HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: #EEF4FA;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) 0 0;
  position: relative;
  overflow: hidden;
}

/* Plexus canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Tech blueprint grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75, 140, 170, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 140, 170, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Subtle color washes on light bg */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 85% 15%, rgba(75, 140, 170, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 10% 90%, rgba(200, 34, 42, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,255,255, 0.60) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero entry animation */
.animate-entry {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) both;
  animation-delay: var(--d, 0ms);
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  padding: var(--sp-8) var(--sp-5) var(--sp-6);
  position: relative;
  z-index: 2;
}

/* Hero content */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--sp-3);
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.hero-headline {
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--sp-5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Schematic card mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.schematic-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.schematic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 56px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 34, 42, 0.12);
}

.sch-header {
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.sch-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.sch-dot.red    { background: #FF5F57; }
.sch-dot.yellow { background: #FEBC2E; }
.sch-dot.green  { background: #28C840; }

.sch-title {
  margin-left: var(--sp-1);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

.sch-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(200, 34, 42, 0.12);
  border: 1px solid rgba(200, 34, 42, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.sch-body {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.sch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.sch-blueprint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-main {
  position: absolute;
  width: 42%;
  height: 42%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.bp-annex-a {
  position: absolute;
  width: 18%;
  height: 22%;
  border: 1.5px solid rgba(200, 34, 42, 0.45);
  background: rgba(200, 34, 42, 0.04);
  left: calc(50% - 21% - 18%);
  top: calc(50% - 11%);
}

.bp-annex-b {
  position: absolute;
  width: 14%;
  height: 18%;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  right: calc(50% - 21% - 14%);
  bottom: calc(50% - 21% - 18%);
}

.bp-line-h {
  position: absolute;
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.bp-line-v {
  position: absolute;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.08);
}

.bp-dim-h {
  position: absolute;
  bottom: 18%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: rgba(200, 34, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-dim-h::before,
.bp-dim-h::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 8px;
  background: rgba(200, 34, 42, 0.4);
}
.bp-dim-h::before { left: 0; }
.bp-dim-h::after  { right: 0; }

.bp-dim-h span,
.bp-dim-v span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(200, 34, 42, 0.7);
  background: var(--dark);
  padding: 0 6px;
  letter-spacing: 0.06em;
}

.bp-dim-v {
  position: absolute;
  right: 12%;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(200, 34, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-dim-v span {
  writing-mode: vertical-rl;
}

.bp-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(200, 34, 42, 0.5);
}
.bp-node.n1 { top: 29%; left: 29%; }
.bp-node.n2 { top: 29%; left: 71%; transform: translate(-50%, -50%); }
.bp-node.n3 { top: 71%; left: 29%; transform: translate(-50%, -50%); }
.bp-node.n4 { top: 71%; left: 71%; transform: translate(-50%, -50%); }

.sch-footer {
  height: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

.sch-progress { display: flex; align-items: center; gap: 6px; color: rgba(200, 34, 42, 0.65); }

.prog-bar {
  display: inline-block;
  width: 52px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.prog-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 68%;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Hero real photo frame ── */
.hero-photo-frame {
  width: 100%;
  max-width: 540px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 60px rgba(200, 34, 42, 0.10);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.hero-photo-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(200, 34, 42, 0.18),
    0 0 80px rgba(200, 34, 42, 0.14);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.4s;
}

.hero-photo-frame:hover .hero-photo {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

/* Gradient overlay on bottom */
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 22, 32, 0.55) 0%, transparent 45%);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(19, 22, 32, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

/* Stats strip */
.hero-stats {
  border-top: 1px solid rgba(75, 140, 170, 0.18);
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: var(--sp-4) 0;
}

.stat-item strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  background: rgba(75, 140, 170, 0.15);
  align-self: stretch;
}


/* ══════════════════════════════════════════════════════════════
   11. SERVICES SECTION
══════════════════════════════════════════════════════════════ */
.section-services {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* slide9.jpg background */
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/construction-evening.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.section-services .container {
  position: relative;
  z-index: 1;
}

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-7) 0;
  align-items: start;
}

.svc-num-badge {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  padding-top: 8px;
  transition: color 0.3s;
}

.service-block:hover .svc-num-badge { color: var(--orange-md); }

.service-block.service-block-alt { background: var(--off); border-radius: var(--radius); padding: var(--sp-7) var(--sp-6); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.service-content h3 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}

.svc-desc {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: var(--sp-5);
}

/* Tier cards */
.service-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

.tier {
  background: var(--off);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tier:hover {
  border-color: rgba(200, 34, 42, 0.3);
  box-shadow: var(--shadow-sm);
}

.tier h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
  color: var(--ink);
}

.tier ul { display: flex; flex-direction: column; gap: 6px; }

.tier li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* Inline service photo */
.svc-inline-photo {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: var(--sp-4) 0;
  max-height: 300px;
}

.svc-inline-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.88);
  transition: transform 0.6s var(--ease), filter 0.4s;
}

.svc-inline-photo:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

/* Management grid */
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.mgmt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  padding: var(--sp-2) var(--sp-2);
  background: var(--white);
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  transition: border-color 0.25s, color 0.25s;
}

.mgmt-item:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.mgmt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0;
}

/* Services photo strip */
.service-photo-strip {
  width: 100%;
  max-height: 360px;
  border-radius: 10px;
  overflow: hidden;
  margin: var(--sp-4) 0;
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.service-photo-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.6s var(--ease), filter 0.4s;
}

.service-photo-strip:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}


/* ══════════════════════════════════════════════════════════════
   12. INDUSTRIES
══════════════════════════════════════════════════════════════ */
.section-industries {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

/* Parallax image container — moved by JS */
.section-industries .parallax-bg {
  position: absolute;
  inset: -20%;          /* extra height for parallax travel */
  background-image: url('../images/slide5.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* Dark overlay so text stays readable */
.section-industries .parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 16, 0.72);
  z-index: 1;
  pointer-events: none;
}

.section-industries .container {
  position: relative;
  z-index: 2;
}

.section-industries .section-title { color: var(--white); }
.section-industries .section-label { color: rgba(255,255,255,0.4); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: var(--sp-5) var(--sp-4);
  border-radius: 0;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.45s var(--ease);
}

.industry-card:hover {
  background: rgba(200, 34, 42, 0.06);
  border-color: rgba(200, 34, 42, 0.25);
  transform: translateY(-4px);
}

.industry-card:hover::before { width: 100%; }

.ind-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  transition: background 0.3s;
}

.industry-card:hover .ind-icon {
  background: rgba(200, 34, 42, 0.15);
}

.ind-icon svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255, 255, 255, 0.55);
  transition: stroke 0.3s;
}

.industry-card:hover .ind-icon svg { stroke: var(--orange); }

.industry-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.industry-card p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════
   13. IMAGE CAROUSEL
══════════════════════════════════════════════════════════════ */
.section-carousel {
  width: 100%;
  overflow: hidden;
  line-height: 0;   /* remove inline-block gap */
}

.carousel {
  position: relative;
  width: 100%;
  height: clamp(320px, 52vw, 680px);
  background: var(--ink);
  overflow: hidden;
}

/* Slides */
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Ken Burns subtle zoom on active */
  transform: scale(1.06);
  transition: transform 5s var(--ease);
}

.carousel-slide.active img {
  transform: scale(1);
}

/* Gradient overlays top + bottom */
.carousel::before,
.carousel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.carousel::before {
  top: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(11,13,16,0.45), transparent);
}
.carousel::after {
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(11,13,16,0.45), transparent);
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s var(--spring),
    border-color 0.25s;
}

.carousel-btn:hover {
  background: rgba(200, 34, 42, 0.75);
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s var(--spring), width 0.3s;
}

.carousel-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
  transform: none;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.2);
}


/* ══════════════════════════════════════════════════════════════
   14. DIFERENCIAL
══════════════════════════════════════════════════════════════ */
.section-diferencial {
  background: var(--off);
}

.diferencial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.diferencial-left { position: sticky; top: calc(var(--nav-h) + 32px); }

/* Diferencial team photo */
.diferencial-photo-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.diferencial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.88);
  transition: transform 0.6s var(--ease), filter 0.4s;
}

.diferencial-photo-wrap:hover .diferencial-photo {
  transform: scale(1.03);
  filter: saturate(1);
}

.diferencial-title {
  font-size: clamp(28px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--sp-4);
}

.diferencial-body {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  max-width: 480px;
}

.diferencial-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-3);
  align-items: start;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}

.diff-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(200, 34, 42, 0.08);
  transform: translateX(4px);
}

.diff-num {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
  padding-top: 3px;
}

.diff-card h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}

.diff-card p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
  grid-column: 2 / -1;
}


/* ══════════════════════════════════════════════════════════════
   15. CONTACT
══════════════════════════════════════════════════════════════ */
.section-contact {
  background: #1A3A52;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.contact-left { position: sticky; top: calc(var(--nav-h) + 32px); }

.contact-title {
  font-size: clamp(28px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.0;
  margin-bottom: var(--sp-4);
}

.contact-body {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  max-width: 400px;
}

.contact-info { display: flex; flex-direction: column; gap: var(--sp-3); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.contact-info-item:hover { color: var(--orange); }

.contact-info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: var(--fs-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xs);
  padding: 13px 16px;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group select option { background: var(--dark); color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.22); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(200, 34, 42, 0.05);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #FF4545; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: -var(--sp-1);
}


/* ══════════════════════════════════════════════════════════════
   16. FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #0F2535;
  border-top: 1px solid rgba(75, 140, 170, 0.18);
  padding: var(--sp-7) 0 var(--sp-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-3);
  transition: color 0.2s;
}

.footer-logo:hover { color: var(--white); }

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-logo:hover .footer-logo-img {
  opacity: 1;
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  max-width: 280px;
}

.footer-nav h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--sp-3);
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--orange); }

.footer-contact h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--sp-3);
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-contact a {
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: rgba(200, 34, 42, 0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--orange); }


/* ══════════════════════════════════════════════════════════════
   16. RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero-visual { display: none; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }

  .service-block,
  .service-block.service-block-alt { grid-template-columns: 1fr; gap: var(--sp-3); }
  .svc-num-badge { font-size: 48px; }

  .service-tiers { grid-template-columns: 1fr; }
  .mgmt-grid { grid-template-columns: 1fr 1fr; }

  .diferencial-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .diferencial-left,
  .contact-left { position: static; }

  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

@media (max-width: 600px) {
  .container { padding: 0 var(--sp-3); }
  .hero-inner { padding: var(--sp-6) var(--sp-3) var(--sp-4); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: var(--sp-4); }
  .form-row { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .mgmt-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════════════════════
   MICRO-INTERACTIONS
══════════════════════════════════════════════════════════════ */

/* ── Magnetic button wrapper ── */
.btn-magnetic {
  position: relative;
  display: inline-flex;
}

/* ── Button ripple ── */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.30);
  transform: scale(0);
  animation: ripple-expand 0.55s var(--ease) forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* ── Primary button: subtle pulse ring on load ── */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: pulse-ring 3s 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0%   { inset: -4px; opacity: 0.5; }
  100% { inset: -14px; opacity: 0; }
}

/* ── Industry card 3D tilt ── */
.industry-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Floating form labels ── */
.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: top 0.22s var(--ease), font-size 0.22s var(--ease), color 0.22s;
  background: transparent;
  z-index: 1;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label {
  top: -10px;
  font-size: 10px;
  color: var(--steel);
  background: #1A3A52;
  padding: 0 6px;
  left: 10px;
}

/* Ensure inputs have placeholder trick */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
  transition: color 0.2s;
}
.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Input focus glow ── */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(75, 140, 170, 0.18);
  outline: none;
}

/* ── Trust signals ── */
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--sp-4) 0 var(--sp-5);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
}

.trust-item svg {
  flex-shrink: 0;
  stroke: var(--steel);
}

/* ── Diff card hover lift ── */
.diff-card {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--spring);
}

.diff-card:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 34, 42, 0.10);
}

/* ── Section label animated underline ── */
.section-label::after {
  content: '';
  display: block;
  height: 1.5px;
  background: currentColor;
  width: 0;
  margin-top: 5px;
  transition: width 0.5s var(--ease);
  opacity: 0.45;
}

.in-view .section-label::after,
.section-label.label-visible::after {
  width: 100%;
}

/* ── Stat item hover ── */
.stat-item {
  transition: transform 0.3s var(--spring);
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item:hover strong {
  color: var(--orange);
}
