:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --fg: #F2F2F2;
  --fg-muted: #8A8A8A;
  --accent: #FF4D00;
  --accent-warm: #FF6B2B;
  --border: #2A2A2A;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 100px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,77,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-tags span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* OVERLINE */
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* NICHES */
.niches {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-header { margin-bottom: 64px; }
.niches-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.niche {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.niche:hover { background: var(--surface-2); }
.niche-icon {
  font-size: 32px;
  margin-bottom: 20px;
  filter: grayscale(0);
}
.niche h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.niche p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.pricing-note {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  border-radius: 2px;
}
.plan-premium {
  border-color: var(--accent);
  background: var(--surface-2);
}
.plan-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,77,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.plan-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.plan-header { margin-bottom: 28px; }
.plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.plan-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: normal;
}
.plan-tagline {
  font-size: 15px;
  color: var(--fg-muted);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 4px;
}
.plan-cta {
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.pricing-clarity {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* PROCESS */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 56px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 80px;
  opacity: 0.7;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step-body p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
}
.process-note {
  margin-top: 48px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.closing-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 800;
  color: var(--surface-2);
  letter-spacing: -0.06em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.closing-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.closing-content { max-width: 700px; }
.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-content p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-stat {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent) !important;
}

/* FOOTER */
footer {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--fg);
}
.footer-inner p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-warm) !important; }

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* CONTACT PAGE */
.contact-hero {
  padding: 140px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.contact-hero-inner { max-width: 700px; margin: 0 auto; }
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

.contact-form-section { padding: 80px 48px; }
.contact-form-inner { max-width: 700px; margin: 0 auto; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface-2); }

.form-submit {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--accent-warm); }

.form-success { text-align: center; padding: 60px 0; }
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--bg);
  margin: 0 auto 32px;
}
.form-success h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-success p { color: var(--fg-muted); font-size: 16px; margin-bottom: 32px; }
.btn-back { font-size: 14px; color: var(--fg-muted); text-decoration: none; }
.btn-back:hover { color: var(--fg); }

/* SAMPLES PAGE */
.samples-hero {
  padding: 140px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.samples-hero-inner { max-width: 900px; margin: 0 auto; }
.samples-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.samples-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.7; max-width: 560px; }

.samples-grid-section { padding: 80px 48px; }
.samples-grid-inner { max-width: 1200px; margin: 0 auto; }
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sample-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.sample-card:hover { border-color: var(--accent); }

.sample-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--surface-2);
}
.sample-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sample-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s;
}
.sample-video-wrap:hover .sample-play-icon { opacity: 1; }
.sample-handle {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.sample-info { padding: 24px; }
.sample-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.sample-info h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sample-info p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 16px; }
.sample-specs {
  font-size: 11px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  line-height: 1.5;
}

.samples-cta {
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.samples-cta-inner { max-width: 600px; margin: 0 auto; }
.samples-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.samples-cta p { color: var(--fg-muted); font-size: 16px; margin-bottom: 32px; }
.samples-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s;
}
.samples-cta-btn:hover { background: var(--accent-warm); }

@media (max-width: 768px) {
  .samples-hero { padding: 120px 24px 60px; }
  .samples-grid-section { padding: 60px 24px; }
  .samples-grid { grid-template-columns: 1fr; }
  .samples-cta { padding: 60px 24px; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .niches { padding: 72px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .pricing { padding: 72px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process { padding: 72px 24px; }
  .step { gap: 20px; flex-direction: column; }
  .closing { padding: 80px 24px; }
  footer { padding: 48px 24px; }
  .closing-bg-text { font-size: 80px; right: -10px; }
  .contact-form-section { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .plan-price { font-size: 42px; }
}