:root {
  --bg: #0E0E1A;
  --bg-surface: #16162A;
  --bg-card: #1E1E38;
  --fg: #F5F0E8;
  --fg-muted: #8B8AA0;
  --accent: #FF8C42;
  --accent-dim: #C96A25;
  --border: #2A2A48;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
  border-right: 1px solid var(--border);
  padding-right: 60px;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}
.hero-stat-sub {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.hero-stat--sm .hero-stat-num {
  font-size: 36px;
  letter-spacing: -1px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
}
.hero-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

.hero-clips-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-clip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 18px 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}
.clip-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* Stats */
.stats {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat-item {
  padding: 0 40px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Section commons */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

/* Services */
.services {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg-card);
  padding: 36px;
  border-radius: 0;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Clients */
.clients {
  background: var(--bg-surface);
  padding: 80px 40px;
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.clients-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.client-card {
  background: var(--bg-card);
  padding: 28px 24px;
}
.client-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.client-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Process */
.process {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  margin-left: 24px;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  min-width: 32px;
  padding-top: 3px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
}
.process-note {
  margin-top: 40px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Pricing */
.pricing {
  background: var(--bg-surface);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}
.pricing-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
}
.pricing-card--featured {
  background: #221E38;
  border: 1px solid var(--accent-dim);
}
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-amount span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.pricing-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.manifesto p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: #55556A;
  margin-top: 8px;
}

/* About */
.about {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-inner {}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.about-card {
  background: var(--bg-card);
  padding: 32px;
}
.about-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.about-card-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.about-credentials {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.credential {
  flex: 1;
  padding: 0 32px;
}
.credential:first-child { padding-left: 0; }
.credential-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.credential-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.credential-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Inquiry CTA */
.inquiry {
  background: var(--bg-surface);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.inquiry-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.inquiry h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.inquiry-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B8AA0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: var(--bg-card); }
.form-error {
  font-size: 13px;
  color: #ff6b6b;
  min-height: 20px;
}
.form-success {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  padding: 16px;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  margin-bottom: 24px;
  display: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.inquiry-footer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left {
    border-right: none;
    padding-right: 0;
    flex-direction: row;
    gap: 40px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .clients-list { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 24px 40px; }
  .hero-stat-num { font-size: 40px; }
  .hero-clips-row { gap: 12px; }
  .clients-list { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .services, .process, .pricing { padding: 60px 24px; }
  .stats { padding: 32px 24px; }
  .stats-inner { grid-template-columns: 1fr; }
}