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

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-900: #262626;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f5;
  --white: #fafafa;
  --accent: #e85d04;
  --accent-hover: #d45003;
  --accent-light: #fef3e6;
  --radius: 8px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === NAV — sticky on scroll === */
.hero nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  max-width: 100%;
  padding: 1.5rem 2rem;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, box-shadow 0.3s;
}

.hero nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop: visa nav-links direkt */
@media (min-width: 769px) {
  .menu-toggle { display: none !important; }
  .nav-links { display: flex !important; }
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--gray-300);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-nav:hover {
  background: var(--accent-hover) !important;
}

/* === HERO === */
.hero {
  background: var(--black);
  color: var(--white);
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: heroSlideUp 0.8s ease-out;
}

.hero-sub {
  animation: heroSlideUp 0.8s ease-out 0.2s both;
}

.hero .btn-primary {
  animation: heroSlideUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  animation: heroSlideUp 0.8s ease-out 0.6s both;
}

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

.hero-sub {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub strong {
  color: var(--accent);
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232, 93, 4, 0.2);
}

.hero .btn-primary {
  position: relative;
  overflow: visible;
  z-index: 1;
  animation: heroSlideUp 0.8s ease-out 0.4s both, ctaGlow 2.5s ease-in-out infinite 2s;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 12px rgba(232, 93, 4, 0.15); }
  50% { box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3); }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-900);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* === SECTIONS === */
.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-dark {
  background: var(--gray-100);
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-dark > h2,
.section-dark > p,
.section-dark > .pricing-cards,
.section-dark > .pricing-note,
.section-dark > .booking-form,
.section-dark > .why-grid,
.section-dark > .areas {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* === ANIMATIONS === */
.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* GPU-accelerera animationer för smidig scroll */
.step, .why-card, .price-card, .area-tag {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Stäng av hover-animationer på touch-enheter */
@media (hover: none) {
  .step:hover { transform: none; }
  .step:hover .step-number { transform: none; box-shadow: none; }
  .why-card:hover { transform: none; box-shadow: none; }
  .price-card:hover { transform: none; box-shadow: none; }
  .area-tag:hover { transform: none; box-shadow: none; border-color: var(--gray-300); background: var(--white); color: var(--gray-700); }
  .why-card--clock:hover .clock-hour,
  .why-card--clock:hover .clock-minute { animation: none; }
  .why-card--gear:hover .why-icon { animation: none; }
  .why-card--check:hover .why-icon { animation: none; }
  .why-card--cart:hover .why-icon { animation: none; }
  .why-card--clock:hover .clock-svg { transform: none; }
  .btn-primary:hover { transform: none; box-shadow: none; }
  .phone-link:hover { transform: none; box-shadow: none; background: transparent; color: var(--accent); }
}

/* Stagger children */
.steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps .reveal:nth-child(4) { transition-delay: 0.3s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.pricing-cards .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-cards .reveal:nth-child(3) { transition-delay: 0.2s; }

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  cursor: default;
  transition: transform 0.2s;
}

.step:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover .step-number {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Connecting line between steps */
@media (min-width: 769px) {
  .steps-connected {
    position: relative;
  }
  .steps-connected::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: var(--gray-300);
    z-index: 0;
  }
  .steps-connected .step-number {
    position: relative;
    z-index: 1;
  }
}

/* === WHY SECTION === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-300);
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
  display: inline-block;
}

/* Klockan: visarna snurrar */
.clock-svg .clock-hour,
.clock-svg .clock-minute {
  transform-origin: 20px 20px;
  transition: transform 0.3s ease;
}
.why-card--clock:hover .clock-svg {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
.why-card--clock:hover .clock-hour {
  animation: hour-spin 1.2s ease-in-out;
}
.why-card--clock:hover .clock-minute {
  animation: minute-spin 0.8s ease-in-out;
}
@keyframes hour-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes minute-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(720deg); }
}

/* Kugghjulet: snurrar ett varv */
.why-card--gear:hover .why-icon {
  animation: gear-turn 0.9s ease-in-out;
}
@keyframes gear-turn {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.2) rotate(360deg); }
}

/* Checken: blir grön + pop */
.why-card--check:hover .why-icon {
  animation: check-pop 0.5s ease-out forwards;
}
@keyframes check-pop {
  0%   { transform: scale(1); color: inherit; }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1.3); color: #22c55e; }
}

/* Kundvagnen: rullar åt höger och tillbaka */
.why-card--cart:hover .why-icon {
  animation: cart-roll 0.7s ease-in-out;
}
@keyframes cart-roll {
  0%   { transform: translateX(0) scale(1); }
  50%  { transform: translateX(12px) scale(1.15); }
  100% { transform: translateX(0) scale(1.2); }
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* === PRICING === */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.price-card.featured {
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.1);
}

.price-card.featured:hover {
  box-shadow: 0 16px 40px rgba(232, 93, 4, 0.2);
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-item summary:hover {
  background: var(--gray-100);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === PHONE LINK === */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent);
  border-radius: 50px;
  transition: all 0.25s;
}

.phone-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.25);
}

.price-card.best-value {
  border-color: #16a34a;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.1);
}

.price-card.best-value:hover {
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.2);
}

.price-card.featured {
  border-color: var(--accent);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: badgePulseOrange 2.5s ease-in-out infinite;
}

.price-badge.green {
  background: #16a34a;
  animation: badgePulseGreen 2.5s ease-in-out infinite;
}

@keyframes badgePulseOrange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(232, 93, 4, 0); }
}

@keyframes badgePulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
}

.price-amount span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-500);
}

.price-label {
  font-size: 1rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.pricing-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* === AREAS === */
.areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.area-tag {
  background: var(--white);
  color: var(--gray-700);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--gray-300);
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.area-tag:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2);
}

/* === BOOKING FORM === */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1.1rem;
}

.form-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* === THANK YOU PAGE === */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  padding: 2rem;
}

.thank-you-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 550px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.thank-you-content h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.thank-you-content > p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.thank-you-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.thank-you-step {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.thank-you-step:last-child {
  border-bottom: none;
}

.thank-you-step strong {
  display: block;
  margin-bottom: 0.25rem;
}

.thank-you-step p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}

/* === BOOKING PAGE === */
.booking-header {
  background: var(--black);
}

.booking-header .logo {
  display: inline-block;
}

.booking-header .nav-links {
  display: flex;
}

.booking-header .nav-links a {
  color: var(--gray-300);
}

.booking-page {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.booking-left h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-intro {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.booking-left .booking-form {
  max-width: 100%;
}

.booking-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-info-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.booking-info-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-300);
}

.info-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.info-step:last-child {
  margin-bottom: 0;
}

.info-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.info-step strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.info-step p {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin: 0;
}

.info-price {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.95rem;
}

.info-price:last-of-type {
  border-bottom: none;
}

.info-price strong {
  color: var(--accent);
}

.info-small {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.booking-info-card .areas {
  justify-content: flex-start;
  gap: 0.5rem;
}

.booking-info-card .area-tag {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}

/* === FOOTER === */
footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-contact h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-bottom {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-900);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* === RESPONSIVE — MOBILE FIRST === */

/* Reduce animation intensity on mobile for smooth scrolling */
@media (max-width: 768px) {
  .reveal {
    transform: translateY(16px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }

  /* Remove stagger delays on mobile — faster perceived load */
  .steps .reveal:nth-child(2),
  .steps .reveal:nth-child(3),
  .steps .reveal:nth-child(4),
  .why-grid .reveal:nth-child(2),
  .why-grid .reveal:nth-child(3),
  .why-grid .reveal:nth-child(4),
  .pricing-cards .reveal:nth-child(2),
  .pricing-cards .reveal:nth-child(3) {
    transition-delay: 0s;
  }

  /* Disable CTA glow animation on mobile (saves GPU) */
  .hero .btn-primary {
    animation: heroSlideUp 0.8s ease-out 0.4s both;
  }

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

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-900);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  nav {
    position: relative;
  }

  /* Hero — tighter on mobile */
  .hero-content {
    padding: 5rem 1.25rem 2rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .btn-primary {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    /* Bigger tap target on mobile */
    min-height: 48px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Sections — less padding */
  .section {
    padding: 3rem 1.25rem;
  }

  .section-dark {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Steps — horizontal scroll-snap on mobile */
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .step {
    padding: 1rem 0.75rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  /* Why grid — single column, tighter */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .why-card h3 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }

  /* Pricing — single column, centered */
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.25rem;
  }

  .price-card {
    padding: 2rem 1.25rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  /* Form — full width */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
    padding: 0.75rem 0.9rem;
  }

  .btn-full {
    min-height: 52px;
    font-size: 1.05rem;
  }

  /* Phone link — full width on mobile */
  .phone-link {
    font-size: 1.25rem;
    padding: 0.85rem 2rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  footer {
    padding: 2rem 1.25rem 1.25rem;
  }

  /* FAQ — larger tap targets */
  .faq-item summary {
    padding: 1rem;
    min-height: 48px;
  }

  /* Area tags — larger touch targets */
  .area-tag {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Booking page */
  .booking-page {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem 3rem;
    gap: 1.5rem;
  }

  .booking-right {
    order: -1;
  }

  .booking-left h1 {
    font-size: 1.5rem;
  }
}

/* Extra small — phones ≤ 380px */
@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.75rem;
  }

  .step-number {
    margin: 0;
    min-width: 40px;
  }

  .step h3 {
    margin-bottom: 0.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .stat {
    min-width: 0;
  }
}
