/* =================================================================
   SnapSpot Paris — Landing Page
   Design: "Parisian Lumière" — warm neutrals, editorial typography,
   generous whitespace, single violet→blue accent.
   ================================================================= */

:root {
  /* ============ COLORS ============ */
  --bg: #FAF8F3;               /* ivory, main background */
  --bg-alt: #F3EFE6;           /* stone, section alternance */
  --bg-dark: #1A1A1F;          /* near-black, contrast blocks */
  --surface: #FFFFFF;          /* cards */
  --ink: #1A1A1F;              /* primary text */
  --ink-soft: #4A4A55;         /* secondary text */
  --ink-mute: #8A8A95;         /* muted text */
  --line: #E8E2D5;             /* borders */
  --line-soft: #F1ECE0;        /* lighter borders */

  /* Brand */
  --brand: #4682DC;            /* app's primary blue */
  --brand-dark: #2E6AC4;
  --violet: #7C5CFF;           /* editorial accent */
  --gold: #C8A862;             /* warm punctuation */

  /* Gradient signature */
  --grad: linear-gradient(135deg, #7C5CFF 0%, #4682DC 100%);
  --grad-warm: linear-gradient(135deg, #F3EFE6 0%, #FAF8F3 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,26,31,0.04), 0 1px 3px rgba(26,26,31,0.05);
  --shadow-md: 0 4px 12px rgba(26,26,31,0.06), 0 2px 4px rgba(26,26,31,0.04);
  --shadow-lg: 0 20px 40px rgba(26,26,31,0.08), 0 8px 16px rgba(26,26,31,0.04);
  --shadow-xl: 0 40px 80px rgba(26,26,31,0.12), 0 16px 32px rgba(26,26,31,0.06);

  /* Type */
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--violet);
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn-primary, .btn-ghost, .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  font-size: 17px;
  padding: 18px 32px;
  border-radius: var(--radius-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink);
}

.btn-link {
  padding: 13px 8px;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 0;
}
.btn-link:hover {
  color: var(--ink);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(1.2) blur(16px);
  -webkit-backdrop-filter: saturate(1.2) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 248, 243, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-mark {
  font-size: 24px;
  line-height: 1;
}
.logo-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--violet);
}

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a { transition: color 150ms ease; }
.site-nav a:hover { color: var(--ink); }

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
  position: relative;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  transition: background 150ms ease, border-color 150ms ease;
}
.lang-toggle:hover { background: var(--surface); border-color: var(--ink-soft); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-chevron {
  font-size: 11px;
  transition: transform 200ms ease;
  color: var(--ink-mute);
}
.lang-toggle[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 6px;
  margin: 0;
  z-index: 200;
}
.lang-menu li { margin: 0; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 150ms ease, color 150ms ease;
}
.lang-menu a:hover { background: var(--bg-alt); color: var(--ink); }
.lang-menu a[aria-current="true"] {
  background: var(--bg-alt);
  color: var(--ink);
  font-weight: 600;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.mobile-lang a {
  padding: 8px 14px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill, 40px);
  font-size: 13px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--line) !important;
}
.mobile-lang a[aria-current="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 250ms ease, opacity 150ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu a {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}
.mobile-menu a:last-child { border: 0; margin-top: 12px; }
.mobile-menu .btn-primary, .mobile-menu .btn-ghost { justify-content: center; }

@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu[data-open="true"] { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(124, 92, 255, 0.08), transparent 70%),
    radial-gradient(70% 70% at 20% 80%, rgba(70, 130, 220, 0.06), transparent 70%),
    var(--bg);
  z-index: -1;
}
.hero-inner {
  max-width: var(--container-narrow);
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 44px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 600px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============ SECTIONS COMMUNES ============ */
.section {
  padding: 120px 0;
}
.section-how { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-spots { background: var(--bg); }
.section-photographers { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-why { background: var(--bg); }
.section-faq { background: var(--bg-alt); }
.section-cta-final { background: var(--bg-dark); color: var(--bg); }

.section-header {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 64px;
}

/* ============ STEPS (comment ça marche) ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.step {
  padding: 40px 32px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: 24px;
}
.step-title {
  font-size: 26px;
  margin-bottom: 14px;
}
.step-text {
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ SPOTS GRID ============ */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.spot-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 400ms ease, box-shadow 400ms ease;
  cursor: default;
}
.spot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.spot-card:hover .spot-image {
  transform: scale(1.05);
}
.spot-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 800ms ease;
}
.spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.spot-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: #fff;
  z-index: 2;
}
.spot-content h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 6px;
}
.spot-content p {
  font-size: 14px;
  opacity: 0.85;
}

/* Placeholders pour les images (gradients en attendant photos réelles) */
.spot-eiffel .spot-image      { background-image: linear-gradient(135deg, #FFD19A 0%, #C68A4B 50%, #5C4125 100%); }
.spot-louvre .spot-image      { background-image: linear-gradient(135deg, #E8D7B5 0%, #A88B5F 50%, #4A3A24 100%); }
.spot-arc .spot-image         { background-image: linear-gradient(135deg, #F0E3CC 0%, #B59B70 50%, #3E3223 100%); }
.spot-luxembourg .spot-image  { background-image: linear-gradient(135deg, #D4E3C8 0%, #7FA06A 50%, #2E4328 100%); }
.spot-montmartre .spot-image  { background-image: linear-gradient(135deg, #FFE8E0 0%, #E8A89A 50%, #6B4638 100%); }
.spot-notre-dame .spot-image  { background-image: linear-gradient(135deg, #D5E0EC 0%, #6A8BB3 50%, #2A3A52 100%); }

/* ============ PHOTOGRAPHERS GRID (dynamique) ============ */
.photographers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  min-height: 200px;
}
.photographers-loading, .photographers-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-mute);
  padding: 48px 0;
  font-style: italic;
  font-family: var(--font-serif);
}
.photographer-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
}
.photographer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.photographer-cover {
  aspect-ratio: 4 / 3;
  background: var(--grad-warm);
  background-size: cover;
  background-position: center;
  position: relative;
}
.photographer-cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--ink-mute);
  opacity: 0.4;
}
.photographer-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.photographer-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.photographer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--line);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
}
.photographer-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.photographer-meta {
  font-size: 13px;
  color: var(--ink-mute);
}
.photographer-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.photographer-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-weight: 600;
}
.photographer-rating strong { color: var(--ink); }
.photographer-price { margin-left: auto; font-weight: 600; color: var(--ink); }

/* ============ WHY SECTION ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-title { margin-bottom: 32px; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-list li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.15;
}
.why-list li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 4px;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
}
.why-list strong {
  color: var(--ink);
  font-weight: 600;
}

.why-visual {
  position: relative;
  min-height: 440px;
}
.why-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.why-card strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.why-card span {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
}
.why-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.why-card-1 { top: 20px; left: 20px; animation-delay: 0s; }
.why-card-2 { top: 180px; right: 0; animation-delay: 1.5s; }
.why-card-3 { bottom: 40px; left: 60px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ FAQ ============ */
.faq-container {
  max-width: var(--container-narrow);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item[open] {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  transition: background 150ms ease;
}
.faq-item summary:hover { background: var(--bg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  transition: transform 300ms ease, background 200ms ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
}
.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-answer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ CTA FINAL ============ */
.section-cta-final { padding: 100px 0; }
.cta-final-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(70,130,220,0.1));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.cta-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(124,92,255,0.25), transparent 60%),
    radial-gradient(60% 60% at 70% 70%, rgba(70,130,220,0.2), transparent 60%);
  z-index: 0;
}
.cta-final-card > * { position: relative; z-index: 1; }
.cta-final-title {
  color: var(--bg);
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 20px;
}
.cta-final-title em { color: #B8A4FF; }
.cta-final-text {
  font-size: 18px;
  color: rgba(250, 248, 243, 0.7);
  margin-bottom: 44px;
  max-width: 480px;
  margin-inline: auto;
}
.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.section-cta-final .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.section-cta-final .btn-primary:hover {
  background: var(--violet);
  color: var(--bg);
}
.section-cta-final .btn-link { color: rgba(250,248,243,0.75); }
.section-cta-final .btn-link:hover { color: var(--bg); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(250, 248, 243, 0.7);
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 24px 40px;
}
.footer-brand .logo { color: var(--bg); font-size: 22px; }
.logo-footer .logo-text em { color: #B8A4FF; }
.footer-tagline {
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--bg); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(250, 248, 243, 0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .hero { padding: 48px 0 80px; }
  .section-header { margin-bottom: 48px; }
  .steps-grid, .spots-grid, .photographers-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-visual { min-height: 380px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 56px 24px 24px;
  }
  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .trust-item strong { font-size: 24px; }
  .cta-final-card { padding: 56px 24px; }
}

@media (max-width: 600px) {
  .spots-grid { gap: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary { justify-content: center; }
  .hero-cta .btn-link { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ PREFERS REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
