@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --blue: #0020dc;
  --blue-light: #1a3de6;
  --blue-dark: #0019b3;
  --orange: #eb7434;
  --orange-light: #f08a52;
  --orange-dark: #d56326;
  --dark: #0a0f1c;
  --cream: #fff8f3;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 32, 220, 0.4);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 32, 220, 0.3);
}

.btn-outline-white {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.25);
}

.btn-orange {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(235, 116, 52, 0.4);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.section-label {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-label-blue {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--orange));
  border-radius: 4px;
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.float { animation: float 6s ease-in-out infinite; }
.float-delayed { animation: float-delayed 6s ease-in-out 1s infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-ping { animation: ping 1.5s ease-out infinite; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s;
}

.nav-login-btn:hover { color: var(--blue); }

.nav-actions .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid #f3f4f6;
  background: white;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

.mobile-menu .btn {
  margin: 0.5rem 1.5rem;
}

.mobile-menu.open { display: flex; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('photo_scooter.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,32,220,0.9) 0%, rgba(0,32,220,0.7) 50%, rgba(235,116,52,0.5) 100%);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, white, transparent);
  z-index: 2;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 1rem;
}

.hero-shapes .s1 {
  top: 128px; left: 10%;
  width: 64px; height: 64px;
  border: 2px solid rgba(255,255,255,0.2);
  transform: rotate(12deg);
}

.hero-shapes .s2 {
  top: 192px; right: 15%;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  transform: rotate(-12deg);
}

.hero-shapes .s3 {
  bottom: 160px; left: 20%;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  transform: rotate(45deg);
}

.hero-shapes .s4 {
  top: 33%; right: 8%;
  width: 24px; height: 24px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg { width: 16px; height: 16px; fill: currentColor; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero h1 span {
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-feature-badge svg { width: 14px; height: 14px; color: var(--orange); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.hero-stat-item { text-align: center; }

.hero-stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-stat-item .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* Hero image card */
.hero-image-wrap {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-delivery-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-delivery-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-delivery-icon svg { width: 24px; height: 24px; color: white; }

.hero-delivery-text .title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.hero-delivery-text .subtitle {
  font-size: 0.85rem;
  color: #6b7280;
}

.hero-live-badge {
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  background: white;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.hero-deco-1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 112px;
  height: 112px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 1.25rem;
  z-index: -1;
}

.hero-deco-2 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 0.85rem;
  z-index: -1;
}

/* ===== Trusted By ===== */
.trusted {
  padding: 3rem 0;
  background: white;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 4rem;
}

.trusted-logos .logo-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b7280;
  transition: color 0.2s;
}

.trusted-logos .logo-item:hover { color: var(--blue); }

/* ===== Services ===== */
.services { background: white; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(0,32,220,0.3);
  box-shadow: 0 20px 40px rgba(0,32,220,0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 28px; height: 28px; color: white; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.service-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.service-hover-circle {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(0,32,220,0.05), rgba(235,116,52,0.05));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-hover-circle { opacity: 1; }

/* ===== How It Works ===== */
.how-it-works {
  background: var(--cream);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.step-item.reverse { direction: rtl; }
.step-item.reverse > * { direction: ltr; }

.step-number {
  font-size: 5rem;
  font-weight: 800;
  color: #dbeafe;
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg { width: 24px; height: 24px; color: white; }

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.step-content p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
}

.step-image {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.step-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.step-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

/* ===== Coverage ===== */
.coverage { background: white; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: #eff6ff;
  border-radius: 1rem;
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,32,220,0.1);
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-card-icon svg { width: 24px; height: 24px; color: var(--blue); }

.stat-card .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card .label {
  font-size: 0.85rem;
  color: #6b7280;
}

.coverage-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coverage-map-wrap {
  position: relative;
}

.coverage-map {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.coverage-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.coverage-map-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coverage-map-badge .dot-wrap {
  width: 40px;
  height: 40px;
  background: rgba(235,116,52,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-map-badge .dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.coverage-map-badge .text strong {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  display: block;
}

.coverage-map-badge .text span {
  font-size: 0.8rem;
  color: #9ca3af;
}

.coverage-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.coverage-content p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cities-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 1rem;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.city-tag {
  padding: 0.4rem 1rem;
  background: #eff6ff;
  color: var(--blue);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.city-tag:hover {
  background: var(--blue);
  color: white;
}

/* ===== Pricing ===== */
.pricing { background: var(--cream); }

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.toggle-wrap {
  background: white;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 4px;
}

.toggle-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  background: none;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 8px rgba(0,32,220,0.3);
}

.toggle-btn .save-badge {
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
}

.pricing-card.popular {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(0,32,220,0.25);
}

.pricing-card:hover:not(.popular) {
  border-color: rgba(0,32,220,0.2);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.pricing-card.popular h3 { color: white; }

.pricing-card .desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.pricing-card.popular .desc { color: rgba(255,255,255,0.7); }

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.pricing-card.popular .price-currency { color: white; }

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.pricing-card.popular .price-amount { color: white; }

.price-period {
  font-size: 0.9rem;
  color: #9ca3af;
}

.pricing-card.popular .price-period { color: rgba(255,255,255,0.6); }

.price-billing {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.pricing-card.popular .price-billing { color: rgba(255,255,255,0.5); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
}

.pricing-card.popular .feature-list li { color: rgba(255,255,255,0.9); }

.feature-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #22c55e;
}

.pricing-card.popular .feature-list li svg { color: rgba(255,255,255,0.8); }

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ===== Pricing CTA Card ===== */
.pricing-cta-card {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  box-shadow: 0 24px 64px rgba(0, 32, 220, 0.08);
  overflow: hidden;
}

.pricing-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--orange));
}

.pricing-cta-inner {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
}

.pricing-cta-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 32, 220, 0.25);
}

.pricing-cta-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pricing-cta-text > p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 520px;
}

.pricing-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.pricing-benefits li svg {
  flex-shrink: 0;
  color: #22c55e;
}

.pricing-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 200px;
}

.pricing-cta-action .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 32, 220, 0.3);
}

.pricing-cta-action .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 32, 220, 0.4);
}

.pricing-cta-note {
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-cta-note::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .pricing-cta-inner {
    grid-template-columns: 72px 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }
  .pricing-cta-action {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    min-width: auto;
  }
  .pricing-cta-action .btn-primary {
    width: auto;
  }
}

@media (max-width: 768px) {
  .pricing-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
  }
  .pricing-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
  }
  .pricing-cta-text > p {
    max-width: 100%;
  }
  .pricing-benefits {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }
  .pricing-cta-action {
    flex-direction: column;
    min-width: auto;
    width: 100%;
  }
  .pricing-cta-action .btn-primary {
    width: 100%;
  }
}

/* ===== Testimonials ===== */
.testimonials { background: white; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  position: relative;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(0,32,220,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon svg { width: 20px; height: 20px; color: var(--blue); }

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  fill: var(--orange);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.author-info .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
}

.author-info .role {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faq-left p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.faq-help-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
}

.faq-help-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 0.25rem;
}

.faq-help-card p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  gap: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #9ca3af;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ===== CTA Section ===== */
.cta-section { background: white; }

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 2.5rem;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-deco-1 {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 256px;
  height: 256px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-deco-2 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 256px;
  height: 256px;
  background: rgba(235,116,52,0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-trusted {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
}

.cta-trusted p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.cta-brands {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.6;
}

.cta-brands span {
  font-weight: 600;
  color: white;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: #9ca3af;
}

.footer-main {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-address svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.2s;
  background: none;
}

.social-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.social-btn svg { width: 18px; height: 18px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-item .stat-number { font-size: 1.6rem; }

  .services-grid { grid-template-columns: 1fr; }

  .step-item { grid-template-columns: 1fr; gap: 2rem; }
  .step-item.reverse { direction: ltr; }

  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-main { grid-template-columns: 1fr; }
  .coverage-map-badge { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.popular { transform: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .cta-inner { padding: 3rem 1.5rem; border-radius: 1.5rem; }

  .section-padding { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
