/* ============================================================
   OLEG LOGIC INC. — Premium Design System v3
   Space Grotesk + Inter | GSAP | Lucide | Glassmorphism
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  /* Base palette */
  --base:         #07111F;
  --surface:      #0C1A2E;
  --surface-2:    #0F2040;
  --surface-3:    #152844;

  /* Brand */
  --gold:         #E8A020;
  --gold-light:   #F5C060;
  --gold-dim:     rgba(232, 160, 32, 0.15);
  --gold-glow:    rgba(232, 160, 32, 0.08);

  /* Text */
  --text:         #F0F4FA;
  --text-muted:   rgba(240, 244, 250, 0.55);
  --text-faint:   rgba(240, 244, 250, 0.30);

  /* Borders & glass */
  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(232, 160, 32, 0.30);
  --glass:        rgba(255, 255, 255, 0.04);
  --glass-hover:  rgba(255, 255, 255, 0.07);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(232,160,32,0.12);

  /* Transitions */
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t-fast:  0.18s;
  --t-med:   0.32s;
  --t-slow:  0.55s;

  /* Legacy compat vars */
  --ol-navy:    #0f2540;
  --ol-gold:    #E8A020;
  --ol-gold-lt: #F5C060;
  --ol-light:   #f4f7fb;
  --ol-text:    #1e2d40;
  --ol-blue:    #1a4a8a;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--text-muted); line-height: 1.75; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.75;
}

.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted) !important; }
.fw-500     { font-weight: 500; }
.fw-600     { font-weight: 600; }
.fw-700     { font-weight: 700; }
.fw-800     { font-weight: 800; }

/* ── SECTION LABEL BADGE ─────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-full);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-label svg,
.section-label i[data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
}

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section    { padding-block: clamp(4rem, 8vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-lg { padding-block: clamp(5rem, 10vw, 9rem); }

.text-center { text-align: center; }
.mx-auto     { margin-inline: auto; }
.max-560     { max-width: 560px; }
.max-700     { max-width: 700px; }
.max-860     { max-width: 860px; }

/* ── GLASS NAVBAR (Bootstrap override + standalone) ─────── */
.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0 !important;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease) !important;
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  border-radius: 0 !important;
}

.navbar.scrolled,
.navbar.navbar-scrolled {
  background: rgba(7, 17, 31, 0.88) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--border) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4) !important;
  padding: 0.65rem 0 !important;
}

/* Brand mark */
.brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--base);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.navbar-brand {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text) !important;
  background: var(--glass);
}

.navbar-toggler {
  border-color: var(--border) !important;
  padding: 0.4rem 0.6rem !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28240,244,250,0.75%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-collapse {
  background: transparent;
}

@media (max-width: 991px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(7, 17, 31, 0.97);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1rem;
    margin-top: 0.5rem;
  }
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem !important;
  border-radius: var(--r-full) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none !important;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background-position var(--t-med) var(--ease) !important;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1 !important;
}

.btn:active { transform: scale(0.97) !important; }

.btn i[data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }

/* Gold gradient button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%) !important;
  background-size: 200% 100% !important;
  background-position: 0% 0% !important;
  color: #07111F !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(232,160,32,0.30) !important;
  border: none !important;
}

.btn-gold:hover {
  background-position: 100% 0% !important;
  box-shadow: 0 6px 30px rgba(232,160,32,0.45) !important;
  transform: translateY(-2px) !important;
  color: #07111F !important;
}

/* Navy solid button */
.btn-navy {
  background: var(--surface-3) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}

.btn-navy:hover {
  background: var(--surface-2) !important;
  border-color: var(--border-gold) !important;
  transform: translateY(-2px) !important;
  color: var(--text) !important;
}

/* Glass outline button */
.btn-glass {
  background: var(--glass) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: var(--glass-hover) !important;
  border-color: var(--border-gold) !important;
  transform: translateY(-2px) !important;
  color: var(--text) !important;
}

/* Outline secondary */
.btn-outline-secondary {
  background: transparent !important;
  color: var(--text-muted) !important;
  border: 1px solid var(--border) !important;
}

.btn-outline-secondary:hover {
  background: var(--glass) !important;
  border-color: var(--border-gold) !important;
  color: var(--text) !important;
  transform: translateY(-1px) !important;
}

/* Sizes */
.btn-lg { padding: 0.9rem 2.25rem !important; font-size: 1rem !important; }
.btn-sm { padding: 0.45rem 1rem !important; font-size: 0.8rem !important; border-radius: var(--r-md) !important; }

/* ── GLASS CARD ───────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background var(--t-med) var(--ease);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  background: rgba(255,255,255,0.06);
}

/* Card icon wrapper */
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--t-med) var(--ease);
}

.glass-card:hover .card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.card-icon i[data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: var(--surface);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232,160,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  max-width: 600px;
  margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
  justify-content: center;
}

.breadcrumb-bar a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar svg,
.breadcrumb-bar i[data-lucide] { width: 12px; height: 12px; flex-shrink: 0; }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-item { position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border);
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin-block: 0;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-inline: 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at top, rgba(232,160,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 0.75rem; position: relative; }
.cta-banner p  { margin-bottom: 2rem; position: relative; }

/* ── SERVICE / PRODUCT CARD ───────────────────────────────── */
.product-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-icon i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.product-card-body h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── SERVICE SECTION (services.html) ──────────────────────── */
.service-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.service-section:last-child { border-bottom: none; }

/* ── OL-CARD (legacy compat) ──────────────────────────────── */
.ol-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.ol-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

/* ── VALUE / WHY-US ITEM ─────────────────────────────────── */
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--r-md);
  transition: background var(--t-fast), border-color var(--t-fast);
  border: 1px solid transparent;
}

.value-item:hover {
  background: var(--glass);
  border-color: var(--border);
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i[data-lucide] { width: 18px; height: 18px; stroke: var(--gold); }

.value-item h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.value-item p { font-size: 0.88rem; margin: 0; }

/* ── INDUSTRY GRID ────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.industry-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease);
  cursor: default;
}

.industry-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: rgba(232,160,32,0.04);
}

.industry-item i[data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  margin: 0 auto 0.65rem;
  display: block;
}

.industry-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── CONTACT INFO CARDS ───────────────────────────────────── */
.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color var(--t-med), transform var(--t-med) var(--ease);
}

.contact-info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i[data-lucide] { width: 20px; height: 20px; stroke: var(--gold); }

.contact-info-body h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-body p, .contact-info-body a {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
}

.contact-info-body a:hover { color: var(--gold); }

/* ── FORM FIELDS ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  color: var(--text) !important;
  font-size: 0.93rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast) !important;
  outline: none;
  -webkit-appearance: none;
}

.form-control::placeholder { color: var(--text-faint); }

.form-control:focus {
  border-color: var(--gold) !important;
  background: rgba(232,160,32,0.04) !important;
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12) !important;
}

textarea.form-control { resize: vertical; min-height: 130px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8A020' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px !important;
  padding-right: 2.75rem !important;
  cursor: pointer;
}

select.form-control option { background: var(--surface); color: var(--text); }

/* ── POLICY BODY ─────────────────────────────────────────── */
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.policy-body h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.policy-body h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.policy-body p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.policy-body ul, .policy-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.policy-body li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.75;
}

.policy-body ol { list-style: decimal; }

.policy-body a { color: var(--gold); text-underline-offset: 3px; }
.policy-body a:hover { color: var(--gold-light); }

.policy-intro {
  padding: 1.25rem 1.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  margin-bottom: 2rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-intro strong { color: var(--text); }

.policy-notice {
  padding: 1.25rem 1.5rem;
  background: rgba(232,160,32,0.06);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.policy-notice strong { color: var(--text); }
.policy-notice a { color: var(--gold); }

.policy-warn {
  padding: 1.25rem 1.5rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.25);
  border-left: 4px solid rgba(251,191,36,0.7);
  border-radius: var(--r-md);
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.policy-warn strong { color: #fbbf24; }

.policy-address-box {
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: normal;
  margin: 1rem 0;
}
.policy-address-box a { color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer .container > .row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col-brand { max-width: 300px; }

.site-footer address {
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.9;
  color: var(--text-muted);
  margin-top: 1rem;
}

.site-footer address a { color: var(--text-muted); }
.site-footer address a:hover { color: var(--gold); }

.site-footer h6,
.site-footer .fw-semibold {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul a { color: var(--text-muted); transition: color var(--t-fast); }
.site-footer ul a:hover { color: var(--gold); }

.site-footer .text-white-50 { color: var(--text-muted) !important; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.82rem;
  color: var(--text-faint);
}

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

/* ── SITE-NAV (standalone navbar — policy / contact / 404) ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 74px;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin-left: auto;
}

.nav-links > li > a,
.nav-links > li > button {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--text);
  background: var(--glass);
}

.nav-cta { flex-shrink: 0; margin-left: 1rem; }

/* Dropdown */
.has-dropdown { position: relative; }

.nav-dropdown-btn {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.nav-dropdown-btn:hover,
.has-dropdown.open .nav-dropdown-btn {
  color: var(--text);
  background: var(--glass);
}

.nav-dropdown-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.has-dropdown.open .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: rgba(12, 26, 46, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 100;
}

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

.nav-dropdown li > a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-dropdown li > a:hover,
.nav-dropdown li > a.active {
  color: var(--text);
  background: var(--glass-hover);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.35rem 0.5rem;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: rgba(7, 17, 31, 0.99);
  backdrop-filter: blur(32px);
  border-left: 1px solid var(--border);
  z-index: 1100;
  transition: right var(--t-med) var(--ease);
  overflow-y: auto;
}

.nav-drawer.open { right: 0; }

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 5rem 1.25rem 2rem;
  gap: 0.15rem;
  min-height: 100%;
}

.nav-drawer-inner > a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-drawer-inner > a:hover,
.nav-drawer-inner > a.active {
  color: var(--text);
  background: var(--glass);
}

.drawer-group { margin-top: 0.5rem; }

.drawer-group-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  padding: 0.5rem 1rem 0.25rem;
}

.drawer-group a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.drawer-group a:hover,
.drawer-group a.active {
  color: var(--text);
  background: var(--glass);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

/* ── FOOTER GRID (standalone — policy / contact / 404) ────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand-col { max-width: 320px; }

.footer-brand-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-inner > div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-inner a {
  font-size: 0.82rem;
  color: var(--text-faint);
  transition: color var(--t-fast);
}

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

/* ── MODAL (standalone) ──────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.97);
  transition: transform var(--t-med) var(--ease);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem 1.75rem 0;
  gap: 1rem;
}

.modal-header h5 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
  line-height: 1;
}

.modal-close:hover {
  background: var(--glass-hover);
  color: var(--text);
}

.modal-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* ── FORM FIELDS (standalone) ────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.01em;
}

.form-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-field:focus {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.10);
}

.form-field::placeholder { color: var(--text-faint); }

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

select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(240,244,250,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.form-field option {
  background: var(--surface-2);
  color: var(--text);
}

/* ── COOKIE ACTIONS ──────────────────────────────────────── */
.cookie-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-shrink: 0;
}

/* ── BREADCRUMB NAV (policy page variant) ────────────────── */
.breadcrumb-nav {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color var(--t-fast);
}

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

/* ── BOOTSTRAP COMPAT UTILITIES ──────────────────────────── */
.px-4  { padding-inline: 1.5rem !important; }
.w-100 { width: 100% !important; }
.mt-2  { margin-top: 0.5rem !important; }

/* ── RESPONSIVE — SITE-NAV & FOOTER GRID ────────────────── */
@media (max-width: 991px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { justify-content: space-between; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner > div { justify-content: center; }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9000;
  background: rgba(12, 26, 46, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  max-width: 640px;
  width: calc(100% - 3rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  opacity: 0;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  min-width: 200px;
}

.cookie-banner a { color: var(--gold); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: rgba(12,26,46,0.85);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-med), transform var(--t-med) var(--ease),
              background var(--t-fast), border-color var(--t-fast);
  backdrop-filter: blur(12px);
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--surface-2);
  border-color: var(--border-gold);
}

.back-to-top i[data-lucide] { width: 18px; height: 18px; stroke: var(--text-muted); }

/* ── GSAP REVEAL BASE CLASSES ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

/* ── GRID UTILITIES ──────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Bootstrap row compat for footer */
.row { display: flex; flex-wrap: wrap; }
.g-4 { gap: 1.5rem; }
.col-lg-4 { flex: 0 0 auto; }
.pb-4 { padding-bottom: 1.5rem; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-footer .container > .row {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .container > .row > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item + .stat-item::before { display: none; }

  .site-footer .container > .row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .industry-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .col-lg-4 { width: 100%; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 0.8rem 1.5rem !important; font-size: 0.93rem !important; }
  .glass-card { padding: 1.5rem; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  html { scroll-behavior: auto; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ───────────────────────────────────────────── */
::selection { background: rgba(232,160,32,0.25); color: var(--text); }
