:root {
  --bg: #0a0a0a;
  --fg: #f5f0eb;
  --fg-muted: #a09890;
  --accent: #ff6b35;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --surface: #141414;
  --surface-border: #222;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

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

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

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== PROBLEM ===== */
.problem {
  padding: 8rem 2rem;
  background: var(--surface);
}

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

.problem-label,
.services-label,
.process-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.problem-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

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

/* ===== SERVICES ===== */
.services {
  padding: 8rem 2rem;
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--surface-border);
}

.service-item:last-child {
  border-bottom: 1px solid var(--surface-border);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.2rem;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ===== PROCESS ===== */
.process {
  padding: 8rem 2rem;
  background: var(--surface);
}

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

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 20px var(--accent-glow);
}

.step-connector {
  width: 1px;
  height: 40px;
  background: var(--surface-border);
  margin-left: 6.5px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--surface-border);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ===== WORK SHOWCASE ===== */
.work {
  padding: 8rem 2rem;
  background: var(--surface);
}

.work-inner { max-width: 1000px; margin: 0 auto; }

.work-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.work-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.work-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.work-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card {
  background: var(--bg);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.work-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.work-card--tall { grid-row: span 2; }

.work-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-card-thumb {
  background: #1a1a1a;
  aspect-ratio: 9/16;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card-thumb--wide { aspect-ratio: 4/5; }

.work-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.work-card:nth-child(1) .work-card-thumb::before { background: linear-gradient(135deg, #1a1208 0%, #2d2010 60%, #1a1208 100%); }
.work-card:nth-child(2) .work-card-thumb::before { background: linear-gradient(135deg, #0d1a14 0%, #142a1e 60%, #0d1a14 100%); }
.work-card:nth-child(3) .work-card-thumb::before { background: linear-gradient(135deg, #12101a 0%, #1e1a2d 60%, #12101a 100%); }
.work-card:nth-child(4) .work-card-thumb::before { background: linear-gradient(135deg, #0a1520 0%, #102030 60%, #0a1520 100%); }
.work-card:nth-child(5) .work-card-thumb::before { background: linear-gradient(135deg, #1a0a12 0%, #2d1020 60%, #1a0a12 100%); }
.work-card:nth-child(6) .work-card-thumb::before { background: linear-gradient(135deg, #151510 0%, #252518 60%, #151510 100%); }

.work-card-play {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  transition: background 0.2s ease;
}

.work-card:hover .work-card-play { background: rgba(255, 107, 53, 0.25); }

.work-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.work-card-meta {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.work-card-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-card-meta h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.work-card-stats {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.work-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
  opacity: 0.55;
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  padding: 8rem 2rem;
}

.pricing-inner { max-width: 1050px; margin: 0 auto; }

.pricing-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.pricing-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.2s ease;
}

.pricing-card:hover { border-color: rgba(255, 107, 53, 0.3); }

.pricing-card--featured {
  border-color: rgba(255, 107, 53, 0.5);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.06) 0%, var(--surface) 40%);
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--surface-border);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}

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

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

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--fg);
  align-items: flex-start;
}

.pricing-features li.feat-muted {
  color: var(--fg-muted);
  opacity: 0.5;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.feat-x {
  color: var(--fg-muted);
  flex-shrink: 0;
  font-weight: 700;
}

.pricing-btn {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--surface-border);
  color: var(--fg);
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pricing-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.pricing-btn--accent:hover {
  opacity: 0.85;
  color: var(--bg);
}

.pricing-footnote {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
  opacity: 0.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 2rem;
  background: var(--surface);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 6rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 500;
}

.about-right p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fg-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  margin: 0.5rem 0;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.about-value p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CLOSING CTA ===== */
.closing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.closing-btn {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.closing-btn--primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.closing-btn--primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.closing-btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--surface-border);
}

.closing-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.closing-trust {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

.trust-dot { opacity: 0.4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Legacy responsive */
  .hero { padding: 4rem 1.5rem 3rem; min-height: 85vh; }
  .problem, .services, .process { padding: 5rem 1.5rem; }
  .closing { padding: 6rem 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 1rem; }
  .problem-card { padding: 2rem 1.5rem; }
  .problem-number { font-size: 2.2rem; }
  .service-item { flex-direction: column; gap: 0.5rem; padding: 2rem 0; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Nav mobile */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--surface-border);
    padding: 1rem 2rem;
  }
  .nav-links.nav-open { display: flex; }
  .nav-link {
    padding: 0.75rem 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-cta { margin-top: 1rem; width: 100%; text-align: center; border-radius: 8px; padding: 0.75rem; }

  /* Work mobile */
  .work { padding: 5rem 1.5rem; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .work-card--tall { grid-row: span 1; }
  .work-card-thumb { aspect-ratio: 4/5; }
  .work-card-thumb--wide { aspect-ratio: 4/5; }

  /* Pricing mobile */
  .pricing { padding: 5rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-amount { font-size: 2.6rem; }

  /* About mobile */
  .about { padding: 5rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-left h2 { position: static; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about-stat-number { font-size: 1.8rem; }

  /* Closing mobile */
  .closing-actions { flex-direction: column; }
  .closing-btn { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .work-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1rem; }
}