/* ============================================================
   GEEKUPER — styles.css
   Design System: Teal (#00BCD4) + Navy (#1a2340) + Light BG
   Font: Inter (Google Fonts)
   ============================================================ */

/* ---------- Imports ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --teal:       #00BCD4;
  --teal-dark:  #0097A7;
  --teal-light: #e0f7fa;
  --navy:       #1a2340;
  --navy-mid:   #263254;
  --gray-bg:    #f0f7fb;
  --gray-light: #f4f6f9;
  --gray-mid:   #e2e8f0;
  --gray-text:  #64748b;
  --dark-text:  #0f172a;
  --white:      #ffffff;
  --green:      #22c55e;
  --yellow:     #f59e0b;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --font:       'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--gray-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.announce-bar .left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce-bar .flag { font-size: 1.2rem; }
.announce-bar .right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.9;
}
.announce-bar .right a {
  color: var(--teal);
  font-weight: 600;
}
.btn-announce {
  background: var(--teal);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: background var(--transition);
}
.btn-announce:hover { background: var(--teal-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 41px;
  z-index: 100;
  box-shadow: none;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 64px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy);
}
.hero h1 .highlight { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-sub strong { color: var(--teal); }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,188,212,0.35);
}
.btn-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gray-mid);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition);
  background: transparent;
  min-height: 44px;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-play {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray-text);
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust .trust-item .check {
  color: var(--teal);
  font-size: 1rem;
}

/* Hero Right — Avatar Map */
.hero-right {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--teal) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.18;
  border-radius: var(--radius);
}
.avatars-cluster {
  position: relative;
  width: 280px;
  height: 280px;
}
.avatar-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}
.avatar-pin:nth-child(2) { animation-delay: 0.5s; }
.avatar-pin:nth-child(3) { animation-delay: 1s; }
.avatar-pin:nth-child(4) { animation-delay: 1.5s; }
.avatar-pin:nth-child(5) { animation-delay: 2s; }
.avatar-pin:nth-child(6) { animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.avatar-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.avatar-circle.large {
  width: 72px; height: 72px;
  font-size: 1.8rem;
}
.avatar-tag {
  background: var(--white);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 4px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* Positions */
.avatar-pin:nth-child(1) { top: 0;   left: 50%; transform: translateX(-50%); }
.avatar-pin:nth-child(2) { top: 20%; left: 10%; }
.avatar-pin:nth-child(3) { top: 20%; right: 5%; }
.avatar-pin:nth-child(4) { top: 52%; left: 28%; }
.avatar-pin:nth-child(5) { top: 52%; right: 12%; }
.avatar-pin:nth-child(6) { bottom: 0; left: 40%; }

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.82rem;
  color: var(--gray-text);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  min-width: 320px;
  text-align: center;
}
.hero-ticker .ticker-icon { color: var(--teal); margin-right: 4px; }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
}
.section-sub {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ============================================================
   TRUST / GUARANTEE BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: 48px 40px;
  border-top: 1px solid var(--gray-mid);
}
.guarantee-box {
  border: 2px dashed var(--teal);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 480px;
  margin-bottom: 36px;
}
.guarantee-box h3 {
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.guarantee-box p {
  color: var(--gray-text);
  font-size: 0.92rem;
}

.service-icons-row {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  margin-bottom: 28px;
}
.icons-track {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: scrollIcons 18s linear infinite;
  white-space: nowrap;
}
@keyframes scrollIcons {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.icon-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.icon-chip .icon-emoji { font-size: 1.1rem; }

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.rating-sub { color: var(--gray-text); font-size: 0.82rem; }

/* ============================================================
   PRESS BAR
   ============================================================ */
.press-bar {
  background: var(--navy);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.press-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trustpilot-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trustpilot-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trustpilot-stars {
  display: flex;
  gap: 3px;
  margin: 2px 0;
}
.tp-star {
  width: 22px; height: 22px;
  background: var(--green);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tp-star.half { background: linear-gradient(90deg, var(--green) 60%, #aaa 60%); }
.trustpilot-text { color: var(--white); font-size: 0.82rem; font-weight: 600; }

.press-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.press-logo-item {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 72px 40px;
  background: var(--gray-bg);
}
.reviews-header .section-title { margin-bottom: 6px; }
.reviews-header .section-sub { margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-card .review-stars { color: var(--yellow); font-size: 0.95rem; letter-spacing: 2px; }
.review-body {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  flex: 1;
}
.review-footer {
  border-top: 1px solid var(--gray-mid);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.reviewer-meta { font-size: 0.78rem; color: var(--gray-text); }
.wait-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 72px 40px;
  background: var(--white);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--teal-light);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--teal-light);
}
.step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 72px 40px;
  background: var(--gray-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.service-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.service-desc {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
}
.service-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: auto;
}
.service-cta {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 72px 40px;
  background: var(--white);
  text-align: center;
}
.pricing-card {
  display: inline-block;
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 40px 56px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.pricing-unit {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 24px;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy);
}
.perk-icon { color: var(--teal); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 72px 40px;
  background: var(--gray-bg);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition);
}
details[open] .faq-chevron { transform: rotate(180deg); background: var(--teal); color: var(--white); }
.faq-body {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
  border-top: 1px solid var(--gray-mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 40px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   ACTIVITY POPUP
   ============================================================ */
.activity-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  z-index: 500;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.activity-popup.visible {
  transform: translateX(0);
  opacity: 1;
}
.popup-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}
.popup-text { font-size: 0.82rem; color: var(--navy); font-weight: 500; line-height: 1.4; }
.popup-close {
  background: none;
  color: var(--gray-text);
  font-size: 1rem;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1;
  padding: 2px 4px;
}
.popup-close:hover { color: var(--dark-text); }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow-md); gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 40px 20px 48px; }
  .announce-bar { flex-direction: column; align-items: flex-start; }
  .press-bar { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-wrap, .how-section, .services-section, .pricing-section, .faq-section, .reviews-section, .trust-bar { padding-left: 20px; padding-right: 20px; }
  .hero-ticker { min-width: unset; width: 90%; font-size: 0.75rem; }
  .pricing-card { padding: 32px 28px; }
  .nav-dropdown { position: fixed; left: 0; right: 0; top: auto; transform: none; border-radius: 0; min-width: unset; }
  .exit-banner { flex-direction: column; text-align: center; gap: 10px; }
}

/* ============================================================
   UI/UX ENHANCEMENTS v2
   ============================================================ */

/* 1. Wait time hint below hero CTA */
.btn-hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.wait-time-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  color: var(--green);
  font-weight: 600;
}
.wait-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

/* 2. Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 20px;
  z-index: 400;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.28);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.mobile-cta-bar.visible { transform: translateY(0); }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}
.btn-mcta {
  flex: 1;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--transition);
}
.btn-mcta:hover { background: var(--teal-dark); }
.mcta-phone {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-align: right;
  line-height: 1.5;
  flex-shrink: 0;
}
.mcta-phone a { color: var(--teal); font-weight: 700; }

/* 3. Verified customer badge */
.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 5px;
}

/* 4. Nav Services dropdown */
.nav-item-dropdown { position: relative; }
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  padding: 8px;
  min-width: 215px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.07));
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.dropdown-item:hover { background: var(--teal-light); color: var(--teal-dark); }
.dropdown-icon { font-size: 1rem; flex-shrink: 0; }

/* 5. Service card common problems chip */
.service-problems {
  font-size: 0.74rem;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 5px 11px;
  border-radius: 100px;
  display: inline-block;
  line-height: 1.45;
  font-weight: 500;
}

/* 7. Wave divider */
.wave-divider {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

/* 9. Service card color left borders */
.service-card.color-green  { border-left: 4px solid #22c55e; }
.service-card.color-blue   { border-left: 4px solid #3b82f6; }
.service-card.color-purple { border-left: 4px solid #8b5cf6; }
.service-card.color-red    { border-left: 4px solid #ef4444; }
.service-card.color-teal   { border-left: 4px solid var(--teal); }
.service-card.color-yellow { border-left: 4px solid #f59e0b; }

/* 10. Exit intent banner */
.exit-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 800;
  transform: translateY(-110%);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.exit-banner.visible { transform: translateY(0); }
.exit-banner p { font-size: 0.92rem; margin: 0; }
.exit-banner strong { color: var(--teal); }
.exit-banner a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.exit-banner a:hover { text-decoration: underline; }
.exit-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-close:hover { background: rgba(255,255,255,0.25); }
