/* =============================================================
   SMART CONTA EXPERT — STYLE
   Vanilla CSS · Dark + Light hybrid · Refined editorial luxury
   ============================================================= */

/* ---------- 1. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .6s ease, color .6s ease;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--bg); }

/* ---------- 2. THEME VARIABLES ---------- */
:root {
  /* Brand */
  --gold: #d4a853;
  --gold-bright: #e8c878;
  --gold-deep: #a07a32;
  --green: #2d7a55;
  --green-deep: #0a3d2e;

  /* Sizing & rhythm */
  --container: 1240px;
  --section-py: clamp(80px, 10vw, 140px);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  /* Type scale */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-brand: 'DM Serif Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 6px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.25);

  /* Easing */
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg: #0a0e0c;
  --bg-elev: #131a16;
  --bg-elev-2: #1a221d;
  --text: #f5f1e8;
  --text-muted: #9ba59b;
  --border: rgba(245,241,232,.08);
  --border-strong: rgba(245,241,232,.16);
  --gold-tint: rgba(212,168,83,.14);
  --green-tint: rgba(45,122,85,.18);
  --shadow-color: 0 0 0;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f5f1e8;
  --bg-elev: #ffffff;
  --bg-elev-2: #faf6ec;
  --text: #0a3d2e;
  --text-muted: #5d6e63;
  --border: rgba(10,61,46,.08);
  --border-strong: rgba(10,61,46,.18);
  --gold: #b8902f;
  --gold-bright: #d4a853;
  --gold-tint: rgba(184,144,47,.10);
  --green-tint: rgba(45,122,85,.10);
  --shadow-color: 10 61 46;
  color-scheme: light;
}

/* Light/dark icon swap */
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* ---------- 3. ATMOSPHERIC BACKGROUND ---------- */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  will-change: transform;
}
.mesh-blob--gold {
  width: 520px; height: 520px;
  background: var(--gold);
  top: -10%; right: -10%;
  animation: floatA 22s var(--ease) infinite alternate;
}
.mesh-blob--green {
  width: 620px; height: 620px;
  background: var(--green);
  bottom: -20%; left: -15%;
  animation: floatB 28s var(--ease) infinite alternate;
}
[data-theme="light"] .mesh-blob { opacity: .18; }

@keyframes floatA {
  to { transform: translate(-80px, 60px) scale(1.1); }
}
@keyframes floatB {
  to { transform: translate(60px, -40px) scale(1.05); }
}

.grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
[data-theme="light"] .grain { opacity: .04; }

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.skip-link {
  position: absolute;
  left: -9999px; top: 12px;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { left: 12px; outline: 2px solid var(--text); }

/* ---------- 5. TYPOGRAPHY ---------- */
.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 760px; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section-lead {
  margin-top: 20px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- 6. HEADER & NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-list {
  display: flex;
  gap: 4px;
}
.nav-list a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color .2s, background-color .2s;
}
.nav-list a:hover, .nav-list a:focus-visible {
  color: var(--text);
  background: var(--gold-tint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background-color .25s, border-color .25s, transform .25s;
}
.theme-toggle:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
  transform: rotate(15deg);
}
.theme-toggle .icon { width: 18px; height: 18px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- 7. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--gold);
  color: #0a0e0c;
  box-shadow: 0 8px 24px -8px var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 12px 32px -10px var(--gold);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--bg-elev);
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- 8. HERO ---------- */
.hero {
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: 0;
  position: relative;
}
.hero-inner {
  max-width: 1240px;
  padding-bottom: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-content {
  min-width: 0;
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 124px);
  line-height: .98;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 36px;
}
.hero-title span { display: block; }
.hero-title__accent {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  padding-left: clamp(40px, 8vw, 120px);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-title em { font-style: italic; }

.hero-lead {
  max-width: 600px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-stats {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 920px);
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 4px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.hero-visual__glow {
  position: absolute;
  inset: 10% 0 auto 10%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212,168,83,.22) 0%, rgba(212,168,83,.10) 34%, rgba(212,168,83,0) 72%),
    radial-gradient(circle at 70% 30%, rgba(45,122,85,.24), rgba(45,122,85,0) 62%);
  filter: blur(10px);
  opacity: .9;
}
.hero-report {
  position: relative;
  width: min(100%, 470px);
  margin-top: -18px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    linear-gradient(135deg, color-mix(in srgb, var(--bg-elev) 88%, transparent), color-mix(in srgb, var(--bg) 92%, transparent));
  border: 1px solid var(--border-strong);
  box-shadow: 0 35px 90px -45px rgba(0,0,0,.6);
  overflow: hidden;
  isolation: isolate;
}
.hero-report::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 29px,
      rgba(212,168,83,.08) 30px,
      rgba(212,168,83,.08) 31px
    );
  opacity: .35;
  pointer-events: none;
}
.hero-report::after {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,.25) 0%, rgba(212,168,83,0) 70%);
  pointer-events: none;
}
.hero-report__header,
.hero-report__metrics,
.hero-report__chart,
.hero-report__footer {
  position: relative;
  z-index: 1;
}
.hero-report__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-report__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.hero-report__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.03em;
}
.hero-report__trend {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-tint);
  border: 1px solid rgba(212,168,83,.24);
}
.hero-report__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.hero-report__metrics div {
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
}
.hero-report__metrics span {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero-report__metrics strong {
  display: block;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}
.hero-report__chart {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px 0 8px;
  margin-bottom: 18px;
}
.hero-report__chart span {
  flex: 1;
  height: var(--h);
  min-height: 30px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 12px 22px -14px rgba(212,168,83,.9);
  opacity: .95;
}
.hero-report__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.hero-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-elev) 92%, transparent);
  border: 1px solid var(--border-strong);
  color: var(--text);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-chip--one {
  top: -36px;
  right: -8px;
  z-index: 3;
}
.hero-chip--two {
  left: 18px;
  bottom: 48px;
}
.hero-chip--two { display: none; }

/* Marquee */
.hero-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: color-mix(in srgb, var(--bg-elev) 50%, transparent);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.marquee-track span:nth-child(2n) {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Marquee */
.hero-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: color-mix(in srgb, var(--bg-elev) 50%, transparent);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.marquee-track span:nth-child(2n) {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 9. SERVICES ---------- */
.services { padding: var(--section-py) 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .35s, background .35s, box-shadow .35s;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--gold-tint), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -30px rgba(212,168,83,.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-tint);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: transform .35s var(--ease);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { transform: scale(1.05) rotate(-3deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tags li {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.service-card--accent {
  background: linear-gradient(140deg, var(--bg-elev) 0%, var(--gold-tint) 100%);
  border-color: var(--gold-tint);
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0e0c;
}

/* ---------- 10. TRANSPORT (alt-section) ---------- */
.transport {
  padding: var(--section-py) 0;
  background:
    linear-gradient(180deg, transparent, var(--bg-elev) 20%, var(--bg-elev) 80%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.transport-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.transport-features {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}
.transport-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.transport-features svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--gold-tint);
  color: var(--gold);
}
.transport-features strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
}
.transport-features span {
  color: var(--text-muted);
  font-size: 16px;
}

.transport-visual {
  position: relative;
  aspect-ratio: 1;
}
.transport-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.15));
}
/* SVG variable bridges (CSS vars don't work in SVG presentation attributes) */
.svg-fill-gold { fill: var(--gold); }
.svg-fill-elev { fill: var(--bg-elev); }
.svg-fill-text { fill: var(--text); }
.svg-fill-muted { fill: var(--text-muted); }
.svg-stroke-gold { stroke: var(--gold); }
.svg-stroke-border { stroke: var(--border-strong); }

/* ---------- 11. ABOUT ---------- */
.about { padding: var(--section-py) 0; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-card {
  padding: 40px 32px;
  background: var(--bg);
  transition: background .3s;
  position: relative;
}
.about-card:hover { background: var(--bg-elev); }
.about-num {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .15em;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144;
}
.about-card h3 {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.about-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- 12. FAQ ---------- */
.faq { padding: var(--section-py) 0; }
.faq-inner { max-width: 920px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--gold); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .3s var(--ease);
  color: var(--gold);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-size: 12px 1.5px, 0 0;
}

.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  animation: fadeUp .4s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 13. CONTACT ---------- */
.contact { padding: var(--section-py) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s, background .25s, box-shadow .25s;
  position: relative;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  background: var(--bg-elev-2);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--gold-tint);
  color: var(--gold);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card--whatsapp .contact-icon { background: rgba(37,211,102,.15); color: #25d366; }
.contact-card--phone .contact-icon { background: var(--green-tint); color: var(--green); }
[data-theme="light"] .contact-card--phone .contact-icon { color: var(--green-deep); }

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}
.contact-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
}
.contact-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.contact-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform .25s var(--ease), color .25s;
}
.contact-card:hover .contact-arrow {
  color: var(--gold);
  transform: translate(3px, -3px);
}

.contact-card--secondary { padding: 16px 20px; }
.contact-card--secondary .contact-icon { width: 40px; height: 40px; border-radius: 10px; }
.contact-card--secondary .contact-icon svg { width: 20px; height: 20px; }
.contact-card--secondary .contact-text strong { font-size: 16px; }

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  height: 340px;
  flex-grow: 1;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: var(--map-filter, none);
}
[data-theme="dark"] .map-frame iframe {
  filter: invert(.92) hue-rotate(180deg) saturate(.6) brightness(1.05);
}

.map-address {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.map-pin {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.map-address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.map-address span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.map-address a {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.map-address a:hover { border-bottom-color: var(--gold); }

.contact-grid,
.contact-actions,
.contact-card,
.contact-text {
  min-width: 0;
}

.contact-card {
  width: 100%;
  max-width: 100%;
}

.contact-text {
  overflow: hidden;
}

.contact-text strong,
.contact-meta {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-arrow {
  flex-shrink: 0;
}

/* ---------- 14. FOOTER ---------- */
.site-footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}
.footer-inner {
  display: grid;
  gap: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand .brand-mark { width: 44px; height: 44px; }
.footer-tagline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
}
.footer-tagline span {
  display: block;
  color: var(--text-muted);
  font-size: 16px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-col p span { color: var(--text); font-weight: 500; }
.footer-col a { color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* ---------- 15. SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal { transition-duration: 1s; }

/* ---------- 16. FOCUS / A11Y ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .mesh-blob { animation: none; }
}

/* Manrope aproape peste tot; păstrăm serif doar pe H1 și H2 */
.hero-report__title,
.marquee-track span,
.service-card h3,
.transport-features strong,
.about-card h3,
.about-num,
.faq-item summary,
.contact-text strong,
.map-address strong,
.footer-tagline strong {
  font-family: var(--font-body);
  font-style: normal;
  font-variation-settings: normal;
}

.hero-report__title,
.service-card h3,
.transport-features strong,
.about-card h3,
.faq-item summary,
.contact-text strong,
.map-address strong,
.footer-tagline strong {
  font-weight: 700;
  letter-spacing: -.02em;
}

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
  padding-bottom: clamp(30px, 4vw, 60px);
}

.legal-title {
  max-width: 900px;
  margin-bottom: 28px;
}

.legal-section {
  padding-top: clamp(30px, 5vw, 70px);
}

.legal-content {
  max-width: 920px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -50px rgba(0,0,0,.55);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}

.legal-content h2:first-of-type {
  margin-top: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 12px 0 18px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.legal-content a:hover {
  border-bottom-color: var(--gold);
}

@media (max-width: 760px) {
  .legal-hero {
    padding-top: 54px;
  }

  .legal-title {
    font-size: clamp(42px, 13vw, 68px);
  }

  .legal-content {
    padding: 24px 20px;
    border-radius: var(--radius);
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
    .hero-report { margin-top: 0; }
  .hero-stats {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .hero-content { max-width: 100%; }
  .hero-visual {
    min-height: auto;
    max-width: 560px;
    margin: 0 auto;
  }
  .transport-inner { grid-template-columns: 1fr; }
  .transport-visual { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .nav.is-open {
    display: block;
    position: fixed;
    inset: 78px 0 0 0;
    min-height: calc(100svh - 78px);
    background: rgba(10, 14, 12, .98);
    padding: 24px;
    border-top: 1px solid var(--border);
    box-shadow: 0 24px 60px -30px rgba(0,0,0,.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 99;
  }
  [data-theme="light"] .nav.is-open {
    background: rgba(245, 241, 232, .98);
  }

  .nav.is-open .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav.is-open .nav-list a {
    display: block;
    padding: 16px 20px;
    font-size: 18px;
    font-family: var(--font-display);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .brand-tag { display: none; }
  .brand-name { font-size: 16px; }
  .brand-mark { width: 34px; height: 34px; }

  .hero-title__accent { padding-left: 24px; }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  .hero-report { padding: 24px; border-radius: 24px; }
  .hero-report__metrics { grid-template-columns: 1fr; }
  .hero-report__chart { height: 140px; }
  .hero-report__footer {
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
  }
  .hero-chip { font-size: 13px; }
  .hero-chip--one { top: -27px; right: -25px; }
  .hero-chip--two { left: 12px; bottom: 12px; }

  .service-card { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr; }
    .hero-chip--one {
    top: -21px;
    right: -3px;
  }
  .hero-title { font-size: clamp(42px, 14vw, 64px); }
  .hero-report { padding: 20px; }
  .hero-report__header { gap: 12px; }
  .hero-report__title { font-size: 28px; }
  .hero-report__trend { padding: 8px 10px; font-size: 12px; }
  .hero-chip { padding: 10px 12px; }

.contact-card {
  padding: 18px 16px;
  gap: 12px;
}
  .contact-card--secondary { padding: 14px 16px; }
  .map-frame { height: 280px; }
}

