/* ============================================================
   PURE BOND NORDIC — Design System
   Nordic Premium · Light Mode · Pro Tone
   ============================================================ */

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

/* ============================================================
   2. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* — Brand Colors — */
  --primary:         #0077B6;
  --primary-dark:    #005F92;
  --primary-light:   #0096C7;
  --primary-ultra:   #ADE8F4;
  --secondary:       #90E0EF;
  --accent:          #E63946;
  --accent-soft:     #FF6B8A;

  /* — Neutrals — */
  --dark:            #0D1B2A;
  --dark-2:          #1B2E3C;
  --dark-3:          #2E4057;
  --gray:            #5C6E7E;
  --gray-light:      #8FA0AF;
  --gray-ultra:      #C8D6DF;
  --border:          #DDE8EE;
  --border-soft:     #EEF4F7;
  --bg:              #F5F9FC;
  --bg-alt:          #EBF5FB;
  --white:           #FFFFFF;

  /* — Gradients — */
  --grad-primary:    linear-gradient(135deg, #0077B6 0%, #0096C7 100%);
  --grad-hero:       linear-gradient(160deg, #0D1B2A 0%, #023E58 50%, #0077B6 100%);
  --grad-card:       linear-gradient(135deg, #F5F9FC 0%, #EBF5FB 100%);
  --grad-accent:     linear-gradient(135deg, #E63946 0%, #FF6B8A 100%);
  --grad-nordic:     linear-gradient(135deg, #0077B6 0%, #90E0EF 100%);
  --grad-text:       linear-gradient(135deg, #0077B6, #90E0EF);

  /* — Shadows — */
  --shadow-xs:       0 1px 3px rgba(0, 55, 90, 0.06);
  --shadow-sm:       0 2px 8px rgba(0, 55, 90, 0.08);
  --shadow:          0 4px 16px rgba(0, 55, 90, 0.10), 0 1px 4px rgba(0, 55, 90, 0.06);
  --shadow-md:       0 8px 28px rgba(0, 119, 182, 0.14), 0 2px 8px rgba(0, 55, 90, 0.06);
  --shadow-lg:       0 20px 48px rgba(0, 119, 182, 0.18), 0 4px 16px rgba(0, 55, 90, 0.08);
  --shadow-xl:       0 32px 72px rgba(0, 119, 182, 0.22), 0 8px 24px rgba(0, 55, 90, 0.10);
  --shadow-glow:     0 0 0 3px rgba(0, 119, 182, 0.18);
  --shadow-inset:    inset 0 1px 3px rgba(0, 55, 90, 0.08);

  /* — Border Radius — */
  --radius-xs:       4px;
  --radius-sm:       8px;
  --radius:          14px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --radius-full:     9999px;

  /* — Typography — */
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:    'Playfair Display', Georgia, 'Times New Roman', serif;

  /* — Font Sizes (fluid) — */
  --text-xs:         0.75rem;
  --text-sm:         0.875rem;
  --text-base:       1rem;
  --text-lg:         1.125rem;
  --text-xl:         1.25rem;
  --text-2xl:        1.5rem;
  --text-3xl:        1.875rem;
  --text-4xl:        2.25rem;

  /* — Spacing Scale — */
  --space-1:         4px;
  --space-2:         8px;
  --space-3:         12px;
  --space-4:         16px;
  --space-5:         20px;
  --space-6:         24px;
  --space-8:         32px;
  --space-10:        40px;
  --space-12:        48px;
  --space-16:        64px;
  --space-20:        80px;
  --space-24:        96px;
  --space-32:        128px;

  /* — Transitions — */
  --ease:            cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:          0.15s;
  --t-base:          0.25s;
  --t-slow:          0.4s;
  --transition:      all var(--t-base) var(--ease);
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* — Headings — */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 600; }
h6 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 600; }

p { line-height: 1.75; color: var(--gray); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm { max-width: 780px; margin: 0 auto; padding: 0 var(--space-6); }
.container-xs { max-width: 560px; margin: 0 auto; padding: 0 var(--space-6); }

/* Section Spacing */
.section      { padding: var(--space-24) 0; }
.section-sm   { padding: var(--space-16) 0; }
.section-lg   { padding: var(--space-32) 0; }
.py-100       { padding: var(--space-20) 0; }

/* Background variants */
.bg-white     { background: var(--white); }
.bg-light     { background: var(--bg-alt); }
.bg-dark      { background: var(--dark); color: var(--white); }
.bg-primary   { background: var(--primary); color: var(--white); }
.bg-gradient  { background: var(--grad-primary); color: var(--white); }

/* Text utilities */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-white   { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-gray    { color: var(--gray); }
.text-sm      { font-size: var(--text-sm); }
.text-lg      { font-size: var(--text-lg); }

/* Spacing utilities */
.mx-auto      { margin-left: auto; margin-right: auto; }
.mt-30        { margin-top: 30px; }
.mb-30        { margin-bottom: 30px; }
.mb-50        { margin-bottom: 50px; }
.mt-50        { margin-top: 50px; }
.gap-4        { gap: var(--space-4); }

/* Width utilities */
.max-w-600    { max-width: 600px; }
.max-w-800    { max-width: 800px; }
.max-w-1000   { max-width: 1000px; }

/* Flex utilities */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.gap-2        { gap: var(--space-2); }
.gap-3        { gap: var(--space-3); }
.gap-6        { gap: var(--space-6); }

/* Gradient text */
.accent,
.text-gradient {
  background: var(--grad-nordic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   5. GRID SYSTEM
   ============================================================ */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-1  { grid-template-columns: 1fr; }
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   6. NAVBAR
   ============================================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 var(--border-soft), var(--shadow-xs);
  transition: box-shadow var(--t-base) var(--ease);
}

.main-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  gap: var(--space-6);
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo .accent {
  background: var(--grad-nordic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark-3);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after { display: none; }

.nav-links a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.nav-links a.active {
  background: rgba(0, 119, 182, 0.08);
  color: var(--primary);
  font-weight: 600;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-3);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.lang-switch:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Quiz CTA Button */
.btn-quiz {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 9px var(--space-5);
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: var(--white) !important;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 119, 182, 0.30);
  transition: var(--transition);
  -webkit-text-fill-color: var(--white) !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

.btn-quiz:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.40);
  filter: brightness(1.08);
  color: var(--white) !important;
}

.btn-quiz i,
.btn-quiz svg {
  width: 15px;
  height: 15px;
  color: var(--white);
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.burger:hover { background: var(--white); border-color: var(--primary); }

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 13px var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary,
.btn-small {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.30);
}

.btn-primary:hover,
.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.40);
  filter: brightness(1.08);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 11px var(--space-8);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-sm {
  padding: 8px var(--space-5);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 17px var(--space-12);
  font-size: var(--text-lg);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  padding: clamp(80px, 14vw, 160px) 0 clamp(70px, 12vw, 140px);
  overflow: hidden;
  text-align: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 40%, rgba(0, 150, 199, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 60%, rgba(144, 224, 239, 0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-5);
  font-weight: 800;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #90E0EF, #ADE8F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  margin-bottom: var(--space-5);
}

/* ============================================================
   9. SEARCH BOX
   ============================================================ */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 24px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.12);
  transition: var(--transition);
}

.search-container:focus-within {
  box-shadow: 0 24px 72px rgba(0,0,0,0.28), 0 0 0 3px rgba(0, 119, 182, 0.30);
  transform: translateY(-2px);
}

.search-container input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--dark);
  padding: 10px 0;
  min-width: 0;
}

.search-container input::placeholder { color: var(--gray-light); }

.search-container button {
  flex-shrink: 0;
  background: var(--grad-primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.search-container button:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 18px rgba(0, 119, 182, 0.4);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.search-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
  color: var(--dark);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.search-item:last-child { border-bottom: none; }
.search-item:hover { background: var(--bg-alt); padding-left: 26px; }
.search-item strong { color: var(--primary); }
.search-empty { cursor: default; color: var(--gray); }
.search-empty:hover { background: transparent; padding-left: 20px; }

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), border-color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-nordic);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 119, 182, 0.15);
}

.card:hover::before { transform: scaleX(1); }

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--dark);
}

.card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--dark);
  font-family: var(--font-body);
}

.card p { color: var(--gray); font-size: var(--text-sm); line-height: 1.7; }

/* Card Icon */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.10), rgba(144, 224, 239, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--grad-primary);
}

.card-icon svg,
.card-icon i {
  color: var(--primary);
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.card:hover .card-icon svg,
.card:hover .card-icon i {
  color: var(--white);
}

/* City Card */
.city-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  gap: var(--space-3);
}

.city-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 119, 182, 0.03);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

/* Niche Card (Hub page) */
.niche-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.niche-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.niche-card .niche-emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.niche-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--dark);
}

/* App Comparison Card */
.app-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  position: relative;
}

.app-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.app-card .rank-badge {
  position: absolute;
  top: -14px;
  left: var(--space-6);
  background: var(--grad-primary);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
}

/* Stat Card */
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--primary-ultra);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.stat-card .stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  display: block;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-card .stat-label {
  font-size: var(--text-sm);
  color: var(--gray);
  font-weight: 500;
}

/* SSB Official badge */
.ssb-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 12px;
  background: rgba(0, 119, 182, 0.07);
  border: 1px solid rgba(0, 119, 182, 0.18);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary);
  margin-top: var(--space-4);
}

/* ============================================================
   11. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 119, 182, 0.09);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: var(--space-4);
  color: var(--dark);
}

/* ============================================================
   12. FEATURE ITEMS
   ============================================================ */
.feature-item {
  text-align: center;
  padding: var(--space-6);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.10), rgba(144, 224, 239, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.feature-icon svg,
.feature-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-item h4 {
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--dark);
}

/* ============================================================
   13. CITY CHIPS & REGION BLOCKS
   ============================================================ */
.region-block {
  margin-bottom: var(--space-10);
}

.region-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
}

.region-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--grad-nordic);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.city-grid-small {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 6px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark-3);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.city-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   14. FAQ SECTION
   ============================================================ */
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-3);
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary-ultra); }

.faq-question {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: var(--text-base);
  line-height: 1.5;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: rgba(0, 119, 182, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: 1px;
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  padding-left: calc(var(--space-6) + 22px + var(--space-4));
  color: var(--gray);
  line-height: 1.75;
  font-size: var(--text-sm);
}

.faq-grid {
  display: grid;
  gap: var(--space-3);
}

.faq-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-size: 4rem;
  color: var(--primary-ultra);
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
  color: #F59E0B;
}

.testimonial-text {
  color: var(--gray);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--grad-nordic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--dark); font-size: var(--text-sm); }
.testimonial-meta { color: var(--gray-light); font-size: var(--text-xs); }

/* ============================================================
   16. APP COMPARISON (Affiliation)
   ============================================================ */
.app-comparison {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--border);
}

.app-comparison .section-label { display: inline-block; margin-bottom: var(--space-6); }

.offers-grid { display: grid; gap: var(--space-5); }

/* ============================================================
   17. SEASONAL / VS PAGES
   ============================================================ */
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.season-winter { background: rgba(144, 224, 239, 0.20); color: #0077B6; border: 1px solid rgba(144, 224, 239, 0.50); }
.season-spring { background: rgba(110, 231, 183, 0.20); color: #059669; border: 1px solid rgba(110, 231, 183, 0.50); }
.season-summer { background: rgba(251, 191, 36, 0.20); color: #D97706; border: 1px solid rgba(251, 191, 36, 0.50); }
.season-autumn { background: rgba(251, 146, 60, 0.20); color: #C2410C; border: 1px solid rgba(251, 146, 60, 0.50); }

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  color: var(--white);
  font-weight: 800;
  font-size: var(--text-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   18. LOCAL PLACES / SPOTS
   ============================================================ */
.place-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  transition: var(--transition);
}

.place-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.place-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(0, 119, 182, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.place-name { font-weight: 600; color: var(--dark); font-size: var(--text-sm); margin-bottom: 2px; }
.place-type { font-size: var(--text-xs); color: var(--gray-light); }

/* ============================================================
   19. BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.40); }

/* ============================================================
   20. FOOTER — PREMIUM NORDIC
   ============================================================ */

/* — Wrapper global — */
.site-footer {
  margin-top: var(--space-20);
}

/* ① Bandeau CTA Aurora */
.footer-cta-band {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 180px;
  display: flex;
  align-items: center;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  filter: saturate(1.2);
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(0, 119, 182, 0.65) 60%,
    rgba(13, 27, 42, 0.80) 100%
  );
}

.footer-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  flex-wrap: wrap;
}

.footer-cta-text {
  flex: 1;
  min-width: 220px;
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(144, 224, 239, 0.18);
  border: 1px solid rgba(144, 224, 239, 0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer-cta-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: var(--space-2);
  font-weight: 800;
}

.footer-cta-text p {
  color: rgba(255,255,255,0.70);
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.6;
}

.footer-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary) !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
  -webkit-text-fill-color: var(--primary) !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  border: 2px solid transparent;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  background: var(--primary);
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  border-color: var(--white);
}

.footer-cta-btn i,
.footer-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ② Corps du footer */
.footer-body {
  background: var(--dark);
  position: relative;
  padding: var(--space-16) 0 var(--space-8);
}

/* Trait dégradé en haut du corps */
.footer-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 119, 182, 0.60) 25%,
    rgba(144, 224, 239, 0.80) 50%,
    rgba(0, 119, 182, 0.60) 75%,
    transparent 100%
  );
}

/* Grille 4 colonnes */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

/* — Logo footer — */
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-block;
  margin-bottom: var(--space-4);
  -webkit-text-fill-color: var(--white);
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
}

.footer-logo span {
  background: var(--grad-nordic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* — Description — */
.footer-brand-desc {
  color: rgba(255,255,255,0.50);
  font-size: var(--text-sm);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: var(--space-6);
}

/* — Stats rapides — */
.footer-stats {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-stat strong {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
}

.footer-stat span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* — Réseaux sociaux — */
.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  transition: var(--transition);
  -webkit-text-fill-color: unset !important;
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.40);
}

.footer-social-link svg,
.footer-social-link i {
  width: 17px;
  height: 17px;
}

/* — Titre de colonne — */
.footer-col-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-col-title svg,
.footer-col-title i {
  width: 15px;
  height: 15px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* — Liens footer — */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: var(--transition);
  -webkit-text-fill-color: rgba(255,255,255,0.48);
}

.footer-links li a svg,
.footer-links li a i {
  width: 13px;
  height: 13px;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--secondary) !important;
  -webkit-text-fill-color: unset !important;
  transform: translateX(4px);
}

.footer-links li a:hover svg,
.footer-links li a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* — Badges de confiance — */
.footer-trust {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
  font-weight: 500;
}

.footer-trust-badge svg,
.footer-trust-badge i {
  width: 13px;
  height: 13px;
  color: var(--secondary);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ③ Barre de bas de page */
.footer-bottom-bar {
  background: rgba(0,0,0,0.30);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

.footer-bottom-sep {
  color: rgba(255,255,255,0.18);
  font-size: var(--text-xs);
}

/* Switch de langue (bottom bar) */
.footer-lang-toggle { flex-shrink: 0; }

.footer-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer-lang-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   21. ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

@keyframes pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   22. SCROLLBAR & SELECTION
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--gray-ultra);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

::selection { background: var(--primary); color: var(--white); }

/* ============================================================
   23. MISC COMPONENTS
   ============================================================ */

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-8) 0;
}

/* Tag / Pill */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray);
}

.tag-primary {
  background: rgba(0, 119, 182, 0.09);
  border-color: rgba(0, 119, 182, 0.20);
  color: var(--primary);
}

/* Alert box */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  background: rgba(0, 119, 182, 0.07);
  color: var(--dark-3);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* Tips list */
.tips-list { display: grid; gap: var(--space-3); }

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.tip-item:hover { border-color: var(--primary-ultra); background: var(--bg-alt); }

.tip-number {
  width: 28px;
  height: 28px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.tip-content { flex: 1; }
.tip-content strong { color: var(--dark); display: block; margin-bottom: 3px; font-size: var(--text-sm); }
.tip-content p { font-size: var(--text-sm); margin: 0; }

/* Dark section override */
.section-dark {
  background: var(--dark-2);
  color: var(--white);
  padding: var(--space-16) 0;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.68); }

/* Dark cards (for dark sections) */
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.card-dark:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

/* ============================================================
   24. RESPONSIVE — TABLET (≤ 992px)
   ============================================================ */
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .faq-grid.grid-2 { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-stats { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-brand-desc { max-width: 100%; text-align: center; }
}

/* ============================================================
   25. RESPONSIVE — MOBILE NAV (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .burger { display: flex; }

  .nav-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5) var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: slideDown 0.25s var(--ease);
    z-index: 999;
  }

  .nav-wrapper.active { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1) !important;
    width: 100%;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-3);
    border-top: 1px solid var(--border);
    padding-top: var(--space-4);
  }

  .lang-switch,
  .btn-quiz {
    width: 100%;
    justify-content: center;
    padding: var(--space-3) var(--space-5);
  }
}

/* ============================================================
   26. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding: 80px 0 70px; }
  .section, .py-100 { padding: var(--space-16) 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .search-container {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    gap: var(--space-3);
    align-items: stretch;
  }

  .search-container input {
    padding: 10px var(--space-3);
    text-align: center;
  }

  .search-container button {
    width: 100%;
    border-radius: var(--radius);
    padding: 14px;
  }

  .card { padding: var(--space-6); }
  .app-comparison { padding: var(--space-6); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: var(--space-3); }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .site-footer { margin-top: var(--space-16); }
}

/* ============================================================
   27. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .city-grid-small { gap: var(--space-2); }
  .city-chip { font-size: 0.8rem; padding: 5px 11px; }
  .section-label { font-size: 0.7rem; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .footer-stats { gap: var(--space-3); }
}