/* ============================================
   HomeHero — Landing Page Styles
   ============================================ */

/* Google Fonts imported via HTML link tag */

:root {
  --teal: #00B4D8;
  --teal-dark: #0077B6;
  --teal-light: #E0F7FA;
  --charcoal: #1A2332;
  --gray-dark: #374151;
  --gray-mid: #6B7280;
  --gray-light: #F3F4F6;
  --gray-border: #E5E7EB;
  --white: #FFFFFF;
  --star-gold: #F59E0B;
  --green-check: #10B981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px 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);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 12px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(0,119,182,0.28);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,119,182,0.38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.stars {
  display: flex;
  gap: 2px;
  color: var(--star-gold);
  font-size: 0.95rem;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

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

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

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

.nav-cta a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

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

.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 28, 50, 0.88) 0%,
    rgba(0, 90, 140, 0.72) 45%,
    rgba(0, 150, 199, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 80px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #00D4E0;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-headline span {
  background: linear-gradient(135deg, #00D4E0, #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 520px;
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-form-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--gray-light);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  margin-bottom: 12px;
  font-family: inherit;
}

.hero-select:focus {
  outline: none;
  border-color: var(--teal);
  background-color: var(--white);
}

.hero-form .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 15px 32px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-trust-item svg {
  flex-shrink: 0;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--charcoal);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 96px 0 80px;
  background: var(--white);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.services-header .section-sub {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

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

.service-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 18px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 18px;
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 9px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.how-it-works-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  opacity: 0.25;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0,180,216,0.32);
  flex-shrink: 0;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.55;
}

/* ============================================
   PROVIDER PROFILES
   ============================================ */
.providers {
  padding: 96px 0 80px;
  background: var(--white);
}

.providers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.provider-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.provider-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #b0e0ea, #a8d8ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-dark);
  position: relative;
}

.provider-verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: var(--green-check);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.provider-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.provider-specialty {
  font-size: 0.83rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.provider-location {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.provider-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.provider-rating-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.provider-rating-count {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.provider-badges {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.provider-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.badge-years {
  background: #FEF3C7;
  color: #92400E;
}

.badge-verified {
  background: #D1FAE5;
  color: #065F46;
}

.provider-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  font-size: 0.9rem;
}

/* ============================================
   QUOTE FLOW
   ============================================ */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quote-copy .section-label {
  color: var(--teal);
  background: rgba(0,180,216,0.12);
}

.quote-copy .section-title {
  color: var(--white);
}

.quote-copy .section-sub {
  color: rgba(255,255,255,0.72);
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.quote-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.quote-perk-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,212,224,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.quote-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.quote-form-sub {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.form-step-item {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-mid);
  position: relative;
}

.form-step-item.active {
  color: var(--teal-dark);
}

.form-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-border);
  color: var(--gray-mid);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.form-step-item.active .form-step-num {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
}

.form-step-connector {
  width: 100%;
  height: 2px;
  background: var(--gray-border);
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field select,
.form-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--gray-light);
  font-family: inherit;
  transition: border-color var(--transition);
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--gray-light);
}

.form-field select:focus,
.form-field input:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.form-field input::placeholder {
  color: var(--gray-mid);
}

.quote-form-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.02rem;
}

.quote-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--gray-mid);
  margin-top: 12px;
}

/* ============================================
   TRUST
   ============================================ */
.trust {
  padding: 96px 0;
  background: var(--white);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-badge-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all var(--transition);
}

.trust-badge-card:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trust-badge-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.trust-badge-desc {
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-light);
  border-radius: 10px;
  padding: 14px 16px;
}

.trust-stat-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--teal-dark);
  min-width: 80px;
}

.trust-stat-label {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 96px 0;
  background: var(--gray-light);
}

.reviews-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.reviews-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars span {
  color: var(--star-gold);
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before { content: '\201C'; }
.review-text::after { content: '\201D'; }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.review-meta {
  font-size: 0.76rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

.review-service-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 96px 0;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.pricing-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--gray-border);
}

.pricing-card.highlighted {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: transparent;
  color: white;
}

.pricing-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-card.highlighted .pricing-card-icon {
  background: rgba(255,255,255,0.2);
}

.pricing-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-card.highlighted .pricing-card-title {
  color: var(--white);
}

.pricing-card-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-card.highlighted .pricing-card-desc {
  color: rgba(255,255,255,0.80);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--gray-dark);
}

.pricing-card.highlighted .pricing-list li {
  color: rgba(255,255,255,0.88);
}

.pricing-check {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead {
  background: var(--charcoal);
  color: white;
}

.comparison-table th {
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.comparison-table th:first-child {
  border-radius: 12px 0 0 0;
}

.comparison-table th.homehero-col {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  text-align: center;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-border);
  transition: background var(--transition);
}

.comparison-table tbody tr:hover {
  background: var(--gray-light);
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--gray-dark);
}

.comparison-table td.homehero-col {
  text-align: center;
  color: var(--teal-dark);
  font-weight: 700;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--charcoal);
}

.check-icon { color: var(--green-check); font-size: 1rem; }
.x-icon { color: #EF4444; font-size: 1rem; }

/* ============================================
   MOBILE APP
   ============================================ */
.mobile-app {
  padding: 96px 0;
  background: linear-gradient(135deg, #0a2540 0%, var(--charcoal) 100%);
  overflow: hidden;
  position: relative;
}

.mobile-app::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 240px;
  height: 480px;
  background: linear-gradient(145deg, #1a2840, #0d1a2e);
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #0d1a2e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #00B4D8 0%, #0077B6 40%, #0a2540 100%);
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-header {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-weight: 600;
}

.phone-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 4px;
}

.phone-search {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.phone-card {
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.phone-card-text {
  flex: 1;
}

.phone-card-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--charcoal);
}

.phone-card-sub {
  font-size: 0.52rem;
  color: var(--gray-mid);
}

.phone-stars {
  font-size: 0.5rem;
  color: var(--star-gold);
}

.app-copy .section-label {
  background: rgba(0,180,216,0.15);
  color: var(--teal);
}

.app-copy .section-title {
  color: var(--white);
}

.app-copy .section-sub {
  color: rgba(255,255,255,0.72);
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.app-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,180,216,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.app-feature-title {
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.app-store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.app-store-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.app-store-label {
  font-size: 0.65rem;
  opacity: 0.7;
}

.app-store-name {
  font-size: 0.95rem;
  font-weight: 800;
}

/* ============================================
   CITIES
   ============================================ */
.cities {
  padding: 80px 0;
  background: var(--gray-light);
  text-align: center;
}

.cities-header {
  max-width: 540px;
  margin: 0 auto 40px;
}

.cities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 36px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  color: var(--gray-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.city-pill:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-light);
}

.cities-cta {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.cities-cta a {
  color: var(--teal-dark);
  font-weight: 700;
}

.cities-cta a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER CTA BANNER
   ============================================ */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.footer-cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.footer-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 20px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--charcoal);
}

.newsletter-input:focus {
  outline: 2px solid rgba(255,255,255,0.5);
}

.newsletter-form .btn-primary {
  background: var(--charcoal);
  box-shadow: none;
}

.newsletter-form .btn-primary:hover {
  background: #283347;
}

.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .steps-grid::before {
    display: none;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .mobile-app-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .app-mockup {
    order: -1;
  }

  .app-store-btns {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

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

  .providers-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .reviews-scroll {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 14px 20px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   ANIMATIONS / SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
