/* ============================================
   JMMC INDIA — Landing Page Styles
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a8a;
  --line: #e6e8ec;
  --accent: #0052ff;
  --accent-warm: #b85c2e;
  --beam: #ffd28a;

  --font-sans: 'Geist', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--ink-mute);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
/* .nav.on-dark:not(.is-scrolled) { color: #fff; } */
/* .nav.on-dark:not(.is-scrolled) .logo-img { filter: brightness(0) invert(1); } */

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 28px; width: auto; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  letter-spacing: -0.01em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--accent); }
.nav.on-dark:not(.is-scrolled) .nav-cta { background: #fff; color: var(--ink); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.nav-burger span {
  display: block; width: 16px; height: 1.5px; background: currentColor;
  position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor;
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 100px;
  padding-bottom: clamp(40px, 6vw, 80px);
}

/* Spotlight beam — follows cursor */
.hero-stage {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-spot {
  position: absolute; inset: 0;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 40%),
      rgba(255, 210, 138, 0.55) 0%,
      rgba(255, 210, 138, 0.28) 8%,
      rgba(255, 210, 138, 0.12) 18%,
      rgba(255, 210, 138, 0.04) 30%,
      rgba(0,0,0,0) 45%
    );
  mix-blend-mode: screen;
  transition: background .15s ease-out;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at var(--mx,50%) var(--my,40%), #000 0%, #000 25%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at var(--mx,50%) var(--my,40%), #000 0%, #000 25%, transparent 60%);
}

/* Bulb that lights up under the spotlight */
.hero-bulb {
  position: absolute;
  top: 18%;
  right: 8%;
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1;
  pointer-events: none;
}
.hero-bulb svg { width: 100%; height: 100%; overflow: visible; }
.hero-bulb .glow {
  filter: blur(40px);
  opacity: var(--bulb-on, 0);
  transition: opacity .2s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta .mono { color: rgba(255,255,255,0.6); }

.hero-title {
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  padding-right:15px;
}
.hero-title .accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(180deg, #fff 40%, var(--beam) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.hero-sub p {
  max-width: 520px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  justify-content: center;
  padding: 14px 24px 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.hero-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.hero-cta .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.hero-cta:hover .arrow { background: #fff; color: var(--accent); }

.hero-hint {
  position: absolute;
  left: var(--pad);
  top: 38%;
  z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-hint .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--beam);
  box-shadow: 0 0 12px var(--beam);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ============ STATS ============ */
.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 80px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 8px 24px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1;
}
.stat-num .unit { color: var(--accent); }
.stat-label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ ABOUT ============ */
.about {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
}
.section-head h2 .accent {
  font-style: italic; font-weight: 300; color: var(--accent-warm);
}
.section-head .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  align-self: end;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap {
  background: var(--bg);
  padding: 32px 24px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .3s ease, color .3s ease;
  position: relative;
}
.cap:hover { background: var(--ink); color: #fff; }
.cap:hover .cap-num { color: var(--beam); }
.cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  transition: color .3s ease;
}
.cap-title {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-top: 12px;
}
.cap-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin-top: 16px;
}
.cap:hover .cap-desc { color: rgba(255,255,255,0.7); }

/* ============ BROCHURES (showstopper #2) ============ */
.brochures {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.brochures::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 82, 255, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(184, 92, 46, 0.18), transparent 50%);
  pointer-events: none;
}
.brochures .section-head h2 { color: #fff; }
.brochures .section-head .lede { color: rgba(255,255,255,0.7); }
.brochures .eyebrow { color: rgba(255,255,255,0.6); }
.brochures .eyebrow::before { background: rgba(255,255,255,0.4); }

.brochure-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.brochure {
  position: relative;
  background: #15161a;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
  overflow: hidden;
}
.brochure:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}
.brochure-tag {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.brochure-tag .pill {
  padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15);
  font-size: 10px;
}

/* Mock book */
.book {
  --w: 220px;
  --h: 300px;
  position: relative;
  width: var(--w); height: var(--h);
  margin: 8px auto 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.book-cover, .book-page {
  position: absolute; inset: 0;
  transform-origin: left center;
  backface-visibility: hidden;
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
  box-shadow: 6px 8px 28px rgba(0,0,0,0.6), 1px 0 0 rgba(255,255,255,0.06);
}
.book-cover {
  background: linear-gradient(135deg, #1a1c20 0%, #2a2d33 100%);
  z-index: 3;
  display: flex; flex-direction: column;
  padding: 24px;
  border-left: 3px solid var(--accent);
}
.book-cover.warm { border-left-color: var(--accent-warm); }
.book-cover .bk-mono {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.book-cover .bk-title {
  margin-top: auto;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 500;
}
.book-cover .bk-vol {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; color: rgba(255,255,255,0.4);
}
.book-page {
  background: #f6f4ef;
  color: #111;
  padding: 18px;
  z-index: 2;
  display: flex; flex-direction: column;
  transform: translateX(2px);
}
.book-page .bp-num {
  font-family: var(--font-mono);
  font-size: 9px; color: #999; letter-spacing: 0.12em;
}
.book-page .bp-h {
  font-size: 14px; letter-spacing: -0.01em; margin-top: 8px;
}
.book-page .bp-rows { margin-top: auto; display: flex; flex-direction: column; gap: 4px; }
.book-page .bp-row { height: 4px; background: #ddd; border-radius: 2px; }
.book-page .bp-row:nth-child(1) { width: 70%; }
.book-page .bp-row:nth-child(2) { width: 90%; }
.book-page .bp-row:nth-child(3) { width: 50%; }

.brochure:hover .book-cover {
  transform: rotateY(-32deg);
}

.brochure-cta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.brochure-cta .label { font-size: 14px; }
.brochure-cta .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
}
.brochure:hover .brochure-cta .arrow {
  transform: rotate(-45deg);
  background: var(--accent);
  color: #fff;
}

/* ============ FAQ ============ */
.faq {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-soft);
}
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  gap: 24px;
}
.faq-q .q-text {
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.015em;
  font-weight: 500;
}
.faq-q .q-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, color .3s ease;
}
.faq-item.is-open .q-icon {
  background: var(--ink); color: #fff; border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.6;
}
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 0 28px; max-width: 64ch; }

/* ============ CONTACT ============ */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 24px;
}
.contact-info h3 .accent { font-style: italic; font-weight: 300; color: var(--accent); }
.contact-info p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 48ch;
}

.contact-channels { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .2s ease, transform .2s ease;
}
.channel:hover { border-color: var(--ink); transform: translateX(4px); }
.channel .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel .icon.wa { background: #25d366; color: #fff; }
.channel .label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.channel .value { font-size: 16px; letter-spacing: -0.01em; margin-top: 2px; }

.contact-form {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field textarea, .field select {
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  margin-top: 8px;
  transition: background .2s ease, transform .2s ease;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }

.form-success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  border: 1px solid #c5e1c8;
  border-radius: 4px;
  color: #1b5e20;
  font-size: 14px;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ============ MAP ============ */
.map-section {
  padding-bottom: clamp(80px, 12vw, 160px);
}
.map-wrap {
  position: relative;
  height: clamp(320px, 50vw, 520px);
  background: var(--bg-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05);
}
.map-pin {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  padding: 20px 24px;
  border: 1px solid var(--line);
  max-width: 320px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.map-pin h4 { font-size: 16px; letter-spacing: -0.01em; }
.map-pin p { font-size: 13px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }
.map-pin .mono { margin-bottom: 6px; display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(60px, 8vw, 100px) 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-img {  height: 32px; }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 38ch; line-height: 1.55; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  animation: wa-ring 2.4s ease-out infinite;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.03);
}
.wa-fab svg { width: 22px; height: 22px; }
.wa-fab .wa-text {
  display: inline;
}
@keyframes wa-ring {
  0% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ MOBILE NAV DRAWER ============ */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 70;
  background: var(--bg-dark);
  color: #fff;
  display: none;
  flex-direction: column;
  padding: 24px var(--pad);
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer .md-top {
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-drawer .md-top .logo-img { filter: brightness(0) invert(1); }
.mobile-drawer .md-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mobile-drawer .md-links {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-drawer .md-links a {
  padding: 18px 0;
  font-size: 32px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-drawer .md-foot {
  margin-top: auto; padding-top: 32px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }

  .hero-bulb { top: 12%; right: 4%; opacity: 0.6; }
  .hero-hint { display: none; }
  .hero-sub { grid-template-columns: 1fr; gap: 24px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: none; }
  .stats-grid .stat:nth-child(n+3) { padding-top: 32px; border-top: 1px solid var(--line); }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .brochure-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .wa-fab .wa-text { display: none; }
  .wa-fab { padding: 14px; }
}

@media (max-width: 540px) {
  .capabilities { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px; }
}

/* ============ TWEAK FALLBACK ============ */
[data-theme="warm"] {
  --bg: #faf8f3;
  --bg-soft: #f0ebe0;
  --bg-dark: #1a1612;
  --line: #e6dfcf;
  --accent: #b85c2e;
  --accent-warm: #b85c2e;
  --beam: #ffd28a;
}
[data-theme="electric"] {
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --bg-dark: #0a0a0a;
  --line: #e6e8ec;
  --accent: #0052ff;
  --accent-warm: #b85c2e;
  --beam: #ffd28a;
}
[data-theme="mono"] {
  --bg: #ffffff;
  --bg-soft: #f4f4f4;
  --bg-dark: #0a0a0a;
  --line: #e6e6e6;
  --accent: #0a0a0a;
  --accent-warm: #555555;
  --beam: #ffd28a;
}
