:root {
  --bg: #0B0B0B;
  --surface: #141414;
  --surface-2: #1C1C1C;
  --fg: #F5F0E8;
  --fg-muted: rgba(245, 240, 232, 0.5);
  --accent: #FF4F1F;
  --accent-hover: #E64418;
  --accent-dim: rgba(255, 79, 31, 0.12);
  --cream: #FAF6EE;
  --cream-bg: #FAF6EE;
  --border: rgba(245, 240, 232, 0.07);
  --border-light: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(11, 11, 11, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--fg); text-decoration: none; }
.nav-tag { font-size: 12px; font-weight: 500; color: var(--fg-muted); background: var(--surface); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; letter-spacing: 0.02em; }

/* HERO */
.hero { padding: 80px 32px 0; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-dim); border: 1px solid rgba(255, 79, 31, 0.25); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--accent); margin-bottom: 24px; letter-spacing: 0.03em; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-highlight { color: var(--accent); display: block; }
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 480px; line-height: 1.7; }

/* VIDEO CARD */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.video-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.vc-top { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.vc-dot { width: 10px; height: 10px; border-radius: 50%; }
.vc-dot.red { background: #FF5F57; }
.vc-dot.yellow { background: #FEBC2E; }
.vc-dot.green { background: #28C840; }
.vc-label { font-size: 11px; color: var(--fg-muted); margin-left: 4px; font-family: 'DM Sans', sans-serif; }
.vc-body { height: 180px; background: #1a1a1a; position: relative; display: flex; align-items: flex-end; padding: 16px; overflow: hidden; }
.vc-body::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a1a 0%, #222 100%); }
.vc-bar { height: 4px; border-radius: 2px; position: absolute; bottom: 16px; background: var(--accent); opacity: 0.25; }
.vc-bar-1 { left: 16px; width: 60%; height: 80px; bottom: 16px; }
.vc-bar-2 { left: 20px; width: 55%; height: 55px; bottom: 16px; }
.vc-bar-3 { left: 24px; width: 50%; height: 35px; bottom: 16px; }
.vc-bar-4 { left: 28px; width: 45%; height: 18px; bottom: 16px; }
.vc-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
.vc-stats { display: flex; gap: 0; border-top: 1px solid var(--border); }
.vc-stat { flex: 1; text-align: center; padding: 10px; border-right: 1px solid var(--border); }
.vc-stat:last-child { border-right: none; }
.vc-num { display: block; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; }
.vc-lbl { display: block; font-size: 10px; color: var(--fg-muted); margin-top: 2px; }

.htag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.htag { font-size: 12px; padding: 5px 12px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--fg-muted); }

/* HERO STRIP */
.hero-strip { max-width: 1200px; margin: 56px auto 0; padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 0; }
.strip-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.strip-num { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--accent); }
.strip-lbl { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.strip-sep { width: 1px; height: 40px; background: var(--border); }

/* PROOF */
.proof { padding: 80px 32px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: center; }
.proof-stat { padding: 0 40px; }
.proof-num { display: block; font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.proof-text { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.proof-divider { width: 1px; height: 80px; background: var(--border); }

/* SERVICES */
.services { padding: 80px 32px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-sub { font-size: 17px; color: var(--fg-muted); max-width: 540px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: border-color 0.2s; }
.service-card:hover { border-color: rgba(255, 79, 31, 0.3); }
.sc-icon { margin-bottom: 16px; }
.sc-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; font-family: 'Sora', sans-serif; }
.sc-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 16px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tags span { font-size: 11px; padding: 4px 10px; border-radius: 100px; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(255, 79, 31, 0.15); }

/* PRICING */
.pricing { padding: 80px 32px; background: var(--cream-bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing .section-header { margin-bottom: 48px; }
.pricing .section-label { color: var(--accent); }
.pricing .section-title { color: #0B0B0B; }
.pricing .section-sub { color: #6B6560; font-size: 17px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.price-card { background: white; border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; position: relative; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 4px 32px rgba(255, 79, 31, 0.12); }
.pc-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; white-space: nowrap; }
.pc-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pc-price { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: #0B0B0B; margin-bottom: 8px; }
.pc-price span { font-size: 16px; font-weight: 500; color: #9C9690; }
.pc-desc { font-size: 14px; color: #6B6560; margin-bottom: 24px; line-height: 1.5; }
.pc-features { list-style: none; }
.pc-features li { font-size: 14px; color: #3C3935; padding: 6px 0; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 10px; }
.pc-features li::before { content: ''; display: inline-block; width: 16px; height: 16px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.pc-features li::before { background: none; border: 2px solid var(--accent); border-radius: 50%; width: 8px; height: 8px; margin: 0 4px; }
.pricing-note { text-align: center; font-size: 15px; color: #6B6560; }
.pricing-note strong { color: var(--accent); }

/* CLOSING */
.closing { padding: 80px 32px; }
.closing-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.closing-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.closing-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 32px; }
.closing-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ctag { font-size: 13px; padding: 7px 14px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--fg-muted); }
.closing-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.closing-box-text { font-size: 18px; color: var(--fg-muted); text-align: center; margin-bottom: 24px; line-height: 1.6; }
.closing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.closing-tagline { text-align: center; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 0.03em; }

/* FOOTER */
.footer { padding: 40px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; }
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-note { font-size: 12px; color: var(--fg-muted); opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { display: none; }
  .closing-inner { grid-template-columns: 1fr; }
  .hero-strip { flex-wrap: wrap; gap: 16px; }
  .strip-sep { display: none; }
  .strip-item { flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 0; }
  .services { padding: 48px 20px; }
  .pricing { padding: 48px 20px; }
  .closing { padding: 48px 20px; }
  .proof { padding: 48px 20px; }
  .footer { padding: 32px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}