/* ============================================================
   LUMORA GLOBAL TRADING FZ-LLC — Design System
   Light + Dark themes via [data-theme] tokens
   ============================================================ */

:root {
  /* brand palette (constant across themes) */
  --maroon: #6e1b22;
  --maroon-light: #8f2731;
  --maroon-dark: #4e1218;
  --navy: #1b2545;
  --navy-light: #2a396b;
  --navy-dark: #121a33;
  --gold: #c4a24a;
  --gold-light: #e0c476;
  --cream: #f6f1e9;
  --white: #ffffff;

  /* geometry / type */
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- DARK THEME (default) ---------- */
:root, :root[data-theme="dark"] {
  --page-bg: #121a33;
  --text: rgba(246, 241, 233, 0.9);
  --text-strong: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.55);
  --on-glass: rgba(255, 255, 255, 0.9);

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-strong: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(9, 14, 33, 0.28);

  --input-bg: rgba(255, 255, 255, 0.06);
  --input-bg-focus: rgba(255, 255, 255, 0.1);
  --placeholder: rgba(255, 255, 255, 0.4);

  --header-bg: rgba(18, 26, 51, 0.72);
  --footer-bg: rgba(13, 18, 38, 0.6);
  --divider: rgba(255, 255, 255, 0.08);
  --ghost-text: #ffffff;
  --logo-plate: rgba(246, 241, 233, 0.92);

  --grid-dot: rgba(255, 255, 255, 0.04);
  --orb-opacity: 0.5;

  --bg-gradient:
    radial-gradient(circle at 15% 20%, rgba(110, 27, 34, 0.55), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(196, 162, 74, 0.25), transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(42, 57, 107, 0.65), transparent 45%),
    linear-gradient(160deg, #121a33, #0d1226 60%, #4e1218);
}

/* ---------- LIGHT THEME ---------- */
:root[data-theme="light"] {
  --page-bg: #eef1f7;
  --text: #384063;
  --text-strong: #1b2545;
  --text-muted: rgba(27, 37, 69, 0.72);
  --text-soft: rgba(27, 37, 69, 0.55);
  --on-glass: rgba(27, 37, 69, 0.92);

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(27, 37, 69, 0.12);
  --glass-shadow: 0 8px 32px rgba(27, 37, 69, 0.12);

  --input-bg: rgba(27, 37, 69, 0.04);
  --input-bg-focus: rgba(27, 37, 69, 0.07);
  --placeholder: rgba(27, 37, 69, 0.4);

  --header-bg: rgba(255, 255, 255, 0.78);
  --footer-bg: rgba(255, 255, 255, 0.65);
  --divider: rgba(27, 37, 69, 0.1);
  --ghost-text: #1b2545;
  --logo-plate: transparent;

  --grid-dot: rgba(27, 37, 69, 0.05);
  --orb-opacity: 0.28;

  --bg-gradient:
    radial-gradient(circle at 15% 20%, rgba(110, 27, 34, 0.1), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(196, 162, 74, 0.16), transparent 42%),
    radial-gradient(circle at 75% 85%, rgba(42, 57, 107, 0.1), transparent 45%),
    linear-gradient(160deg, #f4f6fb, #eef1f7 55%, #f8f1ec);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

body.no-scroll { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Animated background ---------- */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-gradient);
  background-size: 200% 200%;
  animation: bgShift 22s ease-in-out infinite;
  transition: background 0.5s var(--ease);
}
.bg-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grid-dot) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
@keyframes bgShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* floating orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: var(--orb-opacity);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.orb-1 { width: 380px; height: 380px; background: var(--maroon); top: -80px; left: -120px; animation: float1 18s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: var(--gold); bottom: -60px; right: -80px; animation: float2 20s ease-in-out infinite; }
.orb-3 { width: 340px; height: 340px; background: var(--navy-light); top: 40%; right: 30%; animation: float1 24s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(60px,40px);} }
@keyframes float2 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(-50px,-40px);} }

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: linear-gradient(160deg, #0d1226, #121a33 55%, #4e1218);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
:root[data-theme="light"] #splash {
  background: linear-gradient(160deg, #f4f6fb, #eef1f7 55%, #f8f1ec);
}
#splash.hide { opacity: 0; visibility: hidden; }

.splash-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,74,0.22), transparent 65%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ transform: scale(0.9); opacity: 0.6;} 50%{ transform: scale(1.15); opacity: 1;} }

.splash-logo {
  width: 230px;
  max-width: 60vw;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  opacity: 0;
  transform: translateY(24px) scale(0.85);
  animation: splashLogoIn 1s var(--ease) 0.15s forwards;
  z-index: 2;
}
:root[data-theme="light"] .splash-logo { filter: drop-shadow(0 10px 26px rgba(27,37,69,0.2)); }
@keyframes splashLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-size: clamp(0.9rem, 2.4vw, 1.15rem);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.splash-bar {
  width: min(320px, 70vw);
  height: 4px;
  border-radius: 99px;
  background: rgba(127,127,127,0.2);
  overflow: hidden;
  z-index: 2;
}
.splash-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--maroon-light), var(--gold));
  border-radius: 99px;
  animation: loadBar 3s linear forwards;
}
@keyframes loadBar { to { width: 100%; } }

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

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--text-strong); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 1.02rem; }
.text-gold { color: var(--gold); }

/* ---------- Glass card ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(120deg, var(--maroon), var(--maroon-light));
  color: #fff;
  box-shadow: 0 8px 24px rgba(110,27,34,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(110,27,34,0.6); }
.btn-ghost {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--ghost-text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: var(--glass-bg-strong); filter: brightness(1.1); }
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(196,162,74,0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(196,162,74,0.55); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--text-strong);
  font-size: 1.15rem; line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.theme-toggle:hover { transform: translateY(-2px) rotate(-8deg); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: all 0.4s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  padding: 10px 0;
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; padding: 5px 7px; background: var(--logo-plate); border-radius: 10px; transition: background 0.4s var(--ease); }
.brand-text { line-height: 1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 1px; color: var(--text-strong); }
.brand-text small { display: block; font-size: 0.58rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-strong); background: var(--glass-bg-strong); }
.nav-cta { margin-left: 6px; }
.nav-links a.nav-cta { color: var(--navy-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 950;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--text-strong); border-radius: 2px; transition: 0.3s; }

/* dimmed backdrop behind the mobile drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(8, 12, 26, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 20px; }
.hero-copy h1 .line { display: block; }
.hero-copy .accent { color: var(--gold); }
.hero-copy p.lead { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin-bottom: 34px; }
.hero-badges { display: flex; gap: 26px; margin-top: 42px; flex-wrap: wrap; }
.hero-badge { text-align: left; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold); }
.hero-badge span { font-size: 0.82rem; color: var(--text-soft); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-card {
  padding: 44px;
  text-align: center;
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero-card img { width: 210px; margin: 0 auto 18px; }
.hero-card .tagline { font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1rem; }
.hero-ring {
  position: absolute;
  width: 118%; height: 118%;
  border: 1px dashed rgba(196,162,74,0.4);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-ring::before {
  content: ""; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatCard { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.about-point .dot { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); font-size: 1.1rem; }
.about-point h4 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; color: var(--text-strong); }
.about-point span { font-size: 0.84rem; color: var(--text-soft); }
.about-visual { padding: 30px; }
.about-visual .stat-row { display: flex; justify-content: space-between; gap: 16px; text-align: center; }
.about-visual .stat { flex: 1; padding: 22px 8px; border-radius: var(--radius-sm); background: var(--glass-bg-strong); border: 1px solid var(--glass-border); }
.about-visual .stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold); }
.about-visual .stat span { font-size: 0.78rem; color: var(--text-muted); }
.about-visual .mission { margin-top: 24px; font-family: var(--font-head); font-style: italic; font-size: 1.15rem; text-align: center; color: var(--gold); }

/* ============================================================
   CARD GRIDS (services / products / why)
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(196,162,74,0.14), transparent 55%);
  opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { transform: translateY(-10px); border-color: rgba(196,162,74,0.5); box-shadow: 0 22px 44px rgba(0,0,0,0.18); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-light), var(--maroon));
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); position: relative; }

.product-card { padding: 0; overflow: hidden; }
.product-card .pc-top {
  height: 120px; display: grid; place-items: center; font-size: 2.6rem;
  background: linear-gradient(135deg, var(--navy), var(--maroon-dark));
  border-bottom: 1px solid var(--glass-border);
}
.product-card .pc-body { padding: 22px 24px 26px; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-card p { font-size: 0.86rem; color: var(--text-muted); }

/* Why choose us numbered */
.why-card { padding: 30px 26px; }
.why-num { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); opacity: 0.6; line-height: 1; margin-bottom: 12px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-info { padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-info > p { color: var(--text-muted); font-size: 0.95rem; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); }
.info-item .txt { min-width: 0; }
.info-item .txt small { display: block; font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.info-item .txt a, .info-item .txt span { font-size: 0.95rem; color: var(--on-glass); word-break: break-word; overflow-wrap: anywhere; }
.contact-social { display: flex; gap: 12px; margin-top: auto; }
.contact-social a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--glass-bg-strong); border: 1px solid var(--glass-border); transition: 0.3s; font-size: 1.1rem; }
.contact-social a:hover { background: var(--maroon); transform: translateY(-3px); }

.contact-form { padding: 40px; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; margin-bottom: 7px; color: var(--text-muted); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--input-bg);
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--placeholder); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--input-bg-focus); }
.field textarea { resize: vertical; min-height: 120px; }
.field select option { color: #000; }
.form-note { font-size: 0.85rem; margin-top: 14px; min-height: 20px; }
.form-note.ok { color: #1a9d5a; }
:root[data-theme="dark"] .form-note.ok { color: #6ee7a8; }
.form-note.err { color: #c0392b; }
:root[data-theme="dark"] .form-note.err { color: #ff9b9b; }
.btn.loading { opacity: 0.7; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 70px 0 30px; border-top: 1px solid var(--glass-border); background: var(--footer-bg); backdrop-filter: blur(10px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand img { height: 74px; margin-bottom: 16px; padding: 6px 9px; background: var(--logo-plate); border-radius: 12px; display: inline-block; }
.footer-brand p { color: var(--text-soft); font-size: 0.9rem; max-width: 300px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 16px; color: var(--gold); letter-spacing: 0.5px; }
.footer-col a, .footer-col p { display: block; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--divider); font-size: 0.82rem; color: var(--text-soft); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s; animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100%{ box-shadow: 0 8px 24px rgba(37,211,102,0.5);} 50%{ box-shadow: 0 8px 34px rgba(37,211,102,0.85);} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .hero-card img { width: 160px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 78%; max-width: 320px;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 8px; padding: 96px 40px 40px;
    overflow-y: auto;
    background: var(--page-bg);
    border-left: 1px solid var(--glass-border);
    box-shadow: -20px 0 60px rgba(0,0,0,0.25);
    transition: right 0.4s var(--ease);
    z-index: 940;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; font-size: 1.05rem; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 12px; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg);}
  .nav-toggle.open span:nth-child(2){ opacity: 0;}
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg);}
}
@media (max-width: 560px) {
  section { padding: 68px 0; }
  .grid-4, .grid-3, .about-points, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 28px; }
  .brand-text small { display: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
