:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #ff6b35;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --gradient: linear-gradient(135deg, #ff6b35, #ff3366);
  --green: #22c55e;
  --red: #ef4444;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: '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;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.problem-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.problem-card.bad {
  opacity: 0.7;
}

.problem-card.good {
  border-color: rgba(255, 107, 53, 0.3);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, var(--bg-elevated) 100%);
}

.problem-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.problem-card.bad .problem-icon { color: var(--red); }
.problem-card.good .problem-icon { color: var(--green); }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ===== PACKAGES ===== */
.packages {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

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

.package-card {
  padding: 32px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.package-card.featured {
  border-color: rgba(255, 107, 53, 0.4);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.06) 0%, var(--bg-elevated) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.package-tier {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.package-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.package-card ul {
  list-style: none;
}

.package-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
}

.package-card li:last-child {
  padding-bottom: 0;
}

/* ===== PROCESS ===== */
.process {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.step-line {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin: 0 auto;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-content {
  max-width: 750px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact {
  color: var(--accent);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero { padding: 80px 20px 60px; }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .closing { padding: 80px 20px; }
}
/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

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

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

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 8px 20px;
  background: var(--gradient) \!important;
  color: white \!important;
  border-radius: 8px;
  font-weight: 500;
  font-family: var(--font-display);
  transition: opacity 0.2s ease \!important;
}

.nav-cta:hover { opacity: 0.88 \!important; }

/* Push hero down to clear fixed nav */
.hero { padding-top: 160px \!important; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Package-level CTA */
.btn-package {
  display: block;
  margin-top: 24px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-package:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-package-featured {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

.btn-package-featured:hover {
  opacity: 0.88;
  color: white;
  background: var(--gradient);
  border-color: transparent;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.portfolio-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease;
}

.portfolio-item:hover { border-color: rgba(255, 107, 53, 0.2); }

.portfolio-before-after {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.portfolio-side {
  flex: 1;
}

.side-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

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

.portfolio-arrow {
  color: var(--fg-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Mock thumbnail */
.mock-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.mock-thumbnail.raw {
  background: #1a1a26;
  border: 1px solid var(--border);
}

.mock-thumbnail.edited {
  background: linear-gradient(135deg, #1a1426 0%, #26181a 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.mock-thumbnail.edited.gaming {
  background: linear-gradient(135deg, #12261a 0%, #1a2616 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.mock-thumb-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-bar {
  height: 4px;
  border-radius: 2px;
}

.mock-bar.wide { width: 80%; }
.mock-bar.medium { width: 55%; }
.mock-bar.short { width: 35%; }
.mock-bar.dim { background: rgba(255,255,255,0.1); }
.mock-bar.bright { background: rgba(255, 107, 53, 0.6); }
.mock-bar.accent-bar { background: rgba(255, 51, 102, 0.5); }
.mock-bar.green-bar { background: rgba(34, 197, 94, 0.6); }

.mock-face {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: 4px;
  align-self: flex-end;
}

.mock-face.plain { background: rgba(255,255,255,0.12); }
.mock-face.excited { background: var(--gradient); box-shadow: 0 0 8px rgba(255,107,53,0.4); }
.mock-face.shocked { background: linear-gradient(135deg, #22c55e, #10b981); box-shadow: 0 0 8px rgba(34,197,94,0.4); }

.mock-title {
  font-size: 0.55rem;
  color: var(--fg-muted);
  line-height: 1.3;
  font-family: var(--font-display);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-title-edited {
  color: var(--fg);
  font-weight: 600;
}

/* Mock clip timeline */
.mock-clip {
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  background: #1a1a26;
  border: 1px solid var(--border);
}

.edited-clip {
  background: linear-gradient(135deg, #1a1426 0%, #26181a 100%);
  border-color: rgba(255, 107, 53, 0.3);
}

.clip-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 32px;
  margin-bottom: 8px;
}

.clip-bar {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  height: 40%;
}

.clip-bar.tall { height: 90%; }
.clip-bar.short { height: 25%; }
.clip-bar.medium { height: 60%; }
.clip-bar.accent { background: var(--accent); height: 80%; }
.clip-bar.tall.accent { height: 100%; }

.edited-bars { gap: 4px; }

.clip-label {
  font-size: 0.6rem;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 600;
}

.edited-clip-label { color: var(--accent); }

/* Portfolio tags */
.portfolio-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.portfolio-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.portfolio-cta p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ===== INQUIRE PAGE ===== */
.inquire-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.inquire-container {
  max-width: 620px;
  margin: 0 auto;
}

.inquire-header {
  margin-bottom: 48px;
}

.inquire-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
}

.inquire-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.form-error-banner {
  padding: 14px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #f87171;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.inquire-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-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.label-optional {
  color: var(--fg-muted);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  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='%238a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 107, 53, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 138, 154, 0.5);
}

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

.btn-submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* Reassurance row */
.inquire-reassurance {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.reassurance-icon { font-size: 1rem; }

/* Success state */
.inquire-success {
  text-align: center;
  padding: 80px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin: 0 auto 32px;
}

.inquire-success h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.inquire-success p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.inquire-success a { color: var(--accent); }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .inquire-reassurance { flex-direction: column; gap: 16px; }
  .btn-submit { width: 100%; text-align: center; }
}
