:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #e8e8e8;
  --fg-muted: #888888;
  --accent: #b5ff3b;
  --accent-dim: rgba(181, 255, 59, 0.12);
  --border: #222222;
  --radius: 12px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.accent { color: var(--accent); }

/* ========== HERO ========== */
.hero {
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}

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

.hero-btn-secondary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 80px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-icon {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  min-width: 28px;
}

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

/* ========== FEATURES ========== */
.features {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.feature-block.feature-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(181, 255, 59, 0.04) 100%);
  border-color: rgba(181, 255, 59, 0.15);
}

.feature-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-block p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
}

/* ========== VERTICALS ========== */
.verticals {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.verticals-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.verticals-list {
  display: flex;
  flex-direction: column;
}

.vertical-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px 0;
}

.vertical-divider {
  height: 1px;
  background: var(--border);
}

.vertical-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  min-width: 180px;
}

.vertical-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-align: right;
  max-width: 500px;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-vision {
  background: var(--accent-dim);
  border: 1px solid rgba(181, 255, 59, 0.2);
  border-radius: var(--radius);
  padding: 32px;
}

.closing-vision p {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ========== SHARED SECTION HELPERS ========== */
.section-header {
  margin-bottom: 64px;
  max-width: 700px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 16px;
}

/* ========== NAV ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--fg);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.88; }

/* Hero padding fix so sticky nav doesn't overlap */
.hero { padding-top: 80px; }

/* ========== PRICING ========== */
.pricing {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card--featured {
  border-color: rgba(181, 255, 59, 0.35);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(181, 255, 59, 0.05) 100%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-tier {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

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

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.03em;
}

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

.plan-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

.check {
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-btn {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg);
  background: transparent;
  transition: border-color 0.15s, background 0.15s;
}

.plan-btn:hover {
  border-color: var(--fg-muted);
  background: rgba(255,255,255,0.03);
}

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

.plan-btn--accent:hover {
  opacity: 0.9;
  background: var(--accent);
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.gallery-tab:hover { color: var(--fg); border-color: var(--fg-muted); }

.gallery-tab.active {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

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

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.content-preview {
  padding: 24px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.preview-phone {
  width: 110px;
  height: 190px;
  background: #0a0a0a;
  border-radius: 16px;
  border: 2px solid #333;
  overflow: hidden;
  position: relative;
}

.preview-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 8px;
}

.video-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: linear-gradient(160deg, #1a1a1a 0%, #222 100%);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 8px;
}

.gym-mock { background: linear-gradient(160deg, #111 0%, #1a1f1a 100%); }
.law-mock { background: linear-gradient(160deg, #111320 0%, #1a1a24 100%); }
.re-mock { background: linear-gradient(160deg, #1a1510 0%, #241e14 100%); }

.video-hook {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.video-label {
  font-size: 6px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.3;
}

.reel-mock .video-hook { font-size: 8px; }

.tiktok-ui {
  display: flex;
  justify-content: space-around;
}

.tiktok-stat {
  font-size: 6px;
  color: var(--fg-muted);
}

.ad-mock {
  width: 100%;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.ad-image-area {
  padding: 20px 16px;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.gym-ad-mock .ad-image-area { background: linear-gradient(135deg, #1a1f1a 0%, #1f2a1f 100%); }
.law-ad-mock .ad-image-area { background: linear-gradient(135deg, #111320 0%, #1a1a2a 100%); }
.re-ad-mock .ad-image-area { background: linear-gradient(135deg, #1a1510 0%, #261e10 100%); }

.ad-headline {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}

.ad-cta-bar {
  font-size: 9px;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 4px;
  text-align: center;
  align-self: flex-start;
}

.ad-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #111;
}

.ad-label { font-size: 8px; color: var(--fg-muted); }
.ad-ctr { font-size: 8px; color: var(--accent); font-weight: 600; }

.content-meta {
  padding: 20px 24px;
}

.content-type-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.content-meta h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.content-meta p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.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: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--fg);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

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

.form-submit {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity 0.15s;
  align-self: flex-start;
}

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

.form-result {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-result--success {
  background: rgba(181, 255, 59, 0.1);
  border: 1px solid rgba(181, 255, 59, 0.25);
  color: var(--accent);
}

.form-result--error {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.2);
  color: #ff6060;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

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

.sidebar-icon {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.sidebar-contact-info {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-align: center;
  padding: 8px 0;
}

.sidebar-contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.sidebar-contact-info a:hover { text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
  }
  .hero-stat { flex-direction: row; align-items: baseline; gap: 12px; }
  .stat-number { font-size: 2rem; }

  .problem { padding: 60px 20px; }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-left h2 { position: static; }

  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-block.feature-large { grid-column: span 1; }

  .verticals { padding: 60px 20px; }
  .vertical-item {
    flex-direction: column;
    gap: 8px;
  }
  .vertical-desc { text-align: left; }

  .closing { padding: 80px 20px; }

  .site-footer { padding: 32px 20px; }
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Nav mobile */
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 0.8rem; }

  /* Hero padding mobile */
  .hero { padding-top: 60px; }

  /* Pricing mobile */
  .pricing { padding: 60px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* Gallery mobile */
  .gallery { padding: 60px 20px; }
  .content-grid { grid-template-columns: 1fr; }
  .gallery-tabs { gap: 6px; }
  .gallery-tab { font-size: 0.8rem; padding: 8px 14px; }

  /* Contact mobile */
  .contact { padding: 60px 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .form-submit { width: 100%; text-align: center; }
}