:root {
  --slate: #1C1E24;
  --slate-light: #22262E;
  --slate-lighter: #2A2D35;
  --amber: #E8930A;
  --amber-dim: rgba(232, 147, 10, 0.12);
  --amber-glow: rgba(232, 147, 10, 0.25);
  --off-white: #F5F5F0;
  --muted: #9CA3AF;
  --muted-light: #D1D5DB;
  --text-secondary: #6B7280;
  --border: rgba(255,255,255,0.07);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

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

body {
  background: var(--slate);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  background: rgba(28, 30, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-icon { width: 32px; height: 32px; }
.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--off-white);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ─── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 147, 10, 0.12);
}
.hero-circle-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
}
.hero-circle-2 {
  width: 400px; height: 400px;
  top: -100px; right: -50px;
  border-color: rgba(232, 147, 10, 0.07);
}
.hero-circle-3 {
  width: 250px; height: 250px;
  top: 20px; right: 80px;
  border-color: rgba(232, 147, 10, 0.10);
}

.hero-slice {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 400px 200px;
  border-color: transparent transparent rgba(232,147,10,0.04) transparent;
}

.hero-dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,147,10,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, transparent 30%, black 100%);
}

.hero-sparkle {
  position: absolute;
}
.hero-sparkle svg { width: 100%; height: 100%; }
.hero-sparkle-1 { width: 48px; height: 48px; top: 25%; right: 22%; }
.hero-sparkle-2 { width: 32px; height: 32px; top: 40%; right: 8%; }
.hero-sparkle-3 { width: 20px; height: 20px; top: 60%; right: 35%; }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(232, 147, 10, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--off-white);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-light);
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--slate-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-house-art {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 40px rgba(232,147,10,0.12));
}
.hero-house-art svg { width: 100%; height: auto; }

/* ─── SHARED SECTION ─────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin-bottom: 16px;
}

/* ─── SERVICES ─────────────────────────── */
.services { padding: 100px 32px; }
.services-inner { max-width: 1200px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--slate-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(232,147,10,0.25); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }

.service-icon { margin-bottom: 20px; }
.service-icon svg { width: 40px; height: 40px; }

.service-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-light);
  margin-bottom: 16px;
}
.service-detail {
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── DIFFERENCE ──────────────────────── */
.difference {
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
  background: var(--slate-light);
}
.difference-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.diff-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,147,10,0.08);
}
.diff-circle-1 { width: 500px; height: 500px; bottom: -200px; right: -100px; }
.diff-circle-2 { width: 300px; height: 300px; bottom: -100px; right: 0; border-color: rgba(232,147,10,0.05); }

.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.diff-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-light);
  margin-bottom: 16px;
}
.diff-pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.diff-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.diff-pillar-icon { flex-shrink: 0; margin-top: 2px; }
.diff-pillar-icon svg { width: 24px; height: 24px; }
.diff-pillar-title { font-weight: 600; font-size: 15px; color: var(--off-white); margin-bottom: 2px; }
.diff-pillar-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }

.diff-art {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
.diff-art svg { width: 100%; height: auto; }

/* ─── PROCESS ────────────────────────── */
.process { padding: 100px 32px; }
.process-inner { max-width: 900px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(232,147,10,0.3), var(--amber));
  z-index: 0;
}

.process-step {
  padding: 0 32px;
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
}
.step-line { display: none; }
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── TRUST ────────────────────────────── */
.trust {
  padding: 80px 32px;
  background: var(--slate-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { max-width: 1100px; margin: 0 auto; }

.trust-numbers {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 48px;
}
.trust-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; }
.trust-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 4px;
}
.trust-note {
  font-size: 12px;
  color: var(--muted);
}
.trust-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0;
}

.trust-quote {
  background: var(--slate);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
}
.quote-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-light);
  font-style: italic;
  margin-bottom: 8px;
}
.quote-source {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ─── CLOSING ─────────────────────────── */
.closing {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.closing-circle {
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(232,147,10,0.06);
}
.closing-circle::before {
  content: '';
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  border: 1px solid rgba(232,147,10,0.04);
}
.closing-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,147,10,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, black 100%);
}
.closing-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-light);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.closing-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--amber);
  font-weight: 500;
}
.closing-dot { color: var(--text-secondary); }

/* ─── FOOTER ───────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-icon { width: 28px; height: 28px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--off-white);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-copy { font-size: 12px; color: var(--text-secondary); }

/* ─── RESPONSIVE ───────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-right { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { border-right: none; padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
  .process-step:last-child { border-bottom: none; padding-bottom: 0; }
  .trust-numbers { flex-wrap: wrap; gap: 24px; }
  .trust-item { flex: 0 0 45%; }
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .services { padding: 60px 20px; }
  .difference { padding: 60px 20px; }
  .process { padding: 60px 20px; }
  .trust { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 80px; height: 1px; }
  .trust-item { flex: 0 0 100%; }
}