/* ─── VARIABLES ─────────────────────────────── */
:root {
  --gold: #D4A017;
  --gold-lt: #F0C040;
  --dark: #0A0A0A;
  --card: #141414;
  --card2: #1A1A1A;
  --border: #252525;
  --white: #FFFFFF;
  --muted: #777777;
  --text: #CCCCCC;
  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img {
  height: 52px; width: auto; object-fit: contain;
}
.nav-logo-fallback {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 3px; color: var(--white);
}
.nav-logo-fallback span { color: #E8441A; margin-left: 4px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 9px 22px; background: var(--gold); color: #000;
  font-size: 13px; font-weight: 600; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ─── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--card);
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-110%); transition: transform 0.3s ease;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 16px 5%; font-size: 15px; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--white); }
.mob-cta { background: var(--gold) !important; color: #000 !important; font-weight: 600 !important; }

/* Hero logo */
.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo-img { height: 110px; width: auto; object-fit: contain; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: calc(var(--nav-h) + 40px) 5% 120px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 60%, rgba(212,160,23,0.08) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.92; letter-spacing: 2px;
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; background: var(--gold); color: #000;
  font-weight: 600; font-size: 14px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  padding: 14px 32px; background: transparent;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-weight: 500; font-size: 14px; border-radius: 4px;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Hero stats */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,20,20,0.95);
  border-top: 1px solid var(--border);
  padding: 24px 5%;
  gap: 0;
}
.stat { text-align: center; padding: 0 40px; }
.stat-n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--gold); letter-spacing: 2px; }
.stat-l { display: block; font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 0.08em; margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ─── INTRO STRIP ────────────────────────────── */
.intro-strip {
  background: var(--card2);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 28px 5%;
  text-align: center;
}
.intro-strip p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--white); font-weight: 400; max-width: 700px; margin: 0 auto;
}
.intro-strip strong { font-weight: 700; color: var(--gold); }

/* ─── SECTIONS ───────────────────────────────── */
.section { padding: 100px 5%; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 600; line-height: 1.2; margin-bottom: 56px; }
.gold { color: var(--gold); }

/* ─── SERVICES PREVIEW ───────────────────────── */
.services-preview { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { border-color: rgba(212,160,23,0.3); transform: translateY(-3px); }
.svc-card.featured { border-color: var(--gold); }
.svc-card.featured::before { transform: scaleX(1); }
.svc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 99px;
  letter-spacing: 0.05em;
}
.svc-icon { font-size: 28px; }
.svc-card h3 { font-size: 17px; font-weight: 600; color: var(--white); }
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-link { font-size: 12px; color: var(--gold); font-weight: 500; margin-top: 8px; }

/* ─── FEATURE SECTION ────────────────────────── */
.feature-section { background: var(--card2); padding: 100px 5%; }
.feature-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; line-height: 1.2; margin-bottom: 20px; margin-top: 8px; }
.feature-text p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-list li { font-size: 14px; color: var(--text); display: flex; gap: 10px; }
.feature-visual { position: relative; }
.feature-placeholder, .story-placeholder, .intl-placeholder, .reveal-placeholder {
  background: var(--card);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 32px;
}
.fp-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fp-icon { font-size: 40px; }
.fp-text { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--muted); }
.fp-sub { font-size: 11px; color: #444; font-family: 'DM Mono', monospace; }

/* ─── WHY SECTION ────────────────────────────── */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 32px 28px; }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: rgba(212,160,23,0.15); line-height: 1; margin-bottom: 12px; }
.why-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--white); }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─── CLIENTS ────────────────────────────────── */
.clients-strip { background: var(--dark); padding: 60px 5%; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-row { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; align-items: center; }
.client { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--muted); letter-spacing: 0.05em; }
.cdot { color: var(--border); }

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner { background: var(--card2); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); padding: 80px 5%; text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 600; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-dark {
  padding: 14px 32px; background: transparent;
  border: 2px solid var(--gold); color: var(--gold);
  font-weight: 600; font-size: 14px; border-radius: 4px;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost-dark:hover { background: var(--gold); color: #000; transform: translateY(-2px); }
.cta-banner .btn-primary { background: var(--gold); color: #000; }
.cta-banner .btn-primary:hover { background: var(--gold-lt); }

/* ─── FOOTER ─────────────────────────────────── */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 80px 5% 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: #E8441A; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-social { margin-top: 16px; }
.footer-social a { font-size: 13px; color: var(--gold); font-family: 'DM Mono', monospace; }
.footer-links h4, .footer-contact h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; font-family: 'DM Mono', monospace; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-contact a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; font-size: 12px; color: #333; font-family: 'DM Mono', monospace; flex-wrap: wrap; gap: 8px; }

/* ─── PAGE HERO ──────────────────────────────── */
.page-hero {
  background: var(--card2);
  padding: calc(var(--nav-h) + 80px) 5% 80px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.05) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 640px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 600; line-height: 1.1; margin-bottom: 16px; margin-top: 10px; }
.page-hero p { font-size: 16px; color: var(--text); line-height: 1.7; max-width: 520px; }

/* ─── ABOUT ──────────────────────────────────── */
.story-section { background: var(--dark); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; line-height: 1.2; margin-bottom: 24px; margin-top: 8px; }
.story-text p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.story-visual { position: relative; }
.story-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: #E8441A; color: #fff;
  padding: 16px 20px; border-radius: 8px;
  text-align: center;
}
.sb-n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 3px; }
.sb-l { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; margin-top: 2px; }
.values-section { background: var(--card2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 48px 32px; background: var(--dark); border: 1px solid var(--border); border-radius: 8px; }
.value-letter { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.value-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.equipment-section { background: var(--dark); padding: 100px 5%; }
.equipment-inner { max-width: 1200px; margin: 0 auto; }
.equipment-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; margin-bottom: 12px; margin-top: 8px; }
.equip-sub { font-size: 15px; color: var(--muted); margin-bottom: 48px; }
.equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.equip-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.equip-icon { font-size: 28px; margin-bottom: 14px; }
.equip-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.equip-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.intl-section { background: var(--card2); }
.intl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intl-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 20px; margin-top: 8px; }
.intl-text p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 32px; }
.intl-stats { display: flex; gap: 32px; }
.is-item { display: flex; flex-direction: column; }
.is-n { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--gold); line-height: 1; }
.is-l { font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; margin-top: 4px; }
.intl-placeholder { border-radius: 8px; overflow: hidden; }

/* ─── SERVICES PAGE ──────────────────────────── */
.svc-section { max-width: 1200px; margin: 0 auto; }
.svc-section.alt-bg { background: var(--card2); max-width: 100%; padding: 100px 5%; }
.svc-section.alt-bg .svc-section { max-width: 1200px; margin: 0 auto; }
.svc-section-header { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 48px; }
.svc-section-icon { font-size: 44px; flex-shrink: 0; margin-top: 4px; }
.svc-section-header h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; margin-bottom: 12px; margin-top: 4px; }
.svc-intro { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 620px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.pricing-grid.two-col { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.pkg-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 32px 28px; display: flex; flex-direction: column; gap: 0; position: relative; }
.pkg-card.featured { border-color: var(--gold); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; font-size: 10px; font-weight: 700; padding: 3px 16px; border-radius: 99px; white-space: nowrap; letter-spacing: 0.05em; }
.pkg-top { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pkg-name { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.pkg-price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--gold); letter-spacing: 1px; line-height: 1; margin-bottom: 6px; }
.pkg-card.featured .pkg-price { color: var(--gold); }
.pkg-note { font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; }
.pkg-list { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.pkg-list li { font-size: 13px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.pkg-list li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.btn-pkg { display: block; text-align: center; padding: 12px; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-size: 13px; font-weight: 600; border-radius: 4px; transition: all 0.2s; margin-top: auto; }
.btn-pkg:hover { background: var(--gold); color: #000; }
.pkg-card.featured .btn-pkg { background: var(--gold); color: #000; }
.pkg-card.featured .btn-pkg:hover { background: var(--gold-lt); }
.reveal-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 48px; }
.reveal-text h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; line-height: 1.3; margin-bottom: 14px; margin-top: 8px; }
.reveal-text p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.staging-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: var(--dark); border-radius: 8px; padding: 40px; }
.ss-item { text-align: center; }
.ss-n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold); line-height: 1; }
.ss-l { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
.addons-section { background: var(--dark); max-width: 1200px; margin: 0 auto; }
.addons-grid { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.addon-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.addon-row:last-child { border-bottom: none; }
.addon-row:nth-child(even) { background: var(--card2); }
.addon-row:nth-child(odd) { background: var(--card); }
.addon-price { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--gold); white-space: nowrap; margin-left: 16px; }
.addons-note { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; }

/* ─── CONTACT PAGE ───────────────────────────── */
.contact-section { background: var(--dark); }
.contact-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; }
.contact-form-wrap h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 600; margin-bottom: 10px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; font-family: 'DM Mono', monospace; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--card2); border: 1px solid var(--border); border-radius: 4px;
  padding: 12px 16px; color: var(--white); font-size: 14px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--card2); }
.form-group textarea { resize: vertical; }
.btn-submit {
  padding: 15px 32px; background: var(--gold); color: #000;
  font-size: 15px; font-weight: 700; border: none; border-radius: 4px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em; font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); }
.form-note a { color: var(--gold); }
.form-success { display: none; text-align: center; padding: 60px 32px; background: var(--card); border: 1px solid var(--gold); border-radius: 8px; }
.form-success.visible { display: block; }
.success-icon { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.form-success p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.form-success a { color: var(--gold); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.ci-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci-label { display: block; font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { display: block; font-size: 14px; color: var(--white); font-weight: 500; line-height: 1.5; }
a.ci-value:hover { color: var(--gold); }
.wa-card { background: var(--card2); border-color: rgba(37,211,102,0.3); text-align: center; }
.wa-icon { font-size: 36px; margin-bottom: 12px; }
.wa-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.btn-wa { display: inline-block; padding: 12px 28px; background: #25D366; color: #000; font-weight: 700; font-size: 14px; border-radius: 4px; transition: all 0.2s; }
.btn-wa:hover { background: #1fba58; transform: translateY(-1px); }
.hours-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.hours-row:last-of-type { border-bottom: none; }
.muted { color: var(--muted); }
.hours-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.faq-section { background: var(--card2); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.faq-item { background: var(--dark); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.faq-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.faq-item p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 0; padding: 16px 5%; }
  .stat { padding: 12px 20px; }
  .stat-div { display: none; }
  .feature-inner, .story-inner, .intl-inner, .reveal-feature { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .staging-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .story-badge { bottom: -10px; right: -10px; }
}
@media (max-width: 600px) {
  .section { padding: 60px 5%; }
  .hero { padding: calc(var(--nav-h) + 24px) 5% 100px; }
  .hero-title { font-size: 18vw; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .pricing-grid, .pricing-grid.two-col { grid-template-columns: 1fr; }
  .staging-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .intl-stats { flex-direction: column; gap: 16px; }
}

/* ─── NAV DROPDOWN ───────────────────────────── */
.has-dropdown { position: relative; }
.has-dropdown > a { cursor: pointer; }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
  padding: 6px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block; padding: 10px 18px;
  font-size: 13px; color: var(--muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dropdown li a:hover, .dropdown li a.active {
  color: var(--gold); background: rgba(212,160,23,0.06);
}
.dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--border);
  border-top: none;
}

/* ─── TRUCK SECTION ──────────────────────────── */
.truck-section { background: var(--dark); padding: 80px 5%; }
.truck-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.truck-image-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.truck-img { width: 100%; height: auto; display: block; border-radius: 8px; }
.truck-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: #000;
  padding: 12px 18px; border-radius: 6px;
  line-height: 1.2;
}
.tb-top { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.tb-main { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 3px; line-height: 1; }
.tb-sub { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; }
.truck-details h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 600; margin-bottom: 16px; margin-top: 8px; line-height: 1.2; }
.truck-details p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.truck-specs { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 20px; border: 1px solid var(--border); border-radius: 8px; padding: 20px; background: var(--card); }
.spec-item { display: flex; gap: 12px; align-items: flex-start; }
.spec-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.spec-label { display: block; font-size: 10px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.spec-value { display: block; font-size: 14px; color: var(--white); font-weight: 500; margin-top: 2px; }
.gold-text { color: var(--gold) !important; font-weight: 700 !important; }
.truck-availability { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.avail-dot { width: 8px; height: 8px; background: #27AE60; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px rgba(39,174,96,0.6); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.truck-availability strong { color: var(--white); }

/* ─── EQUIPMENT SECTIONS ─────────────────────── */
.equip-section { max-width: 1200px; margin: 0 auto; }
.equip-section.alt-bg { background: var(--card2); max-width: 100%; padding: 80px 5%; }
.equip-section-header { margin-bottom: 40px; }
.equip-section-header h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; margin-bottom: 10px; margin-top: 6px; }
.equip-intro { font-size: 15px; color: var(--muted); max-width: 600px; line-height: 1.6; }
.equip-grid-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.equip-category { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.equip-category h3 { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-family: 'DM Mono', monospace; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.equip-list { display: flex; flex-direction: column; gap: 8px; }
.equip-list li { font-size: 13px; color: var(--text); line-height: 1.5; display: flex; gap: 8px; }
.qty { color: var(--gold); font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500; min-width: 28px; flex-shrink: 0; margin-top: 1px; }

/* ─── RENTAL PRICING ─────────────────────────── */
.rental-pricing { background: var(--dark); padding: 80px 5%; }
.rental-pricing-inner { max-width: 1200px; margin: 0 auto; }
.rental-pricing-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; margin-bottom: 14px; margin-top: 8px; }
.rental-pricing-inner > p { font-size: 15px; color: var(--muted); margin-bottom: 40px; max-width: 600px; line-height: 1.6; }
.rate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 24px; }
.rate-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; text-align: center; }
.rate-card.featured { border-color: var(--gold); }
.rate-icon { font-size: 32px; margin-bottom: 12px; }
.rate-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.rate-price { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--gold); letter-spacing: 1px; line-height: 1; margin-bottom: 10px; }
.rate-price span { font-size: 18px; }
.rate-note { font-size: 12px; color: var(--muted); line-height: 1.6; flex: 1; }
.rental-terms { font-size: 12px; color: #444; font-family: 'DM Mono', monospace; text-align: center; }

@media (max-width: 900px) {
  .truck-inner { grid-template-columns: 1fr; gap: 40px; }
  .dropdown { left: 0; transform: none; }
  .has-dropdown:hover .dropdown { transform: none; }
}

/* ─── RATE CARD DOWNLOAD ─────────────────────── */
.rate-download-section { background: var(--card2); padding: 80px 5%; }
.rate-download-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.rd-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 600; line-height: 1.2; margin-bottom: 14px; margin-top: 8px; }
.rd-text p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.rd-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.rd-note { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; }
.rd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rd-item { background: var(--dark); border: 1px solid var(--border); border-radius: 6px; padding: 14px 12px; display: flex; flex-direction: column; gap: 4px; }
.rd-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); line-height: 1; }
.rd-label { font-size: 12px; color: var(--muted); line-height: 1.4; }
.rd-label small { color: #555; font-size: 11px; }

@media (max-width: 900px) {
  .rate-download-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── PHOTOGRAPHY PAGE ───────────────────────── */
.photo-gallery-section { padding: 80px 5%; background: var(--dark); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.photo-item { position: relative; overflow: hidden; border-radius: 8px; background: var(--card); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.04); }
.photo-item.tall { grid-row: span 2; }
.photo-item.wide { grid-column: span 2; }
.photo-item { height: 300px; }
.photo-item.tall { height: 612px; }
.photo-item.wide { height: 300px; }
.photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 32px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.photo-item:hover .photo-overlay { transform: translateY(0); }
.photo-overlay span { font-size: 13px; color: var(--gold); font-family: 'DM Mono', monospace; letter-spacing: 0.08em; }

/* Discount banner */
.discount-banner {
  background: var(--card2);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 60px 5%;
  text-align: center;
}
.discount-inner { max-width: 700px; margin: 0 auto; }
.discount-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.discount-banner h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 600; margin-bottom: 14px; color: var(--white); }
.discount-banner p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

/* Photo packages */
.photo-packages-section { background: var(--dark); }
.photo-pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.photo-pkg-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; position: relative; }
.photo-pkg-card.featured { border-color: var(--gold); }
.photo-pkg-top { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.photo-pkg-icon { font-size: 32px; margin-bottom: 10px; }
.photo-pkg-name { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.photo-pkg-price { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.photo-pkg-price span { font-size: 16px; font-family: 'DM Sans', sans-serif; color: var(--muted); }
.photo-pkg-note { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; }
.photo-pkg-addon { font-size: 12px; color: var(--gold); background: rgba(212,160,23,0.08); border-radius: 4px; padding: 6px 10px; margin: 16px 0; font-family: 'DM Mono', monospace; }

@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-item.tall { grid-row: span 1; height: 280px; }
  .photo-item.wide { grid-column: span 2; }
  .photo-item { height: 240px; }
}
@media (max-width: 600px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-item.wide { grid-column: span 1; }
  .photo-item.tall, .photo-item { height: 280px; grid-row: span 1; }
}
