/* ===== BASE ===== */
:root {
  --bg: #111111;
  --bg-alt: #0A0A0A;
  --fg: #F0EDE6;
  --fg-muted: #9A9590;
  --accent: #FF5F00;
  --accent-dim: rgba(255, 95, 0, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.header-nav {
  display: flex;
  gap: 28px;
}

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

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

/* ===== HERO ===== */
.hero {
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,95,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,95,0,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-top: 4px;
}

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

/* Hero visual */
.hero-right { display: flex; justify-content: center; }

.hero-visual {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  inset: 20px;
  background: radial-gradient(circle, rgba(255,95,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,95,0,0.15);
}

.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 240px; height: 240px; border-color: rgba(255,95,0,0.08); }
.ring-3 { width: 260px; height: 260px; border-color: rgba(255,95,0,0.04); }

.visual-center {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.visual-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  line-height: 1.3;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 20px 24px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== SECTION STYLES ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

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

.section-header--centered { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.section-header--centered .section-sub { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 32px;
  transition: background 0.2s;
  position: relative;
}

.service-card:hover { background: #1A1A1A; }

.service-card--featured {
  grid-column: span 1;
  border: 1px solid rgba(255,95,0,0.3);
  background: rgba(255,95,0,0.04);
}

.service-card--featured:hover { background: rgba(255,95,0,0.07); }

.service-icon {
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,95,0,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===== PROCESS ===== */
.process { border-top: 1px solid var(--border); }

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  flex-shrink: 0;
  margin-top: -30px;
}

/* ===== PRICING ===== */
.pricing { background: var(--bg-alt); }

.pricing-table {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row--head {
  background: rgba(255,95,0,0.06);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.pricing-service {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}

.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-note {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== MANIFESTO ===== */
.manifesto {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
  background: var(--bg);
}

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

.manifesto-quote {
  margin-bottom: 40px;
}

.manifesto-quote p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
}

.manifesto-body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 680px;
}

.manifesto-body p:last-child { margin-bottom: 0; }

/* ===== CLOSING ===== */
.closing {
  padding: 80px 24px;
  background: var(--bg-alt);
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-vision p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand .brand { margin-bottom: 16px; }

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

.footer-links { display: flex; gap: 48px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-nav { display: none; }

  .hero { padding: 48px 24px 40px; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }

  .hero-right { display: none; }

  .hero-headline { font-size: 2.6rem; }

  .trust-inner { justify-content: flex-start; gap: 20px; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; gap: 40px; }

  .step-connector { display: none; }

  .footer-inner { flex-direction: column; gap: 32px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section-inner { padding: 56px 24px; }

  .manifesto { padding: 56px 24px; }

  .closing { padding: 56px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }

  .stat-divider { display: none; }

  .footer-links { flex-wrap: wrap; }
}