/* ============================================================
   Taxi Mani — Premium Dark & Gold Design
   Farben: Amber/Gold auf Schwarz (Luxus-Taxi-Service)
   ============================================================ */

:root {
  /* Core brand colors */
  --primary:       #F59E0B;   /* Amber gold — Marke, Nav, Buttons */
  --primary-dark:  #D97706;   /* Hover / darker amber */
  --secondary:     #FBBF24;   /* Gold highlight */
  --bg-light:      #18181B;   /* Surface 1 — Cards, softer sections */
  --bg-dark:       #09090B;   /* Deep background */
  --bg-mid:        #0F0F11;   /* Between bg-light and bg-dark */
  --text:          #E4E4E7;   /* Primary body text */
  --text-light:    #A1A1AA;   /* Secondary text */
  --text-muted:    #71717A;   /* Tertiary, captions */
  --border:        rgba(245, 158, 11, 0.14);
  --border-strong: rgba(245, 158, 11, 0.32);

  /* Shadows — layered for depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.65), 0 4px 12px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 0 1px rgba(245, 158, 11, 0.2), 0 10px 30px rgba(245, 158, 11, 0.12);

  /* Spacing — 8px system */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 120px;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  background-image:
    radial-gradient(1200px 800px at 80% -10%, rgba(245, 158, 11, 0.08), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(245, 158, 11, 0.05), transparent 55%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--secondary); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--primary); color: #111; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: #F8F8F8;
  letter-spacing: -0.01em;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

section {
  padding-block: var(--sp-7);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--sp-5);
}
.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
  font-weight: 600;
}
.section-title h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 auto;
  max-width: 18ch;
}
.section-title p {
  color: var(--text-light);
  margin-top: var(--sp-2);
  font-size: 1.0625rem;
  max-width: 56ch;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #0A0A0A;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(245, 158, 11, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #0A0A0A;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}
.btn .icon { width: 18px; height: 18px; }

/* ============================================================
   TOPBAR + NAV
   ============================================================ */
.topbar {
  background: #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: var(--text-light);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: 10px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
}
.topbar a:hover { color: var(--primary); }
.topbar .icon { width: 14px; height: 14px; color: var(--primary); }
.topbar-right a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.08);
  color: var(--primary);
  transition: all 0.3s var(--ease);
}
.topbar-right a:hover {
  background: var(--primary);
  color: #0A0A0A;
  transform: translateY(-1px);
}
.topbar-right a svg { width: 14px; height: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.08);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(9, 9, 11, 0.95);
  border-bottom-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: var(--sp-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.32);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text strong {
  color: var(--primary);
  font-family: var(--font-head);
  display: block;
  line-height: 1;
}
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { margin-left: var(--sp-2); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.nav-toggle:hover { background: var(--primary); color: #0A0A0A; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) saturate(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(9, 9, 11, 0.4) 50%, var(--bg-dark) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.55) 0%, rgba(9, 9, 11, 0.35) 40%, rgba(9, 9, 11, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-7) var(--sp-3);
  max-width: 900px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: var(--sp-2);
  font-weight: 600;
  background: linear-gradient(180deg, #FFFFFF 0%, #E4E4E7 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-head);
  font-weight: 400;
  margin-bottom: var(--sp-5);
}
.hero-ctas {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.hero-trust {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.9rem;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item .icon { color: var(--primary); width: 18px; height: 18px; }
.hero-stars { display: inline-flex; gap: 2px; color: var(--primary); }
.hero-stars svg { width: 16px; height: 16px; fill: var(--primary); }

.scroll-indicator {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  animation: floaty 2.4s ease-in-out infinite;
}
.scroll-indicator svg { width: 18px; height: 18px; margin: 6px auto 0; color: var(--primary); }
@keyframes floaty {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.9; }
  50%      { transform: translate(-50%, 6px); opacity: 0.6; }
}

/* ============================================================
   USP STRIP
   ============================================================ */
.usp {
  background: var(--bg-mid);
  border-block: 1px solid var(--border);
  padding-block: var(--sp-5);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border-left: 1px solid var(--border);
  position: relative;
}
.usp-item:first-child { border-left: none; }
.usp-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.usp-item:hover .usp-icon {
  background: var(--primary);
  color: #0A0A0A;
  transform: scale(1.06) rotate(-4deg);
}
.usp-icon svg { width: 22px; height: 22px; }
.usp-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.usp-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.45;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-3);
}
.service-card {
  background: linear-gradient(180deg, var(--bg-light), var(--bg-mid));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 300px at 50% -20%, rgba(245, 158, 11, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0A0A0A;
  transform: scale(1.05);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--sp-2);
  font-family: var(--font-head);
  color: var(--text);
}
.service-card p {
  color: var(--text-light);
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: var(--sp-3);
}
.service-bullets {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-2);
  margin-top: auto;
}
.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}
.service-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FLEET
   ============================================================ */
.fleet {
  background: var(--bg-mid);
  overflow: hidden;
}
.fleet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 900px) {
  .fleet-inner { grid-template-columns: 1.05fr 1fr; gap: var(--sp-6); }
}
.fleet-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.fleet-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.fleet-visual:hover img { transform: scale(1.04); }
.fleet-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 9, 11, 0.45));
  pointer-events: none;
}
.fleet-badge {
  position: absolute;
  left: var(--sp-3);
  bottom: var(--sp-3);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.fleet-text .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  display: block;
}
.fleet-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--sp-3);
}
.fleet-text > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: var(--sp-4);
  line-height: 1.7;
}
.fleet-features {
  display: grid;
  gap: var(--sp-2);
  list-style: none;
}
.fleet-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
}
.fleet-features li:last-child { border-bottom: none; }
.fleet-features svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.fleet-features strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 2px;
}
.fleet-features span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================================
   REGION / SERVICE AREA
   ============================================================ */
.region {
  position: relative;
  overflow: hidden;
}
.region::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 20% 50%, rgba(245, 158, 11, 0.08), transparent 55%),
    radial-gradient(700px 500px at 80% 50%, rgba(245, 158, 11, 0.05), transparent 55%);
  pointer-events: none;
}
.region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  position: relative;
}
@media (min-width: 900px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); align-items: start; }
}
.region-card {
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  backdrop-filter: blur(8px);
}
.region-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.region-card h3 svg {
  width: 24px; height: 24px;
  color: var(--primary);
}
.region-card > p {
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.25s var(--ease);
}
.chip:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.16);
  color: var(--primary);
  transform: translateY(-1px);
}
.chip svg { width: 14px; height: 14px; color: var(--primary); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-mid);
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: var(--sp-4); left: 6%;
  font-family: var(--font-head);
  font-size: 14rem;
  line-height: 1;
  color: rgba(245, 158, 11, 0.08);
  pointer-events: none;
  font-weight: 700;
}
.testimonials .container { position: relative; }
.testimonials .section-title::before {
  content: "“";
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--primary);
  line-height: 0.8;
  display: block;
  margin-bottom: -10px;
  opacity: 0.45;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
}
.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.review-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-head);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}
.review-meta h4 {
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
}
.review-meta time {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-2);
  color: var(--primary);
}
.review-stars svg { width: 16px; height: 16px; fill: var(--primary); }
.review-card blockquote {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  padding-left: 14px;
  border-left: 3px solid var(--primary);
}
.review-footer {
  margin-top: var(--sp-3);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-footer svg { width: 14px; height: 14px; color: var(--primary); }

.mani-it-link {
  position: relative;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    #b8962e 0%,
    #ffd700 25%,
    #fff3a0 50%,
    #ffd700 75%,
    #b8962e 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldWave 3s linear infinite;
}

@keyframes goldWave {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.mani-it-link:hover {
  animation-duration: 1s;
  filter: brightness(1.2);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: var(--sp-6); }
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-2);
}
.contact-info > p {
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.contact-list {
  list-style: none;
  display: grid;
  gap: var(--sp-2);
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--sp-2);
  background: rgba(24, 24, 27, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}
.contact-list li:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}
.contact-list a { display: block; color: var(--text); }
.contact-list a:hover { color: var(--primary); }
.contact-list svg {
  width: 22px; height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-list span {
  color: var(--text-light);
  font-size: 0.88rem;
}

.contact-socials {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.08);
  color: var(--primary);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.social-btn:hover {
  background: var(--primary);
  color: #0A0A0A;
  transform: translateY(-3px) scale(1.06);
  border-color: var(--primary);
}
.social-btn svg { width: 20px; height: 20px; }

/* Form */
.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: var(--sp-1);
}
.contact-form > p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: var(--sp-4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field {
  margin-bottom: var(--sp-2);
  position: relative;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-field label .req { color: var(--primary); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-mid);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}
.form-field input.error,
.form-field textarea.error {
  border-color: #F87171;
  background: rgba(248, 113, 113, 0.06);
}
.field-error {
  display: block;
  color: #F87171;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 1.1em;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
/* Honeypot — fully hidden */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: var(--sp-3) 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
  margin-top: 2px;
}
.form-consent a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--border-strong); }
.form-alert {
  margin-bottom: var(--sp-2);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  display: none;
}
.form-alert.error { display: block; background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.3); color: #FCA5A5; }
.form-alert.success { display: block; background: rgba(245, 158, 11, 0.12); border: 1px solid var(--border-strong); color: var(--primary); }
.form-submit {
  width: 100%;
  margin-top: var(--sp-1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050506;
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a { color: var(--text-light); }
.footer-col a:hover { color: var(--primary); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-2);
}
.footer-intro p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-2);
}
.footer-socials .social-btn { width: 36px; height: 36px; }
.footer-socials .social-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #0A0A0A;
  font-weight: 600;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s var(--ease);
}
.floating-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.55);
  color: #0A0A0A;
}
.floating-cta svg { width: 20px; height: 20px; }
.floating-cta .pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: var(--r-pill);
  border: 2px solid var(--primary);
  opacity: 0.6;
  animation: pulseRing 2.2s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 70;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(10px);
  color: var(--primary);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--primary);
  color: #0A0A0A;
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   Only hide .reveal when JS is ready — otherwise default visible
   ============================================================ */
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
html.js-anim .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-hero {
  padding-block: var(--sp-6) var(--sp-5);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-mid);
}
.page-hero .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-1);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin-bottom: var(--sp-2);
}
.page-hero p {
  color: var(--text-light);
  max-width: 60ch;
  margin: 0 auto;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding-block: var(--sp-5);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-1);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
}
.legal-content p,
.legal-content li {
  color: var(--text-light);
  margin-bottom: var(--sp-2);
  line-height: 1.75;
}
.legal-content ul { padding-left: 20px; margin-bottom: var(--sp-2); }
.legal-content li { margin-bottom: 6px; }
.legal-content dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 20px;
  margin-block: var(--sp-3);
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
}
@media (max-width: 600px) {
  .legal-content dl { grid-template-columns: 1fr; }
}
.legal-content dt {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
}
.legal-content dd {
  color: var(--text);
  font-size: 0.95rem;
}

/* ============================================================
   RESPONSIVE — NAV MOBILE
   ============================================================ */
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(80vw, 320px);
    background: var(--bg-light);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-5) var(--sp-4);
    gap: var(--sp-3);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0s linear 0.35s;
    z-index: 120;
    box-shadow: -24px 0 40px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s var(--ease), visibility 0s linear 0s;
  }
  .nav-links a { font-size: 1.05rem; width: 100%; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 110;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 600px) {
  :root { --sp-7: 72px; --sp-8: 96px; }
  .topbar-left { flex-wrap: wrap; gap: 14px; }
  .usp-item { border-left: none; border-top: 1px solid var(--border); padding: 18px 12px; }
  .usp-item:first-child { border-top: none; }
  .floating-cta { padding: 12px 18px; font-size: 0.9rem; right: 14px; bottom: 14px; }
  .back-to-top { left: 14px; bottom: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   ACCESSIBILITY — reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .topbar, .site-header, .floating-cta, .back-to-top,
  .hero, .contact-form, .footer-socials, .contact-socials,
  .nav-backdrop, .scroll-indicator { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; padding: 0; }
  a { color: #000; text-decoration: underline; }
  section { padding-block: 16px; page-break-inside: avoid; }
  h1, h2, h3, h4 { color: #000; }
}
