:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f5f5f0;
  --fg-muted: #8a8a80;
  --fg-dim: #5a5a54;
  --accent: #e8ff47;
  --accent-dim: rgba(232, 255, 71, 0.12);
  --accent-glow: rgba(232, 255, 71, 0.06);
  --border: #2a2a28;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 42, 40, 0.6);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-cta {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #0a0a0a !important;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; color: #0a0a0a !important; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(232, 255, 71, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 100px;
  transition: opacity 0.2s;
  display: inline-block;
}

.hero-btn-primary:hover { opacity: 0.88; }

.hero-btn-secondary {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.hero-btn-secondary:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}

.hero-accent {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ============ SECTION LABELS ============ */
.problem-label,
.packages-label,
.how-label,
.gallery-label,
.contact-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ============ PROBLEM ============ */
.problem {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 60px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s ease;
}

.problem-card:hover { border-color: rgba(232, 255, 71, 0.2); }

.problem-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.problem-card h3 { font-size: 1.2rem; margin-bottom: 12px; }

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============ PACKAGES / PRICING ============ */
.packages {
  padding: 120px 40px;
}

.packages-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.packages h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 60px;
  max-width: 700px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card-entry {
  border-color: var(--border);
}

.pricing-card-entry:hover { border-color: rgba(232, 255, 71, 0.2); }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover { border-color: rgba(232, 255, 71, 0.2); }

.pricing-card-featured {
  border-color: rgba(232, 255, 71, 0.35);
  background: linear-gradient(160deg, #1e1e18 0%, #1a1a1a 100%);
}

.pricing-card-featured:hover { border-color: rgba(232, 255, 71, 0.6); }

.plan-badge {
  position: absolute;
  top: -13px; left: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card-header { margin-bottom: 32px; }

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.plan-tagline {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.plan-includes {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg);
}

.check {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
}

.check.muted { color: var(--fg-dim); }
.muted-feature { color: var(--fg-dim); }

.plan-cta {
  display: block;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  transition: opacity 0.2s, border-color 0.2s;
}

.plan-cta-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.plan-cta-primary:hover { opacity: 0.88; }

.plan-cta-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.plan-cta-secondary:hover { border-color: var(--fg-muted); }

.plan-fine {
  font-size: 0.875rem;
  color: var(--fg-dim);
  text-align: center;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 48px;
  max-width: 700px;
}

.gallery-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.gallery-tab {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-tab:hover { color: var(--fg); }
.gallery-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sample-grid-video { grid-template-columns: repeat(3, 1fr); }
.sample-grid-flyers { grid-template-columns: repeat(3, 1fr); }

.sample-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.sample-card:hover {
  border-color: rgba(232, 255, 71, 0.25);
  transform: translateY(-2px);
}

.sample-canvas {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-canvas {
  aspect-ratio: 9 / 16;
  max-height: 360px;
  background: #0d0d12;
}

.flyer-canvas {
  aspect-ratio: 8.5 / 11;
  background: #111;
}

.sample-meta {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.sample-type {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
}

.sample-size { font-size: 0.75rem; color: var(--fg-dim); }

.gallery-note {
  font-size: 0.875rem;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 680px;
}

/* ---- Mock Graphics ---- */
.mock-graphic {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* G1 */
.mock-g1 { text-align: center; }
.mg-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.mg-logo-spot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 71, 0.3);
  margin: 0 auto 16px;
}
.mg-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 8px;
}
.mg-sub {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mg-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* G2 */
.mock-g2 { text-align: center; }
.mg-bg-stripe {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  background: var(--accent-dim);
}
.mg-promo-label {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.mg-promo-pct {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.mg-promo-pct span { font-size: 0.7em; vertical-align: super; margin-left: 2px; }
.mg-cta-pill {
  position: relative;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
}

/* G3 */
.mock-g3 { align-items: center; justify-content: center; }
.mg-story-frame {
  width: 75%;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.mg-story-top {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 71, 0.3);
  margin: 0 auto 10px;
}
.mg-story-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 6px;
}
.mg-story-attrib { font-size: 0.6rem; color: var(--fg-dim); margin-bottom: 10px; }
.mg-story-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

/* G4 */
.mock-g4 { padding: 16px 18px; width: 100%; height: 100%; }
.mg-hours-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mg-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--fg);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.mg-hours-row:last-of-type { border-bottom: none; }
.mg-hours-tag {
  font-size: 0.55rem;
  color: var(--fg-dim);
  margin-top: 10px;
  text-align: right;
  letter-spacing: 0.05em;
}

/* ---- Mock Video ---- */
.video-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.video-phone-frame {
  width: 88%;
  max-width: 120px;
  aspect-ratio: 9 / 19;
  border-radius: 16px;
  border: 2px solid #2a2a3a;
  overflow: hidden;
  background: #0a0a12;
  position: relative;
}

.video-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #12121e 0%, #0a0a14 60%, #1a1218 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 8px;
  position: relative;
  overflow: hidden;
}

.video-screen-2 {
  background: linear-gradient(180deg, #0f1a0f 0%, #0a110a 100%);
  align-items: center;
  justify-content: center;
}

.video-screen-3 {
  background: linear-gradient(180deg, #1a0f0f 0%, #110a0a 100%);
  align-items: center;
  justify-content: center;
}

.video-overlay-text { margin-bottom: 20px; }
.vot-small {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2px;
}
.vot-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.video-ticker {
  display: flex;
  gap: 4px;
  font-size: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.video-product-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.video-price-drop { text-align: center; margin-bottom: 8px; }
.vpd-was { font-size: 0.5rem; color: var(--fg-dim); text-decoration: line-through; }
.vpd-now {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.video-swipe { font-size: 0.45rem; color: var(--fg-muted); letter-spacing: 0.04em; }
.video-testimonial { text-align: center; }
.vt-stars { font-size: 0.55rem; color: var(--accent); margin-bottom: 6px; letter-spacing: 1px; }
.vt-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 4px;
}
.vt-name { font-size: 0.45rem; color: var(--fg-dim); }
.video-play-hint {
  position: absolute;
  top: 8px; right: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.4rem;
  font-weight: 600;
  color: rgba(245, 245, 240, 0.5);
  background: rgba(0,0,0,0.4);
  padding: 2px 5px;
  border-radius: 4px;
}

/* ---- Mock Flyers ---- */
.mock-flyer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

/* F1 */
.mock-f1 { background: #0f0f0f; justify-content: space-between; }
.mf-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.mf-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--accent);
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mf-business {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.mf-event {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.05;
  letter-spacing: -0.01em;
  flex: 1;
  display: flex;
  align-items: center;
}
.mf-details { margin-top: auto; }
.mf-date { font-size: 0.55rem; color: var(--fg); margin-bottom: 3px; }
.mf-addr { font-size: 0.5rem; color: var(--fg-muted); }
.mf-footer {
  margin-top: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 4px 8px;
  text-align: center;
  border-radius: 4px;
}

/* F2 */
.mock-f2 {
  background: #0a1a0a;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.mf2-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 100px;
}
.mf2-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.1;
}
.mf2-offer {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.2;
}
.mf2-offer span {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.mf2-dates { font-size: 0.5rem; color: var(--fg-dim); letter-spacing: 0.04em; }
.mf2-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* F3 */
.mock-f3 { background: #0f0f1a; justify-content: space-between; }
.mf3-now-hiring {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(232, 255, 71, 0.2);
}
.mf3-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.mf3-list {
  font-size: 0.5rem;
  color: var(--fg-muted);
  line-height: 1.8;
}
.mf3-apply { font-size: 0.5rem; color: var(--accent); margin-top: 8px; font-weight: 600; }

/* ============ HOW IT WORKS ============ */
.how {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 60px;
  max-width: 700px;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
  opacity: 0.4;
}

.step-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-content p { color: var(--fg-muted); font-size: 0.95rem; }

/* ============ CLOSING ============ */
.closing {
  padding: 140px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 24px; }

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 48px;
}

.closing-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.closing-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 71, 0.2);
  border-radius: var(--radius);
  padding: 18px 28px;
}

.closing-stat-featured { border-color: rgba(232, 255, 71, 0.4); }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label { color: var(--fg-muted); font-size: 0.875rem; }

.closing-cta {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 100px;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.closing-cta:hover { opacity: 0.88; }
.closing-fine { font-size: 0.85rem; color: var(--fg-dim); }

/* ============ CONTACT ============ */
.contact {
  padding: 120px 40px;
  background: var(--bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  max-width: 700px;
}

.contact-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 560px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row { display: flex; flex-direction: column; gap: 24px; }
.form-row-2 { flex-direction: row; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(232, 255, 71, 0.4); }

.form-group textarea { resize: vertical; min-height: 100px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  font-size: 0.8rem;
  pointer-events: none;
}

.form-submit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.form-submit:hover:not(:disabled) { opacity: 0.88; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  align-items: center;
  gap: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 71, 0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.success-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.success-msg { font-size: 0.95rem; color: var(--fg); }

.form-error {
  font-size: 0.875rem;
  color: #ff6b6b;
  padding: 12px 0;
}

.form-error a { color: var(--accent); text-decoration: underline; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.aside-icon { font-size: 1.2rem; margin-bottom: 8px; }

.aside-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  margin-bottom: 4px;
}

.aside-value { font-size: 0.9rem; color: var(--fg); font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.footer-tagline { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 4px; }
.footer-location { color: var(--fg-dim); font-size: 0.85rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); }
  .sample-grid-video { grid-template-columns: repeat(2, 1fr); }
  .sample-grid-flyers { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 100px 24px 60px; min-height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-accent { width: 300px; height: 300px; top: -10%; right: -20%; }
  .problem, .packages, .how, .gallery, .closing, .contact { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-row-2 { flex-direction: column; }
  .gallery-tab { padding: 10px 16px; font-size: 0.85rem; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); }
  .sample-grid-video, .sample-grid-flyers { grid-template-columns: 1fr; max-width: 280px; }
  .step { gap: 20px; }
  .step-num { font-size: 2rem; min-width: 40px; }
  .closing-stats { flex-direction: column; align-items: center; }
  .closing-stat { padding: 16px 24px; }
  .contact-aside { grid-template-columns: 1fr; }
}
