:root {
  --bg: #f7f4ef;
  --bg-alt: #efe9df;
  --fg: #0d1b2a;
  --fg-muted: #5a6a78;
  --accent: #d4a847;
  --accent-light: rgba(212, 168, 71, 0.12);
  --border: #ddd5c8;
  --card-bg: #ffffff;
}

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

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

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,71,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 80px;
  right: calc(8vw + 320px);
  width: 2px;
  height: 60px;
  background: var(--accent);
  opacity: 0.4;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 760px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 48px;
  max-width: 600px;
}

.hero-services li {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 6px 14px;
  background: var(--accent-light);
  border-radius: 20px;
  border: 1px solid rgba(212,168,71,0.25);
}

.hero-cta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s;
}

.cta-link:hover { background: #1a3045; }

.cta-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── SHARED SECTION STYLES ────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--fg);
  margin-bottom: 56px;
}

/* ─── SERVICES ─────────────────────────────────────────────── */
.services {
  padding: 100px 8vw;
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--card-bg);
  padding: 40px 36px 40px;
  position: relative;
}

.service-card--cta {
  background: var(--fg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.service-card--cta .cta-card-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.service-card--cta .cta-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* ─── WHY ──────────────────────────────────────────────────── */
.why {
  padding: 100px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 28px;
}

.why-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.why-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.why-pillar {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why-pillar:last-child { border-bottom: none; }

.why-pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-pillar p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── COVERAGE ──────────────────────────────────────────────── */
.coverage {
  padding: 100px 8vw;
  background: var(--bg-alt);
}

.coverage-map {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.coverage-dept-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dept-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--card-bg);
  color: var(--fg);
}

.dept-chip--paris {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--fg);
  font-weight: 600;
}

.coverage-note p {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── PROCESS ──────────────────────────────────────────────── */
.process {
  padding: 100px 8vw;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step {
  background: var(--card-bg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ─── CLOSING ──────────────────────────────────────────────── */
.closing {
  background: var(--fg);
  padding: 120px 8vw;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-accent {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-link {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s;
}

.closing-link:hover { background: #c49935; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}

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

.footer-contact {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

.footer-contact a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
}

.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ─── NETPUR SEGMENT SECTION ────────────────────────────────── */
.segment-section {
  padding: 100px 8vw;
  background: var(--bg);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.segment-card {
  background: var(--card-bg);
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.segment-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.segment-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.segment-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── NETPUR PRICING ────────────────────────────────────────── */
.pricing-section {
  padding: 100px 8vw;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 28px;
}

.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.pricing-card .price-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card li {
  font-size: 13px;
  color: var(--fg-muted);
}

.pricing-card li::before {
  content: '✓ ';
  color: var(--accent);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-stat-row { gap: 24px; }
  .segment-grid, .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 6vw 80px; }
  .services { padding: 60px 6vw; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 60px 6vw; }
  .coverage { padding: 60px 6vw; }
  .process { padding: 60px 6vw; }
  .process-steps { grid-template-columns: 1fr; }
  .closing { padding: 80px 6vw; }
  .footer { flex-direction: column; align-items: flex-start; padding: 40px 6vw; }
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 28px; }
  .why-stat-row { flex-direction: column; gap: 20px; }
}