:root {
  --bg: #0D1B2A;
  --bg-alt: #162033;
  --surface: #1B2B42;
  --fg: #F0EDE6;
  --fg-muted: #9A9A8E;
  --accent: #E8A317;
  --accent-dim: rgba(232, 163, 23, 0.15);
  --border: rgba(240, 237, 230, 0.1);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Hero right visual */
.hero-right {
  display: flex;
  justify-content: center;
}
.hero-image-wrap {
  width: 280px;
  height: 280px;
  position: relative;
}
.hero-sunburst {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #F7B84A 0%, #E8A317 35%, #B8700A 70%, transparent 100%);
  box-shadow: 0 0 80px rgba(232, 163, 23, 0.35), 0 0 160px rgba(232, 163, 23, 0.12);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 80px rgba(232, 163, 23, 0.35), 0 0 160px rgba(232, 163, 23, 0.12); }
  50% { box-shadow: 0 0 100px rgba(232, 163, 23, 0.5), 0 0 200px rgba(232, 163, 23, 0.2); }
}
.hero-badge {
  position: absolute;
  bottom: -10px;
  right: -20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  text-align: center;
}
.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
  line-height: 1.3;
}

/* Section label */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Services */
.services { padding: 5rem 2rem; background: var(--bg-alt); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Quote Review */
.quote-review { padding: 5rem 2rem; }
.quote-review-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.quote-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.quote-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.quote-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.widget-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.widget-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.widget-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.widget-line {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.widget-line:last-child { border-bottom: none; }
.widget-line.highlight { background: var(--accent-dim); margin: 0 -1rem; padding: 0.6rem 1rem; border-radius: 8px; }
.wlabel { color: var(--fg-muted); }
.wdash { color: var(--border); }
.wval { color: var(--fg); font-weight: 500; }
.wval.green { color: #4ADE80; }
.widget-verdict {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.75rem 1rem;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 10px;
}
.verdict-icon { color: #4ADE80; font-size: 1rem; }
.verdict-text { font-size: 0.85rem; color: #4ADE80; }

/* Process */
.process { padding: 5rem 2rem; background: var(--bg-alt); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.step-content p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.step-arrow {
  width: 40px;
  flex-shrink: 0;
  position: relative;
}
.step-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: var(--border);
}

/* Testimonial */
.testimonial { padding: 5rem 2rem; }
.testimonial-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-mark { margin-bottom: 2rem; }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.testimonial-attribution { color: var(--fg-muted); font-size: 0.875rem; }

/* Closing */
.closing { padding: 5rem 2rem; background: var(--bg-alt); }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}

/* CTA Buttons */
.nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #f5b82e; }

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: #f5b82e; }

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.cta-primary {
  background: var(--accent);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-primary:hover { background: #f5b82e; }
.cta-secondary {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-secondary:hover { color: var(--fg); }

/* Footer */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.footer-sub { font-size: 0.85rem; color: var(--fg-muted); }
.footer-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1rem; }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); opacity: 0.6; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .quote-review-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .services, .quote-review, .process, .testimonial, .closing { padding: 3rem 1.5rem; }
}