/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
}
h1,h2,h3,h4 { font-family: 'Raleway', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Colours ── */
:root {
  --dark:    #1a1a2e;
  --darker:  #12121f;
  --blue:    #5bb8f5;
  --blue2:   #3fa2e0;
  --light:   #f4f7fb;
  --mid:     #e8edf5;
  --text:    #444;
  --muted:   #888;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(6px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue2) !important; color: #fff !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--darker) 0%, #1e2a4a 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,184,245,0.08) 0%, transparent 70%);
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-logo-img {
  width: clamp(150px, 28%, 250px);
  height: auto;
  margin: 0 auto 1.2rem;
  display: block;
}
.hero-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 1.2rem;
  border: 3px solid rgba(91,184,245,0.4);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.trust-line {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.trust-line .stars { color: #f5a623; letter-spacing: 2px; }
.hero-h1 {
  color: #fff;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.about-photo-wrap {
  margin-bottom: 1.5rem;
}
.about-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  height: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border: 3px solid rgba(91,184,245,0.25);
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(91,184,245,0.12);
  border: 1px solid rgba(91,184,245,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.badge::before { content: '✓'; color: var(--blue); font-weight: 700; }
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91,184,245,0.35);
}
.btn-primary:hover { background: var(--blue2); box-shadow: 0 6px 28px rgba(91,184,245,0.5); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  margin-left: 1rem;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* Location page hero (shorter than homepage hero) */
.page-hero { min-height: auto; padding: 150px 5% 80px; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

/* scroll indicator */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-hint svg { animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── SECTIONS shared ── */
section { padding: 90px 5%; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-sub.light { color: rgba(255,255,255,0.65); }
.divider {
  width: 50px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 1.2rem 0 2rem;
}
.divider.center { margin: 1.2rem auto 2rem; }
.text-center { text-align: center; }

/* ── ABOUT ── */
#about { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.about-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.about-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.dvsa-row {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid var(--mid);
}
.dvsa-badge {
  width: 68px; height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}
.dvsa-text {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.dvsa-text strong {
  font-size: 0.88rem;
  color: var(--dark);
}
.dvsa-text span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
/* ── GALLERY ── */
#gallery { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
  background: #111;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-pass-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
}
.gallery-pass-label::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: #4caf50;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.about-card {
  background: var(--dark);
  border-radius: 14px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(91,184,245,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 1.5rem;
}
.stat {
  text-align: center;
  padding: 1.2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(91,184,245,0.2);
}
.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.car-photo-wrap {
  margin-top: 1.5rem;
}
.car-photo {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  border: 3px solid rgba(91,184,245,0.2);
}
.car-caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
  font-style: italic;
}

/* ── HOW IT WORKS ── */
#learning { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  padding: 2rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--mid);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.1); transform: translateY(-3px); }
.step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--mid);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.step-icon {
  width: 48px; height: 48px;
  background: rgba(91,184,245,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* ── AREAS COVERED ── */
#areas { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.area-card {
  padding: 2rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--mid);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.area-card:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.1); transform: translateY(-3px); }
.area-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.area-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.area-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue2);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.area-link:hover { color: var(--blue); }

/* ── APP SECTION ── */
#app { background: var(--light); }
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.app-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.app-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(91,184,245,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.app-feature-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.1rem;
}
.app-feature-text span {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}
.app-screenshots {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.app-screenshot {
  flex: 0 1 30%;
  max-width: 160px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 3px solid rgba(255,255,255,0.8);
  transition: transform 0.3s;
  display: block;
}
.app-screenshot:nth-child(2) {
  transform: translateY(-16px);
}
.app-screenshot:hover { transform: translateY(-4px) scale(1.02); }
.app-screenshot:nth-child(2):hover { transform: translateY(-20px) scale(1.02); }
@media (max-width: 900px) {
  .app-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .app-screenshots { justify-content: center; max-width: 420px; margin: 0 auto; }
  .app-screenshot { flex: 0 1 28%; max-width: 120px; }
}
@media (max-width: 480px) {
  .app-screenshots { gap: 0.5rem; max-width: 100%; }
  .app-screenshot { flex: 0 1 30%; max-width: 100px; border-radius: 12px; }
  .app-screenshot:nth-child(2) { transform: translateY(-10px); }
}

/* ── PRICING ── */
#pricing {
  background: var(--dark);
  text-align: center;
}
.pricing-intro {
  max-width: 580px;
  margin: 0 auto 3rem;
}
.pricing-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(91,184,245,0.2);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover { border-color: var(--blue); background: rgba(91,184,245,0.08); transform: translateY(-3px); }
.price-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #f5a623;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 10px;
}
.price-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.price-card.featured .price-title { color: rgba(255,255,255,0.9); }
.price-amount {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-card.featured .price-amount { color: #fff; }
.price-per {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}
.price-card.featured .price-per { color: rgba(255,255,255,0.75); }
.price-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.price-card.featured .price-detail { color: rgba(255,255,255,0.85); }
.price-saving {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f5a623;
  background: rgba(245,166,35,0.12);
  padding: 3px 10px;
  border-radius: 20px;
}
.price-card.featured .price-saving { background: rgba(255,255,255,0.25); color: #fff; }
.pricing-footer {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tcard {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--mid);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s;
}
.tcard:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.tcard blockquote { border: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.tcard-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}
.tcard-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.tcard-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  border-top: 1px solid var(--mid);
  padding-top: 0.75rem;
  font-style: normal;
}
.tcard-author span {
  font-weight: 400;
  color: var(--muted);
}

/* ── CONTACT ── */
#contact { background: var(--dark); }
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 0.8rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(91,184,245,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-detail-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.contact-detail-text strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}
/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,184,245,0.2);
  border-radius: 14px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); background: rgba(91,184,245,0.06); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--blue2); transform: translateY(-1px); }
.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--darker);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}
.footer-brand span { color: var(--blue); }
footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-areas {
  width: 100%;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-areas a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-areas a:hover { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card { max-width: 500px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--darker);
    padding: 1.5rem 5% 2rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    padding: 0.8rem 0;
    color: rgba(255,255,255,0.8);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.05em;
  }
  .mobile-menu a:hover { color: var(--blue); }
  .about-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 480px) {
  section { padding: 70px 5%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .btn-outline { margin-left: 0; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}

/* ── WHATSAPP BUTTON ── */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ebe5b; box-shadow: 0 6px 28px rgba(37,211,102,0.5); transform: translateY(-1px); }

/* ── STICKY MOBILE CONTACT BAR ── */
.sticky-bar { display: none; }
@media (max-width: 700px) {
  body { padding-bottom: 56px; }
  .sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1001;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.35);
  }
  .sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .sb-call { background: var(--darker); }
  .sb-wa { background: #25d366; }
  .sb-book { background: var(--blue); }
}
