/* ============================================================
   INVISIBLE STREETS — Premium Design System
   Brand: Editoriale, culturale, mediterraneo, umano, elegante
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --c-charcoal: #3A3940;
  --c-sage: #7C8C5F;
  --c-coral: #E39663;
  --c-bg: #F3F1EC;
  --c-paper: #FAF9F6;
  --c-sand: #D8C3A5;
  --c-line: #D7D2C7;
  --c-sky: #8FB7D9;

  /* Derived */
  --c-charcoal-90: rgba(58,57,64,0.9);
  --c-charcoal-60: rgba(58,57,64,0.6);
  --c-charcoal-15: rgba(58,57,64,0.15);
  --c-charcoal-08: rgba(58,57,64,0.08);
  --c-sage-15: rgba(124,140,95,0.15);
  --c-coral-20: rgba(227,150,99,0.2);
  --c-paper-10: rgba(250,249,246,0.1);
  --c-paper-80: rgba(250,249,246,0.8);

  /* Typography */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
  --sp-2xl: 96px;
  --sp-3xl: 128px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 8px rgba(58,57,64,0.06);
  --shadow-md: 0 4px 24px rgba(58,57,64,0.10);
  --shadow-lg: 0 12px 48px rgba(58,57,64,0.14);
  --shadow-coral: 0 8px 32px rgba(227,150,99,0.30);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-med: 0.35s;
  --t-slow: 0.65s;

  /* Layout */
  --max-w: 1200px;
  --max-w-text: 720px;
  --header-h: 72px;
}

/* ============================================================
   LOGO SVG
   ============================================================ */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-svg {
  height: 44px;
  width: auto;
  color: var(--c-charcoal);
  /* SVG uses currentColor so it inherits */
  filter: none;
  transition: opacity var(--t-fast);
}
.logo-svg:hover { opacity: 0.75; }
.footer-logo-svg {
  height: 38px;
  width: auto;
  /* On dark background, invert to white */
  filter: invert(1) brightness(2);
  opacity: 0.85;
}

/* ============================================================
   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);
  background: var(--c-bg);
  color: var(--c-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-full);
  padding: 5px 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-fast);
}
.lang-toggle:hover { box-shadow: var(--shadow-md); }
.lang-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-charcoal-60);
  padding: 4px 8px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.lang-btn.active {
  background: var(--c-charcoal);
  color: var(--c-paper);
}
.lang-btn:hover:not(.active) { color: var(--c-charcoal); }
.lang-divider { font-size: 11px; color: var(--c-line); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(243,241,236,0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.header.scrolled {
  border-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-charcoal);
  letter-spacing: -0.01em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 80px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-charcoal-60);
  transition: color var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-sage);
  transition: width var(--t-med) var(--ease-out);
}
.nav-link:hover { color: var(--c-charcoal); }
.nav-link:hover::after { width: 100%; }
.nav-link.nav-cta {
  background: var(--c-coral);
  color: var(--c-charcoal);
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: all var(--t-med) var(--ease-out);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: #d4834f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
  color: var(--c-charcoal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: all var(--t-med) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--c-coral);
  color: var(--c-charcoal);
}
.btn-primary:hover {
  background: #d4834f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}
.btn-ghost {
  background: transparent;
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-charcoal-15);
}
.btn-ghost:hover {
  background: var(--c-charcoal-08);
  border-color: var(--c-charcoal);
}
.btn-cta {
  background: var(--c-paper);
  color: var(--c-charcoal);
  font-size: 17px;
  padding: 18px 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: var(--sp-2xl) 0; }
.section-light { background: var(--c-paper); }
.section-dark { background: var(--c-charcoal); }
.section-cream { background: var(--c-bg); }

/* Section Header */
.section-header {
  margin-bottom: var(--sp-xl);
  max-width: var(--max-w-text);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--c-sage);
}
.section-tag-light { color: var(--c-coral); }
.section-tag-light::before { background: var(--c-coral); }
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--c-charcoal);
  margin-bottom: 20px;
}
.section-dark .section-title { color: var(--c-paper); }
.section-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-charcoal-60);
  max-width: var(--max-w-text);
}
.section-dark .section-lead { color: var(--c-paper-80); }
.body-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-charcoal-60);
  margin-bottom: 16px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-bg);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Animated texture background */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(124,140,95,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(227,150,99,0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(143,183,217,0.04) 0%, transparent 40%);
  animation: texturePulse 8s ease-in-out infinite alternate;
}
@keyframes texturePulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--c-bg));
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  width: 100%;
}

/* Hero Left */
.hero-left { max-width: 580px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--c-coral);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-charcoal);
  margin-bottom: 28px;
}
.hero-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.45s; }
.hero-line-accent { color: var(--c-sage); }

.hero-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-charcoal-60);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.75s forwards;
}

.hero-proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-full);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.proof-number {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-coral);
}
.proof-stars {
  font-size: 13px;
  color: var(--c-coral);
  letter-spacing: 1px;
}
.proof-label {
  font-size: 12px;
  color: var(--c-charcoal-60);
  font-weight: 500;
}

/* Hero Right */
.hero-right {
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.4s forwards;
}
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* Floating Badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  max-width: 220px;
}
.hero-badge:nth-child(2) {
  bottom: 40px;
  left: -20px;
  animation-delay: 0s;
}
.hero-badge.hero-badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 20px; }
.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-charcoal);
  line-height: 1.2;
}
.badge-text span {
  font-size: 11px;
  color: var(--c-charcoal-60);
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-sage), transparent);
  margin: 0 auto;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--sp-lg);
}
.problem-card {
  background: var(--c-paper-10);
  border: 1px solid rgba(215,210,199,0.2);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t-med) var(--ease-out);
}
.problem-card:hover {
  background: rgba(250,249,246,0.12);
  transform: translateY(-4px);
  border-color: rgba(215,210,199,0.4);
}
.problem-icon { font-size: 26px; margin-bottom: 14px; }
.problem-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,249,246,0.8);
}
.problem-closing {
  border-top: 1px solid rgba(215,210,199,0.2);
  padding-top: var(--sp-lg);
}
.problem-closing p {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--c-coral);
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.solution-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-sage);
  margin-bottom: 20px;
  line-height: 1.5;
}
.solution-image {
  position: relative;
}
.solution-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.solution-image::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--c-sand);
  border-radius: var(--r-xl);
  z-index: -1;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--c-sand);
}
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--c-sand);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 10px;
  line-height: 1.35;
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-charcoal-60);
}

/* ============================================================
   INTERFACE SECTION
   ============================================================ */
.interface-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: var(--sp-xl);
}
.interface-col {
  background: var(--c-paper-10);
  border: 1px solid rgba(215,210,199,0.2);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--t-med) var(--ease-out);
}
.interface-col:hover {
  background: rgba(250,249,246,0.08);
  transform: translateY(-4px);
}
.interface-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4/3;
}
.interface-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.interface-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-coral);
  margin-bottom: 10px;
}
.interface-col p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-paper-80);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-layout {
  max-width: 760px;
  position: relative;
}
.steps-layout::before {
  content: '';
  position: absolute;
  left: 27px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-coral), var(--c-sage));
  opacity: 0.3;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
}
.step:last-child { border-bottom: none; }
.step-dot {
  width: 56px; height: 56px;
  background: var(--c-coral);
  color: var(--c-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-coral);
  transition: transform var(--t-med) var(--ease-out);
}
.step:hover .step-dot { transform: scale(1.1); }
.step-body { padding-top: 14px; }
.step-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-charcoal-60);
}

/* ============================================================
   CUSTOMIZATION
   ============================================================ */
.custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}
.tag-pill {
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  color: var(--c-charcoal);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  cursor: default;
}
.tag-pill:hover {
  border-color: var(--c-sage);
  color: var(--c-sage);
  background: var(--c-sage-15);
}
.tag-pill-accent {
  background: var(--c-coral-20);
  border-color: var(--c-coral);
  color: var(--c-charcoal);
}
.tag-pill-accent:hover {
  background: var(--c-coral);
  border-color: var(--c-coral);
}

/* ============================================================
   TOURS SECTION
   ============================================================ */
.city-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: var(--sp-lg);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.city-tabs::-webkit-scrollbar { display: none; }
.city-tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--c-line);
  background: var(--c-bg);
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
  width: 140px;
}
.city-tab img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.city-tab span {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-charcoal-60);
  padding: 0 12px 12px;
  transition: color var(--t-fast);
}
.city-tab:hover img { transform: scale(1.05); }
.city-tab:hover span { color: var(--c-charcoal); }
.city-tab.active {
  border-color: var(--c-sage);
  box-shadow: 0 0 0 1px var(--c-sage);
}
.city-tab.active span { color: var(--c-sage); font-weight: 700; }

/* Tour Panels */
.tour-panel {
  display: none;
  animation: panelIn 0.4s var(--ease-out);
}
.tour-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.tour-panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--sp-lg);
  padding: 24px;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.panel-city-img {
  width: 80px; height: 60px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.panel-city-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-charcoal);
  margin-bottom: 4px;
}
.panel-city-desc {
  font-size: 14px;
  color: var(--c-charcoal-60);
}
.tours-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.tour-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all var(--t-med) var(--ease-out);
}
.tour-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--c-sand);
}
.tour-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.tour-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1.3;
}
.duration-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-sage);
  background: var(--c-sage-15);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.tour-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-charcoal-60);
  margin-bottom: 14px;
}
.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tour-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-charcoal-60);
  background: var(--c-charcoal-08);
  padding: 3px 9px;
  border-radius: var(--r-full);
}

/* ============================================================
   FOLLOW-UP
   ============================================================ */
.followup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.followup-card {
  background: var(--c-paper-10);
  border: 1px solid rgba(215,210,199,0.2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.followup-card:hover {
  background: rgba(250,249,246,0.1);
  transform: translateY(-4px);
}
.followup-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 36px;
  font-weight: 800;
  color: rgba(250,249,246,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
}
.followup-icon-wrap { font-size: 28px; margin-bottom: 16px; }
.followup-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-coral);
  margin-bottom: 10px;
}
.followup-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-paper-80);
}

/* ============================================================
   PROOF
   ============================================================ */
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.proof-numbers {
  display: flex;
  gap: var(--sp-xl);
  margin: var(--sp-lg) 0;
}
.proof-big {
  font-size: 52px;
  font-weight: 800;
  color: var(--c-coral);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.proof-desc {
  font-size: 14px;
  color: var(--c-charcoal-60);
  font-weight: 500;
}
.proof-right img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  position: relative;
  background: var(--c-charcoal);
  padding: var(--sp-3xl) 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124,140,95,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(227,150,99,0.10) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--c-paper);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-paper-80);
  max-width: 560px;
  margin: 0 auto var(--sp-lg);
}
.cta-small {
  font-size: 14px;
  color: rgba(250,249,246,0.5);
  max-width: 480px;
  margin: 20px auto 0;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-charcoal);
  border-top: 1px solid rgba(215,210,199,0.15);
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(215,210,199,0.12);
  margin-bottom: var(--sp-md);
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand .logo-text { color: var(--c-paper); }
.footer-tagline {
  font-size: 13px;
  color: rgba(250,249,246,0.45);
}
.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(250,249,246,0.55);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--c-coral); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(250,249,246,0.3);
}
.footer-cities {
  font-size: 12px;
  color: rgba(250,249,246,0.3);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sp-2xl: 72px; --sp-3xl: 96px; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    padding: var(--sp-xl) var(--sp-md) var(--sp-2xl);
    text-align: left;
  }
  .hero-left { max-width: 100%; }
  .hero-subtitle { margin-left: 0; margin-right: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-proof { justify-content: flex-start; }
  .hero-right { max-width: 560px; margin: 0 auto; }
  .hero-img { height: 420px; }
  .hero-badge:nth-child(2) { left: 0; }
  .hero-badge.hero-badge-2 { right: 0; }

  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-layout { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .solution-image { max-width: 500px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .interface-cols { grid-template-columns: 1fr; }
  .custom-layout { grid-template-columns: 1fr; }
  .followup-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-layout { grid-template-columns: 1fr; }
  .proof-right img { height: 360px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-2xl: 56px;
    --sp-3xl: 72px;
    --header-h: 64px;
  }

  /* Header */
  .header-inner { padding: 0 20px; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 900;
  }
  .nav.open { display: flex; }
  .nav-link {
    font-size: 22px;
    font-weight: 600;
    color: var(--c-charcoal);
  }
  .nav-link.nav-cta {
    font-size: 15px;
    padding: 12px 28px;
  }
  .hamburger { display: flex; }

  /* Lang toggle */
  .lang-toggle { top: auto; bottom: 24px; right: 20px; }

  /* Hero */
  .hero-container { padding: var(--sp-lg) 20px var(--sp-xl); }
  .hero-title { font-size: 34px; }
  .hero-img { height: 320px; }
  .hero-badge { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Sections */
  .section { padding: var(--sp-xl) 0; }
  .section-title { font-size: 24px; }
  .section-lead { font-size: 16px; }
  .body-text { font-size: 15px; }

  /* Problems */
  .problems-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Steps */
  .steps-layout::before { display: none; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; }
  .step-dot { width: 48px; height: 48px; font-size: 16px; }
  .step-body { padding-top: 10px; }
  .step-body h3 { font-size: 16px; }

  /* City tabs */
  .city-tab { width: 110px; }
  .city-tab img { height: 70px; }
  .city-tab span { font-size: 12px; }

  /* Tours */
  .tour-panel-header { flex-direction: column; gap: 12px; }
  .panel-city-img { width: 100%; height: 140px; }
  .tours-cards { grid-template-columns: 1fr; }

  /* Follow-up */
  .followup-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Proof */
  .proof-numbers { gap: var(--sp-lg); }
  .proof-big { font-size: 40px; }

  /* CTA */
  .btn-cta { font-size: 15px; padding: 16px 28px; width: 100%; max-width: 320px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .proof-pill { padding: 6px 12px; }
  .proof-number, .proof-stars { font-size: 13px; }
  .city-tabs { gap: 8px; }
  .city-tab { width: 95px; }
  .city-tab img { height: 60px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header, .lang-toggle, .scroll-hint, .hero-badge { display: none; }
  .hero { min-height: auto; padding-top: 20px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-track {
  overflow: hidden;
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-md);
}
.testimonials-inner {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  position: relative;
}
.testimonial-quote {
  font-size: 80px;
  line-height: 0.8;
  color: var(--c-coral);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  opacity: 0.6;
}
.testimonial-card > p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--c-charcoal);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 680px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: var(--c-sage);
  color: var(--c-paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-charcoal);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--c-charcoal-60);
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line);
  background: var(--c-paper);
  color: var(--c-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.t-nav-btn:hover {
  background: var(--c-charcoal);
  color: var(--c-paper);
  border-color: var(--c-charcoal);
}
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-line);
  transition: all var(--t-fast);
  cursor: pointer;
}
.t-dot.active {
  background: var(--c-coral);
  width: 24px;
  border-radius: 4px;
}

/* Mobile testimonials */
@media (max-width: 768px) {
  .testimonial-card { padding: 28px 24px; }
  .testimonial-quote { font-size: 56px; }
  .testimonial-card > p { font-size: 16px; }
}

/* ============================================================
   MARQUEE / CITIES STRIP (WOW factor)
   ============================================================ */
.cities-strip {
  background: var(--c-charcoal);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(215,210,199,0.1);
  border-bottom: 1px solid rgba(215,210,199,0.1);
}
.cities-strip-inner {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.cities-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.45);
  white-space: nowrap;
}
.cities-strip-item .dot {
  width: 5px; height: 5px;
  background: var(--c-coral);
  border-radius: 50%;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HERO IMPROVEMENTS
   ============================================================ */
/* Ensure hero image has a nice overlay */
.hero-img {
  filter: saturate(1.05) contrast(1.02);
}

/* Floating badge entrance animation */
.hero-badge {
  opacity: 0;
  animation: badgeIn 0.6s var(--ease-out) 1.2s forwards;
}
.hero-badge.hero-badge-2 {
  animation-delay: 1.5s;
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav-link.active-section {
  color: var(--c-charcoal);
}
.nav-link.active-section::after {
  width: 100%;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-coral), var(--c-sage));
  z-index: 9999;
  transition: width 0.1s linear;
  transform-origin: left;
}

/* ============================================================
   MOBILE REFINEMENTS — Final Pass
   ============================================================ */

/* Ensure no horizontal overflow on mobile */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  /* Hero mobile refinements */
  .hero-container {
    min-height: auto;
    padding-top: var(--sp-lg);
    padding-bottom: var(--sp-xl);
    text-align: left;
  }
  .hero-left { text-align: left; }
  .hero-actions { justify-content: flex-start; flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; max-width: none; }
  .hero-proof { justify-content: flex-start; }
  .hero-subtitle { margin-left: 0; margin-right: 0; }

  /* Section spacing */
  .section-header { margin-bottom: var(--sp-lg); }
  .section-tag { font-size: 11px; }

  /* Solution image mobile */
  .solution-image img { height: 280px; }
  .solution-image::before { display: none; }

  /* Why cards mobile */
  .why-num { font-size: 40px; }

  /* Custom tags mobile */
  .custom-layout { gap: var(--sp-lg); }
  .tag-pill { font-size: 12px; padding: 7px 14px; }

  /* Proof mobile */
  .proof-layout { gap: var(--sp-lg); }
  .proof-right img { height: 260px; }

  /* CTA mobile */
  .section-cta { padding: var(--sp-xl) 0; }
  .cta-title { font-size: 26px; }
  .cta-lead { font-size: 16px; }
  .btn-cta { font-size: 14px; padding: 14px 24px; }

  /* Steps mobile */
  .step-body h3 { font-size: 15px; }
  .step-body p { font-size: 14px; }

  /* Interface mobile */
  .interface-col { padding: 24px; }
  .interface-img-wrap { aspect-ratio: 16/9; }

  /* Followup mobile */
  .followup-card { padding: 24px 20px; }
  .followup-card h3 { font-size: 15px; }
  .followup-card p { font-size: 13px; }

  /* Tour panel mobile */
  .tour-card { padding: 20px; }
  .tour-card h4 { font-size: 14px; }

  /* Testimonials mobile */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card > p { font-size: 15px; margin-bottom: 24px; }
  .testimonial-quote { font-size: 48px; margin-bottom: 12px; }

  /* Footer mobile */
  .footer { padding: var(--sp-lg) 0 var(--sp-md); }
  .footer-cities { display: none; }
}

/* ============================================================
   VERY SMALL SCREENS (< 360px)
   ============================================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 28px; }
  .btn { font-size: 14px; padding: 12px 20px; }
  .section-title { font-size: 22px; }
  .proof-pill { flex-direction: column; gap: 2px; text-align: center; }
}

/* ============================================================
   LANDSCAPE MOBILE
   ============================================================ */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero-container { padding: var(--sp-md) 20px; }
  .hero-img { height: 240px; }
}

/* ============================================================
   FOCUS STATES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--c-coral);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--c-coral);
  outline-offset: 3px;
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: var(--c-coral-20);
  color: var(--c-charcoal);
}

/* ============================================================
   SCROLLBAR (Desktop)
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: var(--c-sand);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-sage); }

/* ============================================================
   LOADING ANIMATION
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   HOVER EFFECTS — Enhanced
   ============================================================ */
.btn-primary svg,
.btn-cta svg {
  transition: transform var(--t-fast);
}
.btn-primary:hover svg,
.btn-cta:hover svg {
  transform: translateX(4px);
}

/* Problem cards hover */
.problem-card:hover .problem-icon {
  transform: scale(1.15);
  transition: transform var(--t-fast);
}

/* Why card number */
.why-card:hover .why-num {
  color: var(--c-coral);
  transition: color var(--t-med);
}

/* Tour card hover */
.tour-card:hover .duration-badge {
  background: var(--c-sage);
  color: var(--c-paper);
}

/* ============================================================
   SECTION TRANSITIONS
   ============================================================ */
.section-dark .section-tag {
  color: rgba(227,150,99,0.8);
}
.section-dark .section-tag::before {
  background: rgba(227,150,99,0.8);
}

/* ============================================================
   HERO GRADIENT OVERLAY on image
   ============================================================ */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(
    135deg,
    rgba(124,140,95,0.08) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   CTA BUTTONS LAYOUT (WhatsApp + Email)
   ============================================================ */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(250,249,246,0.4);
  background: transparent;
  color: var(--c-paper);
  text-decoration: none;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-ghost-light:hover {
  background: rgba(250,249,246,0.12);
  border-color: rgba(250,249,246,0.7);
  transform: translateY(-2px);
}

/* Logo SVG mobile */
@media (max-width: 768px) {
  .logo-svg { height: 36px; }
  .footer-logo-svg { height: 32px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-cta,
  .cta-buttons .btn-ghost-light { width: 100%; max-width: 300px; justify-content: center; }
}

/* ============================================================
   MOBILE COMPREHENSIVE FIXES
   ============================================================ */

/* Ensure SVG logo renders correctly in all browsers */
.logo-svg, .footer-logo-svg {
  display: block;
  max-width: 100%;
}

/* Fix hero proof pills on mobile */
@media (max-width: 480px) {
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 8px; }
  .proof-pill { font-size: 12px; }
}

/* Fix interface columns on mobile */
@media (max-width: 768px) {
  .interface-cols { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .interface-col { padding: 20px; }
  .interface-img-wrap { aspect-ratio: 4/3; }
  .interface-label { font-size: 13px; margin-top: 16px; }
}

/* Fix why-grid on mobile */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 24px 20px; }
  .why-num { font-size: 36px; }
}

/* Fix followup grid on mobile */
@media (max-width: 768px) {
  .followup-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Fix custom tags on mobile */
@media (max-width: 768px) {
  .custom-tags { gap: 8px; }
  .tag-pill { font-size: 12px; padding: 6px 12px; }
}

/* Fix city tabs on mobile */
@media (max-width: 768px) {
  .city-tabs { gap: 8px; padding: 0 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .city-tab { min-width: 90px; flex-shrink: 0; }
  .city-tab img { height: 60px; }
  .city-tab span { font-size: 11px; }
}

/* Fix tour cards on mobile */
@media (max-width: 768px) {
  .tours-cards { grid-template-columns: 1fr; gap: 12px; }
  .tour-card { padding: 20px; }
  .tour-card h4 { font-size: 15px; }
}

/* Fix proof section on mobile */
@media (max-width: 768px) {
  .proof-layout { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .proof-numbers { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .proof-big { font-size: 36px; }
  .proof-right { display: none; }
}

/* Fix testimonials on mobile */
@media (max-width: 768px) {
  .testimonial-card { padding: 28px 24px; }
  .testimonial-card > p { font-size: 16px; }
  .testimonial-quote { font-size: 60px; }
}

/* Fix section-cta on mobile */
@media (max-width: 768px) {
  .section-cta { padding: var(--sp-xl) 0; }
  .cta-title { font-size: 24px; line-height: 1.3; }
  .cta-lead { font-size: 15px; }
}

/* Fix footer on mobile */
@media (max-width: 768px) {
  .footer { padding: var(--sp-xl) 0 var(--sp-lg); }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .footer-cities { font-size: 12px; }
}

/* Fix solution layout on mobile */
@media (max-width: 768px) {
  .solution-layout { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .solution-image img { height: 240px; border-radius: var(--r-lg); }
}

/* Fix step layout on mobile */
@media (max-width: 768px) {
  .steps-layout { padding: 0; }
  .step { gap: 16px; padding: 20px 0; }
  .step-dot { width: 44px; height: 44px; font-size: 15px; flex-shrink: 0; }
}

/* ============================================================
   FINAL MOBILE POLISH — All sections verified
   ============================================================ */
@media (max-width: 768px) {

  /* Footer brand layout */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-brand .logo {
    margin-bottom: 0;
  }
  .footer-logo-svg {
    height: 32px;
  }
  .footer-tagline {
    font-size: 12px;
    max-width: 220px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .footer-cities {
    display: none;
  }

  /* CTA section */
  .section-cta {
    padding: 64px 0;
  }
  .cta-title {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 16px;
  }
  .cta-lead {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-buttons .btn-cta,
  .cta-buttons .btn-ghost-light {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
  }
  .cta-small {
    font-size: 13px;
    padding: 0 16px;
  }

  /* Proof section */
  .proof-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-numbers {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 32px;
  }
  .proof-right {
    display: none;
  }

  /* City tabs scrollable */
  .city-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .city-tabs::-webkit-scrollbar { display: none; }
  .city-tab {
    min-width: 80px;
    flex-shrink: 0;
  }
  .city-tab img {
    height: 56px;
    width: 80px;
    object-fit: cover;
  }
  .city-tab span {
    font-size: 11px;
  }

  /* Tour cards single column */
  .tours-cards {
    grid-template-columns: 1fr;
  }
  .tour-card {
    padding: 20px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 28px 20px;
  }
  .testimonial-card > p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Interface section */
  .interface-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Solution section */
  .solution-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .solution-image img {
    height: 220px;
    border-radius: 16px;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Followup grid */
  .followup-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Customization layout */
  .custom-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .custom-tags {
    gap: 8px;
  }
  .tag-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Steps */
  .step {
    gap: 16px;
    padding: 20px 0;
  }
  .step-dot {
    width: 44px;
    height: 44px;
    font-size: 15px;
    flex-shrink: 0;
  }
  .step-content h3 {
    font-size: 16px;
  }
  .step-content p {
    font-size: 14px;
  }

  /* Hero badges */
  .hero-badge {
    font-size: 12px;
    padding: 8px 12px;
    gap: 8px;
  }
  .hero-badge-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  /* Section headers */
  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .section-lead {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero-title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .proof-pill {
    font-size: 11px;
    padding: 6px 12px;
  }
  .btn {
    font-size: 14px;
    padding: 14px 20px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    padding: 20px;
  }
  .why-card {
    padding: 20px;
  }
  .why-num {
    font-size: 32px;
  }
}
