/* ============================================
   LLUME — Premium Modern Website v3
   White + Navy Blue · Gold Accent · Sharp Geometry
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors — clean light palette */
  --color-bg-dark: #1a2350;
  --color-bg-dark-alt: #162045;
  --color-bg-dark-card: #1e2a58;
  --color-bg-light: #ffffff;
  --color-bg-light-alt: #f7f7f5;
  --color-bg-warm: #faf9f6;
  --color-gold: #b8972e;
  --color-gold-light: #d4af37;
  --color-gold-dark: #96790f;
  --color-gold-muted: #a68b38;
  --color-white: #ffffff;
  --color-white-pure: #ffffff;
  --color-text-dark: #1a1a1e;
  --color-text-light: #f0f0f0;
  --color-text-muted-light: #8e8e96;
  --color-text-muted-dark: #6a6a72;
  --color-text-body: #3d3d44;
  --color-border-gold: rgba(184, 151, 46, 0.2);
  --color-border-light: rgba(0, 0, 0, 0.06);
  --color-border-dark: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 140px;
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --t-fast: 0.25s;
  --t-base: 0.5s;
  --t-slow: 0.8s;
  --t-elegant: 1s;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__mark {
  width: 48px;
  height: 48px;
  animation: loader-breathe 1.8s ease-in-out infinite;
}

.page-loader__bar {
  width: 120px;
  height: 2px;
  background: rgba(184, 151, 46, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.page-loader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
  border-radius: 2px;
  animation: loader-slide 1.2s ease-in-out infinite;
  transform-origin: left;
}

@keyframes loader-breathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Lenis smooth scroll overrides */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-light);
  color: var(--color-text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { list-style: none; }

/* --- Container --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }
.container--wide { max-width: var(--container-wide); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }

.text-gold {
  color: var(--color-gold);
}

.text-gold-italic {
  color: var(--color-gold);
  font-style: italic;
}

.text-center { text-align: center; }

/* --- Color Utilities --- */
.text-white { color: var(--color-text-dark); }
.text-dark { color: var(--color-text-dark); }
.text-muted-light { color: var(--color-text-muted-dark); }
.text-muted-dark { color: var(--color-text-muted-dark); }

/* Keep light text inside dark CTA / footer sections */
.cta-section--dark .text-white { color: var(--color-white); }
.cta-section--dark .text-muted-light { color: var(--color-text-muted-light); }
.footer .text-white { color: var(--color-white); }
.footer .text-muted-light { color: var(--color-text-muted-light); }

/* Gold accent on navy dark sections */
.footer .footer__heading { color: var(--color-gold); }
.footer .footer__link:hover { color: var(--color-gold-light); }
.footer .footer__legal a:hover { color: var(--color-gold-light); }
.cta-section--dark .section__label { color: var(--color-gold); }
.cta-section--dark .text-gold-italic { color: var(--color-gold); font-style: italic; }

.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.w-full { width: 100%; justify-content: center; }

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Base --- */
.section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--color-bg-warm);
  color: var(--color-text-dark);
}

.section--dark-alt {
  background: var(--color-bg-light-alt);
  color: var(--color-text-dark);
}

.section--navy {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--navy .section__label { color: var(--color-gold); }
.section--navy .section__title { color: var(--color-white); }
.section--navy .section__subtitle { color: var(--color-text-muted-light); }
.section--navy .divider { background: var(--color-gold); }

/* Navy section component overrides */
.section--navy .why-layout__left p,
.section--navy .why-layout__left .section__subtitle { color: var(--color-text-muted-light); }
.section--navy .why-item__title { color: var(--color-white); }
.section--navy .why-item__text { color: var(--color-text-muted-light); }
.section--navy .why-item__icon { color: var(--color-gold); border-color: rgba(184, 151, 46, 0.25); }
.section--navy .why-item:hover .why-item__icon { background: rgba(184, 151, 46, 0.1); }
.section--navy .value-card { background: var(--color-bg-dark-alt); border-color: rgba(255, 255, 255, 0.06); }
.section--navy .value-card:hover { background: rgba(255, 255, 255, 0.05); }
.section--navy .value-card__title { color: var(--color-white); }
.section--navy .value-card__text { color: var(--color-text-muted-light); }
.section--navy .value-card__icon { color: var(--color-gold); border-color: rgba(184, 151, 46, 0.25); }
.section--navy .value-card:hover .value-card__icon { background: rgba(184, 151, 46, 0.1); }
.section--navy .step { border-color: rgba(255, 255, 255, 0.08); }
.section--navy .step:last-child { border-color: rgba(255, 255, 255, 0.08); }
.section--navy .step:hover { background: rgba(255, 255, 255, 0.04); }
.section--navy .step__number { color: rgba(184, 151, 46, 0.5); }
.section--navy .step__title { color: var(--color-white); }
.section--navy .step__text { color: var(--color-text-muted-light); }
.section--navy .contact-card { background: var(--color-bg-dark-alt); }
.section--navy .contact-card:hover { background: rgba(255, 255, 255, 0.05); }
.section--navy .contact-card__title { color: var(--color-gold); }
.section--navy .contact-card__text { color: var(--color-text-muted-light); }
.section--navy .contact-card__text a { color: var(--color-gold); }
.section--navy .contact-card__text a:hover { color: var(--color-gold-light); }
.section--navy .contact-card__icon { border-color: rgba(184, 151, 46, 0.25); color: var(--color-gold); }
.section--navy .contact-card:hover .contact-card__icon { background: rgba(184, 151, 46, 0.1); border-color: var(--color-gold); }

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--light-alt {
  background: var(--color-bg-light-alt);
  color: var(--color-text-dark);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: inline-block;
}

.section__title { margin-bottom: 24px; }

.section__subtitle {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 600px;
  opacity: 0.7;
}

.section__subtitle--center { margin: 0 auto; }

.section__header { margin-bottom: 80px; }

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 28px 0;
  opacity: 0.6;
}

.divider--center { margin-left: auto; margin-right: auto; }

.hr-gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0;
  opacity: 0.2;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out-expo);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #ffffff;
  font-weight: 600;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 151, 46, 0.35), 0 0 80px rgba(184, 151, 46, 0.1);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid rgba(184, 151, 46, 0.4);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 151, 46, 0.15);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid rgba(26, 20, 8, 0.25);
}

.btn--outline-dark:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  transform: translateY(-3px);
}

.btn__arrow { transition: transform var(--t-fast); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.header__logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.header__logo:hover { opacity: 0.8; }

/* Center nav links absolutely */
.nav__pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  padding: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(26, 26, 30, 0.5);
  transition: color 0.2s;
}

.nav__link::after { display: none; }

.nav__link:hover {
  color: var(--color-text-dark);
}

.nav__link--active {
  color: var(--color-gold);
}

/* CTA */
.nav__cta {
  margin-left: 40px;
  padding: 10px 28px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  flex-shrink: 0;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav__toggle--active .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle--active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle--active .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Full-screen mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay__link {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: rgba(26, 26, 30, 0.5);
  padding: 16px 0;
  transition: color 0.2s;
}

.nav-overlay__link:hover {
  color: var(--color-gold);
}

.nav-overlay__cta {
  margin-top: 32px;
  padding: 14px 48px !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out-expo), background 0.3s, border-color 0.3s;
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg-light);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-transition-overlay--active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO SECTION — Full viewport, gold glow
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--color-bg-warm);
  overflow: hidden;
}

/* Ambient gold glow behind hero */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  animation: glowFadeIn 2s var(--ease-out-expo) forwards;
}

.hero__glow--1 {
  width: 800px;
  height: 800px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(184, 151, 46, 0.12) 0%, transparent 70%);
  animation-delay: 0.3s;
}

.hero__glow--2 {
  width: 600px;
  height: 600px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(184, 151, 46, 0.08) 0%, transparent 70%);
  animation-delay: 0.6s;
}

.hero__glow--3 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(184, 151, 46, 0.06) 0%, transparent 70%);
  animation-delay: 0.9s;
}

/* Geometric gold lines overlay */
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(30deg, var(--color-gold) 1px, transparent 1px),
    linear-gradient(150deg, var(--color-gold) 1px, transparent 1px);
  background-size: 200px 200px;
  animation: linesShift 25s linear infinite;
}

/* Floating particles (gold dust) */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s;   animation-duration: 9s;  }
.particle:nth-child(2)  { left: 20%; top: 60%; animation-delay: 1.5s; animation-duration: 7s;  }
.particle:nth-child(3)  { left: 35%; top: 30%; animation-delay: 3s;   animation-duration: 10s; }
.particle:nth-child(4)  { left: 50%; top: 70%; animation-delay: 0.8s; animation-duration: 8s;  }
.particle:nth-child(5)  { left: 65%; top: 15%; animation-delay: 2.2s; animation-duration: 11s; }
.particle:nth-child(6)  { left: 75%; top: 55%; animation-delay: 4s;   animation-duration: 7.5s; }
.particle:nth-child(7)  { left: 85%; top: 35%; animation-delay: 1s;   animation-duration: 9.5s; }
.particle:nth-child(8)  { left: 90%; top: 80%; animation-delay: 2.8s; animation-duration: 8.5s; }
.particle:nth-child(9)  { left: 5%;  top: 85%; animation-delay: 3.5s; animation-duration: 10.5s;}
.particle:nth-child(10) { left: 45%; top: 45%; animation-delay: 0.5s; animation-duration: 12s; }
.particle:nth-child(11) { left: 55%; top: 10%; animation-delay: 1.8s; animation-duration: 6.5s; }
.particle:nth-child(12) { left: 30%; top: 90%; animation-delay: 4.5s; animation-duration: 9s;  }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 32px;
}

.hero__title {
  color: var(--color-text-dark);
  margin-bottom: 32px;
  line-height: 1.08;
}

.hero__title .text-gold-italic {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--color-text-muted-dark);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   STATS BAR — Premium dark with gold accents
   ============================================ */
.stats-section {
  padding: 0;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

/* Top & bottom gold lines */
.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--color-gold) 50%, transparent 95%);
  opacity: 0.25;
}
.stats-section::before { top: 0; }
.stats-section::after { bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat {
  padding: 72px 24px;
  position: relative;
  transition: background 0.4s var(--ease-out-expo);
}

.stat:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Vertical divider between stats */
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 151, 46, 0.25), transparent);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* 2×2 grid variant */
.stats--2x2 {
  grid-template-columns: 1fr 1fr;
}

/* ============================================
   SERVICES (What We Do) — Dark section
   ============================================ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-intro__left .section__title {
  color: var(--color-text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 60px;
}

.service-card {
  background: var(--color-bg-light);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow) var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(184, 151, 46, 0.06) 0%, transparent 100%);
  transition: height var(--t-slow) var(--ease-out-expo);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  background: var(--color-bg-warm);
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(184, 151, 46, 0.3);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
  transition: color var(--t-base);
}

.service-card:hover .service-card__number {
  color: rgba(184, 151, 46, 0.5);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted-dark);
  line-height: 1.8;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: gap var(--t-fast), opacity var(--t-fast);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-base) var(--ease-out-expo);
}

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

.service-card__link:hover { gap: 14px; }

/* ============================================
   INDUSTRIES — Light section
   ============================================ */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.industry-tag {
  padding: 16px 32px;
  border: 1px solid var(--color-border-dark);
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
  transition: all var(--t-base) var(--ease-out-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 151, 46, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.industry-tag:hover::before { opacity: 1; }

.industry-tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 151, 46, 0.12);
}

/* ============================================
   WHY LLUME — Dark section, 2-col layout
   ============================================ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-layout__left .section__title {
  color: var(--color-text-dark);
}

.why-layout__left .section__subtitle {
  color: var(--color-text-muted-dark);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--t-base) var(--ease-out-expo);
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }

.why-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  margin-top: 2px;
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-item__text {
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.cta-section--light {
  background: var(--color-bg-light);
}

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 151, 46, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__title {
  margin-bottom: 24px;
}

.cta-section__text {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.9;
  opacity: 0.7;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 36px 0;
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee__inner {
  display: inline-flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(212, 175, 55, 0.7);
  display: flex;
  align-items: center;
  gap: 48px;
  font-style: italic;
}

.marquee__item::after {
  content: '◆';
  font-size: 0.45rem;
  color: var(--color-gold);
  opacity: 0.4;
  font-style: normal;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  border-top: none;
  padding: 80px 0 40px;
  color: var(--color-text-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Invert logo text for dark footer */
.footer .header__logo {
  filter: brightness(0) invert(1);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  margin-bottom: 14px;
  transition: color var(--t-fast);
}

.footer__link:hover { color: var(--color-gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--color-text-muted-light);
  opacity: 0.6;
}

.footer__legal {
  display: flex;
  gap: 28px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--color-text-muted-light);
  opacity: 0.6;
  transition: all var(--t-fast);
}

.footer__legal a:hover { color: var(--color-gold); opacity: 1; }

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.page-hero__glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 151, 46, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.page-hero__title {
  color: var(--color-text-dark);
  max-width: 700px;
  margin-bottom: 24px;
}

.page-hero__text {
  font-size: 1.1rem;
  color: var(--color-text-muted-dark);
  max-width: 580px;
  line-height: 1.9;
}

/* Centered page hero variant */
.page-hero--center {
  text-align: center;
}

.page-hero--center .page-hero__title,
.page-hero--center .page-hero__text {
  margin-left: auto;
  margin-right: auto;
}

/* Navy page hero variant */
.page-hero--navy {
  background: var(--color-bg-dark);
}
.page-hero--navy .page-hero__glow {
  background: radial-gradient(circle, rgba(184, 151, 46, 0.08) 0%, transparent 65%);
}
.page-hero--navy .page-hero__label { color: var(--color-gold); }
.page-hero--navy .page-hero__title { color: var(--color-white); }
.page-hero--navy .page-hero__text { color: var(--color-text-muted-light); }

/* ============================================
   SERVICE DETAIL (Services page) — 3-col Grid
   ============================================ */
.sd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sd-card {
  background: var(--color-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.sd-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.5s var(--ease-out-expo);
}

.sd-card:hover {
  border-color: rgba(184, 151, 46, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(184, 151, 46, 0.06);
  transform: translateY(-6px);
}

.sd-card:hover::after {
  width: 100%;
}

.sd-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
  transition: opacity 0.3s;
}

.sd-card:hover .sd-card__number {
  opacity: 0.6;
}

.sd-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.sd-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sd-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-card__list li {
  font-size: 0.82rem;
  color: var(--color-text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sd-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.4;
  transition: opacity 0.2s;
}

.sd-card:hover .sd-card__list li::before {
  opacity: 0.8;
}

/* Navy variant for accent cards */
.sd-card--navy {
  background: var(--color-bg-dark);
  border-color: rgba(255, 255, 255, 0.08);
}
.sd-card--navy .sd-card__number { color: var(--color-gold); opacity: 0.5; }
.sd-card--navy .sd-card__title { color: var(--color-white); }
.sd-card--navy .sd-card__text { color: var(--color-text-muted-light); }
.sd-card--navy .sd-card__list { border-top-color: rgba(255, 255, 255, 0.08); }
.sd-card--navy .sd-card__list li { color: rgba(255, 255, 255, 0.7); }
.sd-card--navy .sd-card__list li::before { background: var(--color-gold); opacity: 0.6; }
.sd-card--navy:hover {
  border-color: rgba(184, 151, 46, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(184, 151, 46, 0.1);
}

.service-detail__visual {
  aspect-ratio: 4/3;
  background: var(--color-bg-light-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 151, 46, 0.04), transparent 60%);
}

.service-detail__visual-icon { color: rgba(184, 151, 46, 0.18); }

/* ============================================
   CONTACT FORM
   ============================================ */
.form { max-width: 640px; }

.form__group { margin-bottom: 28px; }

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 18px 20px;
  background: var(--color-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--t-fast);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--color-gold);
  background: var(--color-bg-light);
  box-shadow: 0 0 0 3px rgba(184, 151, 46, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted-dark);
  opacity: 0.5;
}

.form__textarea { min-height: 160px; resize: vertical; }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c8a84e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__select option {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 80px;
}

.contact-card {
  padding: 44px 32px;
  text-align: center;
  background: var(--color-bg-light);
  transition: all var(--t-base) var(--ease-out-expo);
}

.contact-card:hover {
  background: var(--color-bg-warm);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 151, 46, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-gold);
  transition: all var(--t-base);
}

.contact-card:hover .contact-card__icon {
  background: rgba(184, 151, 46, 0.08);
  border-color: var(--color-gold);
}

.contact-card__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.contact-card__text {
  font-size: 0.92rem;
  color: var(--color-text-muted-dark);
}

.contact-card__text a {
  color: var(--color-gold);
  transition: color 0.2s;
}

.contact-card__text a:hover {
  color: var(--color-gold-light);
}

/* Calendly embed */
.calendly-section__header {
  margin-bottom: 40px;
  text-align: center;
}

.calendly-section__header .section__subtitle {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.calendly-embed {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

/* Contact form feature list */
.contact-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Legal page body section */
.legal-section {
  padding: var(--section-py) 0;
}

/* ============================================
   ABOUT — Values grid
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.value-card {
  padding: 52px 36px;
  text-align: center;
  background: var(--color-bg-light);
  transition: all var(--t-slow) var(--ease-out-expo);
}

.value-card:hover {
  background: var(--color-bg-warm);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184, 151, 46, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-gold);
  transition: all var(--t-base);
}

.value-card:hover .value-card__icon {
  background: rgba(184, 151, 46, 0.08);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.value-card__title {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.value-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  line-height: 1.8;
}

/* ============================================
   ABOUT — How We Work
   ============================================ */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  padding: 40px 44px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: none;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: all var(--t-base) var(--ease-out-expo);
  background: var(--color-bg-light);
}

.step:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }

.step:hover { background: var(--color-bg-warm); }

/* Light theme variant for steps on light sections */
.steps--light .step {
  background: var(--color-bg-light);
  border-color: var(--color-border-dark);
}
.steps--light .step__number { color: rgba(184, 151, 46, 0.3); }
.steps--light .step__title { color: var(--color-text-dark); }
.steps--light .step__text { color: var(--color-text-muted-dark); }
.steps--light .step:hover { background: rgba(184, 151, 46, 0.06); }

.step__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: rgba(184, 151, 46, 0.3);
  flex-shrink: 0;
  line-height: 1;
  min-width: 48px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--color-text-muted-dark);
  line-height: 1.8;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--t-elegant) var(--ease-out-expo),
              transform var(--t-elegant) var(--ease-out-expo);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }

.reveal--left { transform: translateX(-50px); }
.reveal--left.reveal--visible { transform: translateX(0); }

.reveal--right { transform: translateX(50px); }
.reveal--right.reveal--visible { transform: translateX(0); }

.reveal--scale { transform: scale(0.92); }
.reveal--scale.reveal--visible { transform: scale(1); }

/* Stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal-children--visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(2) { transition-delay: 0.1s;  opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(4) { transition-delay: 0.2s;  opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(6) { transition-delay: 0.3s;  opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-children--visible > *:nth-child(8) { transition-delay: 0.4s;  opacity: 1; transform: translateY(0); }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes glowFadeIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes linesShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(200px, 200px); }
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: 0.6; }
  50%  { opacity: 0.3; transform: translateY(-100px) scale(0.5); }
  85%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================
   LEGAL CONTENT — Privacy, Legal, Cookies
   ============================================ */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin: 48px 0 16px;
  font-weight: 600;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin: 28px 0 12px;
  font-weight: 600;
}

.legal-content p {
  color: var(--color-text-muted-dark);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
  color: var(--color-text-muted-dark);
  line-height: 2;
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--color-gold-light);
}

.legal-content strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; gap: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 60px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sd-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }

  .nav__pill { display: none; }
  .nav__cta:not(.nav-overlay .btn) { display: none; }
  .nav__toggle { display: flex; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .hero { padding: 100px 24px 60px; }
  .hero__actions { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .section__header { margin-bottom: 48px; }
  .page-hero { padding: 150px 0 60px; }

  .sd-grid { grid-template-columns: 1fr; }

  .industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .industry-tag {
    text-align: center;
    padding: 14px 12px;
  }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; }
  h1 { font-size: 2.6rem; }
  .hero__description { font-size: 0.95rem; }
  .stat__number { font-size: 2rem; }
}

