/* ============================================================
   Closer Look Investigations — Rebirth
   Dark. Bold. Unmistakable.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg-void:        #08090b;
  --bg-primary:     #0c0e12;
  --bg-surface:     #12151a;
  --bg-elevated:    #191d24;
  --bg-card:        #10131a;
  --text-primary:   #f0f1f3;
  --text-secondary: #8b919c;
  --text-muted:     #4a5060;
  --accent-red:     #c0392b;
  --accent-red-glow:rgba(192,57,43,0.15);
  --gold:           #c9a84c;
  --gold-bright:    #dbbf65;
  --gold-glow:      rgba(201,168,76,0.12);
  --gold-glow-strong:rgba(201,168,76,0.25);
  --border:         #1e222a;
  --border-light:   #282e38;
  --white:          #ffffff;
  --radius:         14px;
  --radius-sm:      8px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:      'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:   'Playfair Display', Georgia, serif;
  --container:      1120px;
  --glow-spread:    0 0 80px 20px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ────────────────────────────────────────────── */
.container { width: min(var(--container), 90%); margin: 0 auto; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; font-family: var(--font-body); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-intro {
  max-width: 52ch;
  margin: 0.8rem 0 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 300;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-void);
  box-shadow: 0 0 0 0 var(--gold-glow-strong);
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 30px 8px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px 4px var(--gold-glow);
}

.btn-cta-phone {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.btn-cta-phone:hover {
  background: var(--gold);
  color: var(--bg-void);
  border-color: var(--gold);
  box-shadow: 0 0 24px 4px var(--gold-glow-strong);
}

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,9,11,0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
}

.nav { display: flex; gap: 2.2rem; align-items: center; }
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}
.nav a:hover, .nav a.active { color: var(--text-primary); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.topbar-cta { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Atmospheric glow orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

/* Subtle grid pattern overlay */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy { position: relative; }

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 15ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  max-width: 44ch;
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-logo-wrap {
  display: grid;
  place-items: center;
  position: relative;
}

/* Logo glow ring */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: logoGlow 4s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

.hero-logo {
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
  position: relative;
  z-index: 1;
}

/* Hero entrance choreography */
.hero-copy .eyebrow {
  opacity: 0; transform: translateX(-20px);
  animation: heroSlideRight 0.7s ease forwards 0.2s;
}
.hero-copy h1 {
  opacity: 0; transform: translateY(30px);
  animation: heroSlideUp 0.8s ease forwards 0.35s;
}
.hero-copy .hero-text {
  opacity: 0; transform: translateY(20px);
  animation: heroSlideUp 0.7s ease forwards 0.55s;
}
.hero-copy .hero-actions {
  opacity: 0; transform: translateY(16px);
  animation: heroSlideUp 0.6s ease forwards 0.7s;
}
.hero-logo-wrap {
  opacity: 0; transform: scale(0.85) rotate(-5deg);
  animation: heroLogoIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
}

@keyframes heroSlideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroLogoIn {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 1.1rem 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}
.trust-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent-red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px 2px var(--accent-red-glow);
}

/* ── Section Shared ───────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-dark { background: var(--bg-surface); }
.section-header { margin-bottom: 3.5rem; }
.section-header-center { text-align: center; }
.section-header-center .eyebrow { justify-content: center; }
.section-header-center .section-intro { margin-left: auto; margin-right: auto; }

/* ── Services ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Hover glow line at top */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  background: var(--bg-elevated);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.service-card:hover::after { opacity: 1; }

.service-card h3 {
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold); }

.service-card .card-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}

.service-card .card-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

/* ── How It Works ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* Connector line behind steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light) 15%, var(--border-light) 85%, transparent);
}

.step-card {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border-light);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.step-card:hover .step-number {
  border-color: var(--gold);
  box-shadow: 0 0 20px 4px var(--gold-glow);
  transform: scale(1.1);
}

.step-card h3 { margin-bottom: 0.8rem; }
.step-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 36ch;
  margin: 0 auto;
}

/* ── Why Us / Metrics ─────────────────────────────────────── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  margin-bottom: 4rem;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.metric {
  text-align: center;
  padding: 2.2rem 1rem;
  background: var(--bg-card);
  transition: background var(--transition);
}
.metric:hover { background: var(--bg-elevated); }

.metric-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Priority Window */
.priority-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Subtle corner accent */
.priority-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-top-left-radius: var(--radius);
  opacity: 0.5;
}
.priority-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom-right-radius: var(--radius);
  opacity: 0.5;
}

.priority-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.priority-card > p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.priority-card > p strong { color: var(--gold); font-weight: 700; }

.priority-features { display: grid; gap: 1.5rem; }

.priority-feature .feature-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.priority-feature p { font-size: 0.95rem; line-height: 1.7; font-weight: 300; }

/* ── Contact Section ──────────────────────────────────────── */
.contact-section { padding: 5rem 0 4rem; }

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Glowing accent line */
.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent-red), transparent);
}

.contact-box h2 { margin-bottom: 0.3rem; }

.contact-text {
  max-width: 48ch;
  margin: 0.8rem 0 0;
  line-height: 1.75;
  font-size: 1.05rem;
  font-weight: 300;
}

.contact-fine {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.contact-actions { display: flex; flex-direction: column; gap: 0.8rem; flex-shrink: 0; }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.contact-phone {
  background: var(--gold);
  color: var(--bg-void);
}
.contact-phone:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 30px 6px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.contact-email {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: rgba(255,255,255,0.02);
}
.contact-email:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px 4px var(--gold-glow);
}

.contact-link svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: var(--bg-void);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.3rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  transition: color var(--transition);
  font-weight: 400;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-secondary); }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-weight: 300; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

.cookie-accept {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg-void);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.cookie-accept:hover { background: var(--gold-bright); box-shadow: 0 0 16px 4px var(--gold-glow); }

.cookie-manage {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
}
.cookie-manage:hover { border-color: var(--text-muted); color: var(--text-primary); }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }

/* Slide from left variant */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-page h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-page .legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.legal-page h2 { font-size: 1.25rem; margin: 2.5rem 0 0.6rem; }
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.8rem;
  font-weight: 300;
}
.legal-page ul { padding-left: 1.2rem; list-style: disc; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav, .topbar-cta { display: none; }
  .hamburger { display: flex; }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,9,11,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 105;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .nav.mobile-open a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
  }
  .topbar-cta.mobile-open {
    display: flex;
    position: fixed;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 106;
  }

  .hero { padding: 3rem 0; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-logo-wrap { order: -1; }
  .hero-logo { width: min(55%, 220px); }
  .hero-logo-wrap::before { width: 200px; height: 200px; }
  .hero h1 { max-width: none; font-size: 2.2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-grid::before { display: none; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }

  .contact-box { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 0.8rem; justify-content: flex-start; }

  .section { padding: 4.5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .priority-card { padding: 1.8rem 1.3rem; }
  .contact-actions { flex-direction: column; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .topbar, .cookie-banner, .hero-actions, .trust-bar { display: none; }
  body { background: white; color: #222; }
  h1, h2, h3 { color: #111; }
  .section-dark { background: #f5f5f5; }
}
