/* =========================================
   SHIN SPLINT STOP — Gedeelde stijl
   Kleurenpalet gebaseerd op het logo:
   - Roze/coral accent: #F0546A
   - Donkergrijs tekst: #3D3D3D
   - Lichtgrijs achtergrond: #F7F7F8
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --pink: #F0546A;
  --pink-dark: #D93D55;
  --pink-light: #FFE8EC;
  --dark: #2C2C2E;
  --gray: #3D3D3D;
  --gray-mid: #6B6B6B;
  --gray-light: #A8A8A8;
  --bg: #F7F7F8;
  --white: #FFFFFF;
  --border: #E8E8EA;
  --shadow: 0 4px 24px rgba(44,44,46,0.08);
  --shadow-lg: 0 12px 48px rgba(44,44,46,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- NAVIGATION ---- */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.logo-text .logo-accent { color: var(--pink); }

.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.logo-bars span {
  display: block;
  width: 4px;
  background: var(--pink);
  border-radius: 2px;
}
.logo-bars span:nth-child(1) { height: 8px; }
.logo-bars span:nth-child(2) { height: 12px; }
.logo-bars span:nth-child(3) { height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-mid);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--dark);
  background: var(--bg);
}

.nav-links > li.active > a { color: var(--pink); }

.nav-links > li.has-sub:hover .sub-menu { opacity: 1; pointer-events: all; transform: translateY(0); }

.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}

.sub-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
  color: var(--gray-mid);
  transition: background 0.15s, color 0.15s;
}
.sub-menu a:hover { background: var(--bg); color: var(--dark); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- PAGE WRAPPER ---- */
.page-wrapper { padding-top: 68px; }

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 96px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,84,106,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,84,106,0.15);
  border: 1px solid rgba(240,84,106,0.3);
  color: #FF8FA3;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: none;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240,84,106,0.4);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,84,106,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #1a1a1c; transform: translateY(-2px); }

/* ---- USP STRIP ---- */
.usp-strip {
  background: var(--pink);
  padding: 20px 24px;
}

.usp-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}

.usp-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 24px;
}

.section-alt { background: var(--bg); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ---- CONTENT LAYOUT ---- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.content-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-text p {
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.content-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}

.content-text ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--pink-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23F0546A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- VIDEO BOX ---- */
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ---- STAT BOX ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.stat-box {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

/* ---- QUOTE/REVIEW ---- */
.review-block {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.review-block::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 32px;
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--pink);
  opacity: 0.3;
  line-height: 1;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ---- LOCATIES ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.location-card:hover { box-shadow: var(--shadow); }

.location-card.new-loc { border-color: var(--pink); }

.new-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.location-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.location-card p {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--pink);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,84,106,0.12) 0%, transparent 70%);
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ---- PAGE HEADER ---- */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 64px 24px 48px;
}

.page-header-inner { max-width: 1200px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { margin: 0 6px; }

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.6;
}

/* ---- CONTACT FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ---- FOOTER ---- */
#main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--pink); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--pink); }

.footer-nav h4,
.footer-locations h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }

.footer-locations ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-locations li {
  font-size: 0.83rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.footer-locations strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- PROSE CONTENT ---- */
.prose {
  max-width: 760px;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin: 36px 0 12px;
  letter-spacing: 0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.prose p {
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
}
.prose ul li {
  padding-left: 20px;
  position: relative;
  color: var(--gray-mid);
  font-size: 0.93rem;
  line-height: 1.6;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
}
.prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

/* ---- SIDEBAR LAYOUT ---- */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.sticky-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}

.sidebar-card p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-head);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner,
  .content-split,
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .hero-visual { display: none; }

  .page-layout { grid-template-columns: 1fr; padding: 40px 20px; }
  .sticky-sidebar { position: static; }

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

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

  .section { padding: 56px 20px; }

  /* Contact page 2-col → 1-col */
  .section-inner > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Kosten page */
  .section-inner > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 2px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    width: 100%;
    font-size: 1.05rem;
    padding: 13px 16px;
    border-radius: 10px;
  }
  .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    margin: 4px 0 4px 12px;
    border-radius: 10px;
  }
  .has-sub .sub-menu { display: none; }
  .has-sub.sub-open .sub-menu { display: block; }
  .nav-cta {
    display: block;
    text-align: center !important;
    margin-top: 8px;
  }

  /* HERO */
  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* USP */
  .usp-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* SECTIONS */
  .section { padding: 48px 20px; }
  .section-title { font-size: 1.6rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }

  /* STATS */
  .stats-row { grid-template-columns: repeat(3,1fr); }

  /* REVIEWS */
  .section-inner > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* PAGE HEADER */
  .page-header { padding: 48px 20px 36px; }
  .page-header h1 { font-size: 1.7rem; }

  /* PAGE LAYOUT */
  .page-layout { padding: 36px 20px; gap: 32px; }

  /* FORMS */
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 20px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }

  /* CTA BANNER */
  .cta-banner { padding: 56px 20px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner > div { flex-direction: column; align-items: center; }
  .cta-banner .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .usp-strip-inner { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.4rem; }
  .nav-inner { padding: 0 16px; }
  .section { padding: 40px 16px; }
  .page-layout { padding: 32px 16px; }
}
