/* ═════════════════════════════════════════════════════════════ */
/* LOCATOOLS LILLE — Feuille de styles améliorée                 */
/* Design moderne et responsive avec animations fluides          */
/* ═════════════════════════════════════════════════════════════ */

/* ─── VARIABLES CSS ─────────────────────────────────────────── */
:root {
  --forest: #1a3a2a;
  --leaf: #2d6a4f;
  --lime: #74c69d;
  --mint: #b7e4c7;
  --cream: #f8f5ee;
  --orange: #e76f51;
  --dark: #111a14;
  --muted: #6b7c6e;
  
  /* Nouvelles variables pour animations avancées */
  --duration: 0.3s;
  --timing: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: padding var(--duration) var(--timing);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--forest);
  letter-spacing: -0.03em;
  transition: transform var(--duration) var(--timing);
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
}

.logo span {
  color: var(--orange);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--duration) var(--timing);
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--duration) var(--timing);
}

nav ul a:hover {
  color: var(--forest);
}

nav ul a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all var(--duration) var(--timing) !important;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.nav-cta:hover {
  background: #c85a3d !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4) !important;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 80% 50%,
    rgba(116, 198, 157, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(240, 127, 109, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mint);
  color: var(--forest);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
  transition: all var(--duration) var(--timing);
}

.hero-badge:hover {
  background: var(--lime);
  transform: translateX(4px);
}

.hero-badge::before {
  content: '📍';
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--forest);
  animation: fadeUp 0.7s 0.1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.4;
  animation: widthExpand 0.8s ease both;
}

@keyframes widthExpand {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--forest);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--duration) var(--timing);
  box-shadow: 0 4px 15px rgba(26, 58, 42, 0.3);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--leaf);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 58, 42, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--forest);
  transition: all var(--duration) var(--timing);
}

.btn-secondary:hover {
  background: var(--mint);
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.2);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.7s 0.4s ease both;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ─── HERO VISUAL ────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.15);
  position: relative;
  transition: all var(--duration) var(--timing);
  border: 1px solid rgba(116, 198, 157, 0.1);
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(26, 58, 42, 0.2);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tool-thumb {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(116, 198, 157, 0.05) 100%);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s var(--timing);
  cursor: default;
  border: 1px solid rgba(116, 198, 157, 0.2);
}

.tool-thumb:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, white 0%, rgba(116, 198, 157, 0.1) 100%);
  border-color: var(--lime);
  box-shadow: 0 8px 24px rgba(116, 198, 157, 0.15);
}

.tool-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s var(--timing);
}

.tool-thumb:hover .tool-icon {
  transform: scale(1.15) rotate(-5deg);
}

.tool-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
}

.tool-price {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  margin-top: 0.2rem;
}

.avail-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #27ae60;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.avail-dot {
  width: 7px;
  height: 7px;
  background: #7dffb3;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ─── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(26, 58, 42, 0.2);
}

.trust-item {
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--duration) var(--timing);
}

.trust-item:hover {
  color: white;
  transform: translateX(4px);
}

.trust-item span {
  font-size: 1.1rem;
  transition: transform var(--duration) var(--timing);
}

.trust-item:hover span {
  transform: scale(1.2);
}

/* ─── SECTIONS ─────────────────────────────────────────────── */
section {
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
  animation: fadeIn 0.6s ease;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.8rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── CATALOGUE ────────────────────────────────────────────── */
.catalogue {
  background: white;
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s var(--timing);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116, 198, 157, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration) var(--timing);
}

.cat-card:hover {
  border-color: var(--lime);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all var(--duration) var(--timing);
}

.cat-card:hover .cat-icon {
  transform: scale(1.2) rotate(10deg);
}

.cat-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
}

.cat-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.cat-tarif {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(26, 58, 42, 0.2);
  transition: all var(--duration) var(--timing);
}

.cat-card:hover .cat-tarif {
  transform: scale(1.1);
}

.cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--orange);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(231, 111, 81, 0.3);
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.how {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--lime), var(--mint));
  animation: growLine 0.8s ease both;
}

@keyframes growLine {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 80%;
    left: 10%;
  }
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  color: white;
  border-radius: 50%;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(26, 58, 42, 0.25);
  transition: all var(--duration) var(--timing);
}

.step:hover .step-num {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 8px 25px rgba(26, 58, 42, 0.35);
}

.step-title {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── ZONES ────────────────────────────────────────────────── */
.zones {
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  color: white;
}

.zones h2 {
  color: white;
}

.zones .section-sub {
  color: var(--mint);
}

.zones-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.zone-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--duration) var(--timing);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.zone-pill:hover {
  background: rgba(116, 198, 157, 0.3);
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(116, 198, 157, 0.2);
}

.zone-pill.main {
  background: var(--lime);
  color: var(--forest);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(116, 198, 157, 0.3);
}

/* ─── TARIFS ────────────────────────────────────────────────── */
.tarifs {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 2px solid var(--mint);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--timing);
  background: white;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116, 198, 157, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration) var(--timing);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45, 106, 79, 0.15);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  color: white;
  box-shadow: 0 10px 40px rgba(231, 111, 81, 0.25);
}

.price-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(231, 111, 81, 0.35);
}

.price-card.featured .price-name {
  color: var(--mint);
}

.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.85);
}

.price-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--orange);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(231, 111, 81, 0.4);
}

.price-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--forest);
}

.price-card.featured .price-amount {
  color: white;
}

.price-unit {
  font-size: 0.88rem;
  color: var(--muted);
}

.price-card.featured .price-unit {
  color: rgba(255, 255, 255, 0.7);
}

.price-features {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--duration) var(--timing);
}

.price-features li::before {
  content: '✓';
  color: var(--leaf);
  font-weight: 800;
  font-size: 1.1rem;
}

.price-card.featured .price-features li::before {
  color: var(--lime);
}

.price-card:hover .price-features li {
  transform: translateX(4px);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  border-left: 4px solid var(--lime);
  transition: all var(--duration) var(--timing);
  box-shadow: 0 2px 10px rgba(45, 106, 79, 0.08);
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.15);
  border-left-color: var(--orange);
}

.faq-q {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(116, 198, 157, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section > div {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section p {
  color: var(--mint);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: var(--orange);
  margin-top: 2.5rem;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

.cta-section .btn-primary:hover {
  background: #c85a3d;
  box-shadow: 0 12px 40px rgba(231, 111, 81, 0.4);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(116, 198, 157, 0.1);
}

footer .logo {
  color: white;
  font-size: 1.2rem;
}

footer p {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all var(--duration) var(--timing);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width var(--duration) var(--timing);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  nav {
    padding: 1rem 2rem;
  }

  .hero {
    padding: 7rem 2rem 3rem;
    gap: 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

  .trust-bar {
    padding: 1.4rem 2rem;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav ul {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
  }

  .hero::after {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    padding: 1.2rem 1.5rem;
    gap: 1.5rem;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .zones-grid {
    gap: 0.8rem;
  }

  .zone-pill {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }
}
