:root {
  --navy: #0d1b2a;
  --navy-mid: #162233;
  --amber: #d4a017;
  --amber-light: #f0c73a;
  --cream: #faf8f5;
  --cream-dark: #f2ede6;
  --ink: #1a2a3a;
  --muted: #6b7a8a;
  --border: #e2ddd8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 100;
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-state {
  color: var(--amber);
}
.nav-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,160,23,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--amber-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.2;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px 2px 0 0;
}
.hero-card-icon { margin-bottom: 14px; }
.hero-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hero-card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.hero-card-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #4caf50;
  font-weight: 600;
}
.hero-card-status-dot {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
}
.hero-scales {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.25;
}

/* PROOF */
.proof {
  background: var(--navy-mid);
  border-top: 1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  padding: 70px 24px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.proof-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 20px;
}
.proof-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.proof-attr {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 8px;
}
.proof-stat {}
.proof-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* SERVICES */
.services {
  padding: 90px 24px;
  background: var(--cream);
}
.services-header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: rgba(212,160,23,0.4);
  box-shadow: 0 8px 32px rgba(13,27,42,0.06);
}
.service-icon {
  margin-bottom: 18px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-from {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PRICING */
.pricing {
  padding: 90px 24px;
  background: var(--cream-dark);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-inner .section-headline,
.pricing-inner .section-sub { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.pricing-inner .section-headline { margin-bottom: 14px; }
.pricing-table {
  max-width: 900px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 3fr 120px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-head {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.pricing-doc {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.pricing-incl {
  color: var(--muted);
  font-size: 14px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-align: right;
}
.pricing-note {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* PROCESS */
.process {
  padding: 90px 24px;
  background: var(--navy);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-inner .section-label { color: var(--amber); }
.process-inner .section-headline { color: #fff; }
.process-inner .section-sub { color: rgba(255,255,255,0.5); max-width: 500px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 50px;
}
.step {
  flex: 1;
  padding: 0 20px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: rgba(212,160,23,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: rgba(212,160,23,0.2);
  margin-top: 28px;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tag {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 40px 24px;
  border-top: 1px solid rgba(212,160,23,0.15);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 10px;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 320px; }
  .hero-scales { display: none; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; gap: 4px; }
  .pricing-price { text-align: left; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 70px; }
  .hero-proof-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-divider { display: none; }
}