@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   DESIGN SYSTEM – PRESTIGE MODERN (MAROON & GOLD)
   ═══════════════════════════════════════════════════════ */

:root {
  /* ── LIGHT MODE (Maroon-dominant) ── */
  --bg-body: #faf7f8;
  --bg-section-alt: #f3eaed;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-hero-overlay: rgba(87, 0, 53, 0.82);
  --border: rgba(87, 0, 53, 0.1);

  --text-heading: #570035;
  --text-body: #4a2e3a;
  --text-muted: #8a6b78;
  --text-on-dark: #fff8fa;

  --maroon: #570035;
  --maroon-mid: #7d2454;
  --maroon-light: #a23770;
  --maroon-glow: rgba(87, 0, 53, 0.12);
  --gold: #DCA146;
  --gold-dark: #835400;
  --gold-glow: rgba(220, 161, 70, 0.25);
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(87, 0, 53, 0.06);
  --shadow-md: 0 8px 24px rgba(87, 0, 53, 0.08);
  --shadow-lg: 0 16px 48px rgba(87, 0, 53, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(87, 0, 53, 0.08);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1560px;
  --section-pad: 100px;
  --transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-theme="dark"] {
  --bg-body: #1E0012;
  --bg-section-alt: #280a1c;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-hero-overlay: rgba(30, 0, 18, 0.85);
  --border: rgba(255, 255, 255, 0.07);

  --text-heading: #fff0f5;
  --text-body: #cbbabf;
  --text-muted: #8a6b78;
  --text-on-dark: #fff0f5;

  --maroon: #ffafd1;
  --maroon-mid: #d86ea1;
  --maroon-glow: rgba(255, 175, 209, 0.08);
  --gold: #ffbd62;
  --gold-dark: #fcba60;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(40, 10, 28, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-body);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--maroon-glow); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: 3.4rem; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; font-weight: 600; }

.label-caps {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

[data-theme="dark"] .label-caps { color: var(--gold); }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; position: relative; }
.section-alt { background: var(--bg-section-alt); }

/* ── H2 Gradient Underline ── */
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading .label-caps { display: block; margin-bottom: 18px; }
.section-heading h2 { display: inline-block; position: relative; padding-bottom: 16px; }
.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  border-radius: 99px;
}
.section-heading p { max-width: 640px; margin: 20px auto 0; font-size: 1.1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 12px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8742e);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--gold-glow); }

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--white);
}
[data-theme="dark"] .btn-maroon {
  background: var(--maroon);
  color: var(--bg-body);
}
.btn-maroon:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════
   HEADER — Always maroon with white text
   ═══════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; transition: all var(--transition);
  background: #570035;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .header {
  background: #1a0010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header.scrolled {
  background: rgba(87, 0, 53, 0.76);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .header.scrolled {
  background: rgba(30, 0, 18, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  transition: padding var(--transition);
}
.header.scrolled .header-inner { padding: 12px 24px; }

/* Logo — white on maroon */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(220,161,70,0.3));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 32px; height: 32px;
  object-fit: contain;
}

/* Header logo overrides for larger presentation */
.header .logo-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
}
.header .logo-mark img {
  width: 44px; height: 44px;
}
.header .logo-name {
  font-size: 1.65rem;
}
.header .logo-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
}
.header .logo-tagline {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.82);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem;
  color: #ffffff; letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-badge {
  font-size: 0.55rem; font-weight: 800;
  background: var(--gold); color: #570035;
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.04em;
  margin-top: 1px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .logo-tagline { display: none; }
}
@media (max-width: 480px) {
  .logo-name-sub { display: none; }
}

/* Nav — white links on maroon */
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); padding: 8px 14px;
  border-radius: 8px; transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: #ffffff; background: rgba(255,255,255,0.08); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), #b8742e);
  color: #570035; border-radius: 12px;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,161,70,0.4); }

/* Theme Toggle — white on maroon */
.theme-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  background: none; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  margin-left: 4px;
}
.theme-btn:hover { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.theme-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.icon-sun { display: block; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* Mobile Burger — white */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  color: #ffffff; padding: 4px; z-index: 1010;
}

/* ═══════════════════════════════════════════
   HERO — Light: bright brand-forward / Dark: maroon overlay
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-body);
  transition: background var(--transition);
}

/* Background image — visible in both modes */
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  opacity: 1; transition: opacity 0.5s ease;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity var(--transition);
}
[data-theme="dark"] .hero-canvas {
  opacity: 0.38;
}

/* Overlay — light gradient in light mode, dark maroon in dark mode */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(255, 255, 255, 0.99) 100%);
  transition: background var(--transition);
}
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(135deg, rgba(30, 0, 18, 0.97) 0%, rgba(87, 0, 53, 0.88) 50%, rgba(30, 0, 18, 0.96) 100%);
}

/* Light mode decorative glow */
.hero::before {
  content: ''; position: absolute; z-index: 0;
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(87,0,54,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; z-index: 0;
  width: 400px; height: 400px;
  bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(220,161,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}
[data-theme="dark"] .hero::before,
[data-theme="dark"] .hero::after { display: none; }

.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--max-width); margin: 0 auto;
  padding: 150px 24px 90px;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 50px; align-items: center;
}

/* Text — adapts to light/dark */
.hero-text { color: var(--text-heading); transition: color var(--transition); }
[data-theme="dark"] .hero-text { color: #ffffff; }

/* Launch badge */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 99px;
  background: rgba(87,0,54,0.06);
  border: 1px solid rgba(87,0,54,0.1);
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px; color: var(--gold-dark);
}
[data-theme="dark"] .hero-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--gold);
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulseDot 2s infinite;
}

/* Brand name — maroon in light, white in dark */
.hero h1 { color: #570035; margin-bottom: 12px; }
[data-theme="dark"] .hero h1 { color: #ffffff; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #570035, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="dark"] .hero h1 em {
  background: linear-gradient(90deg, var(--gold), #f5d89a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Brand subtitle */
.hero-brand-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 28px;
  position: relative; padding-left: 20px;
}
.hero-brand-sub::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 24px;
  background: linear-gradient(180deg, #570035, var(--gold));
  border-radius: 2px;
}
[data-theme="dark"] .hero-brand-sub { color: var(--gold); }
[data-theme="dark"] .hero-brand-sub::before {
  background: linear-gradient(180deg, var(--gold), #f5d89a);
}

.hero-desc {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--text-body);
  max-width: 540px; margin-bottom: 36px;
}
[data-theme="dark"] .hero-desc { color: rgba(255,255,255,0.72); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Outline btn — dark on light, white on dark */
.btn-hero-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 12px; cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: #32001d; border: 2px solid rgba(87,0,54,0.2);
}
.btn-hero-outline:hover { border-color: var(--gold); transform: translateY(-3px); }
[data-theme="dark"] .btn-hero-outline { color: #fff; border-color: rgba(255,255,255,0.25); }
[data-theme="dark"] .btn-hero-outline:hover { border-color: var(--gold); background: rgba(255,255,255,0.05); }

/* Hero launch date strip */
.hero-launch {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(87,0,53,0.04);
  border: 1px solid rgba(87,0,53,0.08);
  border-radius: 10px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  color: var(--text-muted);
}
.hero-launch strong { color: #570035; }
[data-theme="dark"] .hero-launch {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
[data-theme="dark"] .hero-launch strong { color: var(--gold); }
.hero-launch svg {
  width: 16px; height: 16px; fill: none;
  stroke: var(--gold-dark); stroke-width: 2;
}
[data-theme="dark"] .hero-launch svg { stroke: var(--gold); }

/* Hero image */
.hero-image {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img-frame {
  width: 400px; height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(87,0,54,0.08);
  box-shadow: var(--shadow-lg);
  position: relative;
}
[data-theme="dark"] .hero-img-frame {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 14px 20px;
  color: var(--text-heading); font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .hero-float-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #ffffff;
}
.hero-float-badge.left { bottom: 30px; left: -20px; animation: floatY 5s ease-in-out infinite; }
.hero-float-badge.right { top: 30px; right: -10px; animation: floatY 6s ease-in-out infinite 1s; }
.hero-float-badge h5 { font-size: 1.4rem; font-weight: 800; color: var(--gold-dark); }
[data-theme="dark"] .hero-float-badge h5 { color: var(--gold); }
.hero-float-badge p { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   MISSION BAR
   ═══════════════════════════════════════════ */
.mission-bar {
  background: var(--maroon);
  padding: 0;
  position: relative; z-index: 5;
}
[data-theme="dark"] .mission-bar { background: #280a1c; }
.mission-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.mission-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.mission-item:last-child { border-right: none; }
.mission-item:hover { background: rgba(255,255,255,0.04); }
.mission-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(255,255,255,0.08);
}
.mission-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.mission-item h4 { font-size: 1rem; color: #ffffff; margin-bottom: 4px; font-weight: 700; }
.mission-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 60px; align-items: center;
}
.about-img-container {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(50,0,29,0.6) 100%);
}
.about-text .label-caps { margin-bottom: 14px; display: block; }
.about-text h2 { margin-bottom: 24px; }
.about-text h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="dark"] .about-text h2 em {
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.about-text p { margin-bottom: 20px; }
.about-values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 32px;
}
.about-value {
  display: flex; gap: 14px;
  padding: 18px; border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.about-value > * {
  position: relative;
  z-index: 2;
}
.about-value:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.about-value-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--maroon-glow);
  display: flex; align-items: center; justify-content: center;
}
.about-value-icon svg { width: 20px; height: 20px; stroke: var(--maroon); fill: none; stroke-width: 2; }
[data-theme="dark"] .about-value-icon svg { stroke: var(--maroon-mid); }
.about-value h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--text-heading); }
.about-value p { font-size: 0.82rem; line-height: 1.5; margin-bottom: 0; }

/* ═══════════════════════════════════════════
   SOLUTIONS
   ═══════════════════════════════════════════ */
.solutions-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.solution-card {
  border-radius: 24px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.solution-card-img, .solution-card-body {
  position: relative;
  z-index: 2;
}
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.solution-card-img {
  height: 220px; overflow: hidden; position: relative;
}
.solution-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.solution-card:hover .solution-card-img img { transform: scale(1.06); }
.solution-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(50,0,29,0.5) 100%);
}
.solution-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.solution-card-body .label-caps { margin-bottom: 10px; }
.solution-card-body h3 { margin-bottom: 12px; }
.solution-card-body p { font-size: 0.92rem; flex: 1; }
.solution-card-features { margin-top: 20px; }
.solution-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-body);
  margin-bottom: 10px;
}
.solution-feature svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--gold-dark); fill: none; stroke-width: 2.5;
}
[data-theme="dark"] .solution-feature svg { stroke: var(--gold); }

/* ═══════════════════════════════════════════
   COMMITMENT (CTA BANNER)
   ═══════════════════════════════════════════ */
.commitment {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #570035 0%, #7d2454 50%, #570035 100%);
  padding: 80px 0;
}
[data-theme="dark"] .commitment {
  background: linear-gradient(135deg, #280a1c 0%, #3d1a2d 50%, #280a1c 100%);
}
.commitment-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 50px; align-items: center;
}
.commitment-text { color: #ffffff; }
.commitment-text .label-caps { color: var(--gold); margin-bottom: 14px; display: block; }
.commitment-text h2 { color: #ffffff; margin-bottom: 20px; }
.commitment-text p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.commitment-img {
  border-radius: 24px; overflow: hidden;
  border: 4px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.commitment-img img { width: 100%; height: 320px; object-fit: cover; }

/* Compliance strip */
.compliance-strip {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 20px;
  margin-top: 10px;
}
.compliance-strip svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.compliance-strip span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.compliance-strip strong { color: #ffffff; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px;
  padding: 20px; border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.contact-card:hover { transform: translateX(4px); border-color: var(--gold); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--maroon-glow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--maroon); fill: none; stroke-width: 2; }
[data-theme="dark"] .contact-card-icon svg { stroke: var(--maroon-mid); }
.contact-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 2px; }
.contact-card p { font-size: 0.88rem; margin: 0; }
.contact-card p a { transition: color var(--transition); }
.contact-card p a:hover { color: var(--gold); }
.contact-card > * {
  position: relative;
  z-index: 2;
}

/* Form */
.contact-form-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-body); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text-heading);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: all var(--transition);
}
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
[data-theme="dark"] .form-input:focus { background: rgba(255,255,255,0.04); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-status {
  margin-top: 16px; padding: 12px 16px;
  border-radius: 8px; font-size: 0.9rem;
  display: none;
}
.form-status.success { display: block; background: rgba(21,87,36,0.08); color: #155724; border: 1px solid rgba(21,87,36,0.15); }
.form-status.error { display: block; background: rgba(186,26,26,0.08); color: #ba1a1a; border: 1px solid rgba(186,26,26,0.15); }
[data-theme="dark"] .form-status.success { background: rgba(40,167,69,0.1); color: #6ec97e; border-color: rgba(40,167,69,0.15); }
[data-theme="dark"] .form-status.error { background: rgba(220,53,69,0.1); color: #e87c85; border-color: rgba(220,53,69,0.15); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #570035;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
[data-theme="dark"] .footer { background: #150009; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.6; }
.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-address-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  flex-shrink: 0;
}
.footer-gst {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-gst-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  flex-shrink: 0;
}
.footer-brand .logo-name { color: #ffffff; }
.footer-col h4 {
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: #ffffff; }

.footer-newsletter p { font-size: 0.88rem; margin-bottom: 14px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row .form-input {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1);
  color: #ffffff; padding: 10px 14px; font-size: 0.85rem;
}
.newsletter-row .form-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-row .btn { padding: 10px 16px; }

.footer-bottom {
  position: relative;
  max-width: var(--max-width); margin: 0 auto; padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: center; align-items: center;
  font-size: 0.82rem;
}
.footer-bottom p {
  text-align: center;
  margin: 0;
  padding: 0 120px;
}
.footer-signature-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-signature-link:hover {
  color: #fff0b8;
  text-decoration: underline;
}
.footer-socials {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); color: #570035; border-color: var(--gold); transform: translateY(-2px); }
.social-icon svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(220,161,70,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(220,161,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,161,70,0); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  .hero-inner, .about-grid, .commitment-inner, .contact-grid { gap: 40px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  .header .logo-name { font-size: 1.35rem; }
  .header .logo-mark { width: 40px; height: 40px; }
  .header .logo-mark img { width: 36px; height: 36px; }

  .burger { display: block; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-body); border-left: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 100px 30px; gap: 12px; z-index: 1005;
    transition: right var(--transition); box-shadow: var(--shadow-lg);
  }
  .nav.open { right: 0; }
  
  .nav-link {
    color: var(--text-heading);
    width: 100%;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
    background: var(--maroon-glow);
  }
  [data-theme="dark"] .nav-link:hover,
  [data-theme="dark"] .nav-link.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
  }
  .nav-cta {
    margin-left: 14px;
    margin-top: 8px;
    width: calc(100% - 28px);
    text-align: center;
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 110px 24px 50px; }
  .hero-text { order: 1; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-launch { justify-content: center; }
  .hero-image { order: 2; margin-top: 30px; }
  .hero-img-frame { width: 300px; height: 300px; }
  .hero-float-badge { display: none; }
  .hero-brand-sub { padding-left: 0; }
  .hero-brand-sub::before { display: none; }

  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

  .about-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .commitment-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom p { padding: 0; }
  .footer-socials { position: static; transform: none; margin-top: 4px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .mission-grid { grid-template-columns: 1fr; }
  .newsletter-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ── INTERACTIVE SPOTLIGHT CARD HOVER EFFECT ── */
.solution-card::before, .about-value::before, .contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), var(--gold-glow), transparent 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.solution-card:hover::before, .about-value:hover::before, .contact-card:hover::before {
  opacity: 1;
}

/* ── CINEMATIC PRELOADER STYLES ── */
body.no-scroll {
  overflow: hidden !important;
}

.preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s;
}

.preloader-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 0 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-slide {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.6);
  filter: blur(5px);
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
              visibility 0.8s ease;
  text-align: center;
  width: 100%;
}

.preloader-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.preloader-slide.exit {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92);
  filter: blur(1.5px);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s ease, visibility 0.8s ease;
}

#slide-2, #slide-3,
#slide-2.exit, #slide-3.exit {
  transform: scale(1);
  filter: blur(0);
}

.preloader-text-large {
  font-family: var(--font-heading);
  font-size: 4.4rem;
  font-weight: 800;
  color: #570035;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.preloader-text-medium {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #570035;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin: 0 auto;
}

.preloader-second-line {
  font-size: 3.8rem;
  white-space: nowrap;
  margin-top: 16px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.preloader-first-line-gold {
  color: #DCA146;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  animation: logoPulse 2.5s ease-in-out infinite alternate;
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #570035, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.preloader-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: #8a6b78;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-top: 8px;
  line-height: 1.6;
}

.preloader-skip {
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 10px 24px;
  background: transparent;
  border: 2px solid rgba(87, 0, 53, 0.18);
  color: #570035;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 100000;
}

.preloader-skip:hover {
  border-color: #570035;
  background: rgba(87, 0, 53, 0.05);
  transform: translateY(-2px);
}

@keyframes logoPulse {
  0% { transform: scale(0.97); filter: drop-shadow(0 0 0 rgba(87,0,53,0)); }
  100% { transform: scale(1.03); filter: drop-shadow(0 4px 15px rgba(220,161,70,0.25)); }
}

@media (max-width: 1200px) {
  :root { --section-pad: 80px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 120px 24px 60px; }
  .preloader-text-large { font-size: 3.0rem; }
  .preloader-text-medium { font-size: 1.8rem; }
  .preloader-second-line { font-size: 2.6rem; }
  .preloader-title { font-size: 3.2rem; }
  .preloader-tagline { font-size: 1.1rem; }
  .preloader-logo { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
  .preloader-text-large { font-size: 2.4rem; }
  .preloader-text-medium { font-size: 1.5rem; }
  .preloader-second-line { font-size: 2.1rem; white-space: normal; max-width: 480px; margin-top: 12px; margin-left: auto; margin-right: auto; display: block; position: static; transform: none; }
  .preloader-title { font-size: 2.2rem; white-space: normal; line-height: 1.25; }
  .preloader-tagline { font-size: 0.95rem; white-space: normal; max-width: 480px; }
  .preloader-logo { width: 160px; height: 160px; }
  .preloader-skip { top: 24px; right: 24px; bottom: auto; padding: 8px 20px; font-size: 0.75rem; }
}
