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

/* ============================================
   TOKENS — DARK CHARCOAL PREMIUM
   ============================================ */
:root {
  /* Backgrounds — Deep Charcoal */
  --bg-base: #030407;
  --bg-primary: #05060a;
  --bg-secondary: #0a0e17;
  --bg-card: #0f141f;
  --bg-elevated: #141b2a;
  --bg-hover: #1a2332;

  /* Accents — Calm Electric Blue (zero orange) */
  --accent: #0147ba;
  --accent-hover: #0165d4;
  --accent-subtle: rgba(1, 71, 186, 0.08);
  --accent-border: rgba(1, 71, 186, 0.25);
  --accent-glow: rgba(1, 71, 186, 0.15);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0f172a;

  /* Surfaces */
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --divider: rgba(255, 255, 255, 0.04);

  /* Spacing */
  --section-pad: clamp(4.5rem, 8vw, 7rem);
  --nav-height: 72px;

  /* Shadows — Soft, deep, no colored glow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.6);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.7);
  --shadow-phone: 0 32px 64px -12px rgba(0,0,0,0.8);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms var(--ease);
  --transition-slow: 500ms var(--ease);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-secondary);
  line-height: 1.6;
  background: var(--bg-base);
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; padding: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-accent { color: var(--accent) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

/* ============================================
   LAYOUT
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============================================
   NAVBAR — CLEAN DARK GLASS
   ============================================ */
.navbar {
  padding: 14px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.navbar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand img { height: 34px; width: auto; }

.navbar-nav {
  gap: 2px;
  align-items: center;
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-primary);
}

/* CTA Buttons — OBVIOUS */
.nav-btn { display: flex; align-items: center; gap: 10px; }

.nav-btn .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all var(--transition);
}

.btn-primary-nav {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-primary-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-outline-nav {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}

.btn-outline-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 991px) {
  .navbar { background: rgba(5,6,10,0.95); }
  .navbar-collapse {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
  }
  .nav-btn { flex-direction: column; margin-top: 12px; }
  .nav-btn .btn { width: 100%; justify-content: center; }
}

/* ============================================
   HERO — CLEAN, UNCLUTTERED
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, var(--accent-glow), transparent),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(20,27,42,0.6), transparent);
  pointer-events: none;
}

/* subtle grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.hero h1 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.hero .subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 480px;
  margin-top: 20px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-main {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-main:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  color: #fff;
}

.btn-secondary-dark {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
}

/* Phone mockup */
.phone-frame {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.phone-frame img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-phone);
  border: 1px solid var(--border);
}

/* ============================================
   TRUST BAR — VISIBLE SIGNALS
   ============================================ */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-cell i {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-cell span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 991px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell span { font-size: 0.8rem; }
}

/* ============================================
   HOW IT WORKS — 8 STEP DRIVER FLOW
   ============================================ */
.flow-section { background: var(--bg-base); }

.flow-header {
  text-align: center;
  margin-bottom: 56px;
}

.flow-header h6 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.flow-header h2 { color: var(--text-primary); }

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

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}

.flow-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.flow-step .num {
  width: 32px; height: 32px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.flow-step h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* connector */
.flow-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -16px;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.flow-step:nth-child(4)::after,
.flow-step:nth-child(8)::after { display: none; }

@media (max-width: 991px) {
  .flow-wrap { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2)::after,
  .flow-step:nth-child(4)::after,
  .flow-step:nth-child(6)::after { display: none; }
}

@media (max-width: 640px) {
  .flow-wrap { grid-template-columns: 1fr; }
  .flow-step::after { display: none; }
}

/* ============================================
   COVERAGE — MIDLANDS MAP
   ============================================ */
.coverage-section { background: var(--bg-secondary); }

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.coverage-text h6 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.coverage-text h2 { color: var(--text-primary); margin-bottom: 16px; }

.coverage-text p { color: var(--text-secondary); margin-bottom: 32px; }

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 16px;
}

.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-svg {
  width: 100%;
  height: auto;
  opacity: 0.5;
}

.map-city {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.map-city .city-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15), 0 0 16px rgba(59,130,246,0.3);
}

.map-city .city-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .coverage-layout { grid-template-columns: 1fr; }
  .map-box { min-height: 300px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-base); }

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header h2 { color: var(--text-primary); }

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

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--transition);
}

.t-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.t-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.t-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.t-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.t-author strong {
  color: var(--text-primary);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

.t-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 991px) { .t-grid { grid-template-columns: 1fr; } }

/* ============================================
   PROVIDER ONBOARDING — PROFESSIONAL
   ============================================ */
.provider-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.provider-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

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

.provider-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}

.provider-layout h2 {
  color: var(--text-primary);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.provider-layout .lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.provider-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.provider-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.provider-item i {
  width: 44px; height: 44px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.provider-item h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.provider-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.provider-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  /* border: 1px solid var(--border); */
}

.provider-img img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  border-radius: var(--r-xl);
}

@media (max-width: 991px) {
  .provider-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  flex-shrink: 0;
}

.cta-brand h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cta-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 767px) {
  .cta-flex { flex-direction: column; text-align: center; }
  .cta-brand { flex-direction: column; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg-base); }

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h6 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.faq-header h2 { color: var(--text-primary); }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover { border-color: var(--border-strong); }

.faq-toggle {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.faq-toggle:hover { background: var(--bg-hover); }

.faq-toggle i {
  transition: transform var(--transition);
  font-size: 1.2rem;
  color: var(--accent);
}

.faq-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--bg-secondary); }

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h6 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.contact-header h2 { color: var(--text-primary); }

.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-elevated);
  transition: all var(--transition);
  font-family: "Inter", sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-input::placeholder { color: var(--text-muted); }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 6px;
  display: block;
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.form-check-label a { color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */




.footer-clean {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px !important; /* Was 60px 0 28px */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  

	gap: 24px !important; /* Was 40px */
}

.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover { color: var(--accent); transform: translateX(2px); }

.footer-bottom {
  margin-top: 24px !important; /* Was 40px */
  padding-top: 16px !important; /* Was 20px */
  border-top: 1px solid var(--border);
  text-align: center;

	
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   ALERTS
   ============================================ */
.alert-fixed-header {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  z-index: 1020;
  margin: 0;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  border: none;
  padding: 12px 0;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
  border-bottom: 1px solid rgba(239, 68, 68, 0.15);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.back-to-top-btn.is-visible { opacity: 1; visibility: visible; }

.back-to-top-btn:hover {
  transform: translateY(-3px);
  background: var(--accent-hover);
}

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

.animate-float { animation: float 5s ease-in-out infinite; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 20px); padding-bottom: 48px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .section { padding: 3rem 0; }
  .contact-box { padding: 24px; }
}












/* ============================================
   GET HELP FLOW — MULTI-STEP WIZARD
   ============================================ */
.flow-wizard {
  max-width: 640px;
  margin: 0 auto;
}

.flow-step-panel {
  display: none;
  animation: fadeInUp 0.4s ease-out;
}

.flow-step-panel.active {
  display: block;
}

.flow-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.flow-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.flow-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 0;
  transition: width 0.5s var(--ease);
}

.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}

.progress-dot.completed {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.progress-dot.current {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-subtle);
}

/* Issue Selection Grid */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.issue-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.issue-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-hover);
}

.issue-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.issue-card.selected::after {
  content: '\eb7b';
  font-family: 'remixicon';
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--accent);
  font-size: 1rem;
}

.issue-card i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.issue-card h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.issue-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* Location Step */
.location-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
}

.location-btn:hover {
  border-color: var(--accent-border);
  background: var(--bg-hover);
}

.location-btn i {
  font-size: 1.5rem;
  color: var(--accent);
}

.location-btn .loc-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.map-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.map-preview .pin {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

.map-preview .pin::after {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--bg-card);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Vehicle Form */
.vehicle-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Matching Screen */
.matching-screen {
  text-align: center;
  padding: 60px 20px;
}

.matching-spinner {
  width: 80px;
  height: 80px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 32px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.matching-status {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.matching-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.provider-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all var(--transition);
}

.provider-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-hover);
}

.provider-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.provider-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.provider-info { flex: 1; }

.provider-info h4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.provider-info .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.provider-info .rating {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 4px;
}

.provider-price {
  text-align: right;
}

.provider-price .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.provider-price .eta {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* Payment */
.payment-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.payment-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.0625rem;
  padding-top: 12px;
  margin-top: 4px;
}

/* Live Tracking */
.tracking-screen {
  text-align: center;
  padding: 40px 20px;
}

.tracking-map {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  height: 280px;
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
}

.tracking-pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(59,130,246,0.7);
  animation: trackPulse 2s infinite;
}

@keyframes trackPulse {
  0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

.tracking-provider {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.tracking-details h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.tracking-details p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.eta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Completion */
.completion-screen {
  text-align: center;
  padding: 40px 20px;
}

.completion-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #34d399;
  font-size: 2.5rem;
}

.star-rating {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}

.star-rating i {
  font-size: 2rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating i:hover,
.star-rating i.active {
  color: var(--accent);
}

/* Wizard Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-back {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-back:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-next,
.btn-submit {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r-md);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Responsive */
@media (max-width: 640px) {
  .issue-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-form-grid { grid-template-columns: 1fr; }
  .provider-card { flex-direction: column; text-align: center; }
  .provider-price { text-align: center; margin-top: 12px; }
}



/* ============================================
   PROVIDER ONBOARDING — PROFESSIONAL WIZARD
   ============================================ */
.provider-hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  min-height: auto;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  overflow: hidden;
}

.provider-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 20%, var(--accent-glow), transparent);
  pointer-events: none;
}

.provider-hero h1 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.provider-hero .lead {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 480px;
}

.provider-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

/* Hero stats */
.provider-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-item i {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-item h4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Phone mockup in hero */
.provider-phone {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.provider-phone img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-phone);
  border: 1px solid var(--border);
}

/* Application Wizard */
.provider-wizard {
  background: var(--bg-base);
  padding: var(--section-pad) 0;
}

.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.wizard-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.wizard-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.wizard-header h2 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0;
}

.wizard-steps {
  display: flex;
  gap: 8px;
}

.wizard-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.wizard-step-indicator .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.wizard-step-indicator.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.wizard-step-indicator.completed .step-num {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.wizard-body {
  padding: 32px;
}

.wizard-body h3 {
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.wizard-body .step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

/* Form grid inside wizard */
.wizard-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wizard-form-grid .full-width {
  grid-column: 1 / -1;
}

/* Coverage area chips */
.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.area-chip:hover {
  border-color: var(--accent-border);
  color: var(--text-primary);
}

.area-chip.selected {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
}

.area-chip i {
  font-size: 0.875rem;
}

/* File upload zone */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.upload-zone:hover {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
}

.upload-zone i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.upload-zone h4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.upload-zone p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Sidebar */
.wizard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.progress-track {
  margin-bottom: 20px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 8px;
}

.progress-label span:first-child {
  color: var(--text-secondary);
}

.progress-label span:last-child {
  color: var(--accent);
  font-weight: 600;
}

.progress-bar-custom {
  height: 6px;
  background: var(--bg-elevated);
  border-radius: var(--r-full);
  overflow: hidden;
}

.progress-bar-custom .fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--r-full);
  transition: width 0.5s var(--ease);
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist-item i {
  font-size: 1.125rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.checklist-item h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.checklist-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Why join list */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.why-item i {
  color: var(--accent);
  font-size: 1rem;
}

/* Trust stats section */
.trust-stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.trust-stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-stats-text h6 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.trust-stats-text h2 {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.trust-stats-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

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

.stat-box {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.stat-box i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.stat-box .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  display: block;
  margin-bottom: 4px;
}

.stat-box .label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .wizard-layout { grid-template-columns: 1fr; }
  .wizard-sidebar { order: -1; }
  .trust-stats-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .provider-stats { grid-template-columns: 1fr; }
  .wizard-form-grid { grid-template-columns: 1fr; }
}


/* ============================================
   APP SHOWCASE — SWIPER DARK
   ============================================ */
.swiper {
  padding-bottom: 40px;
}

.swiper-slide {
  transition: transform 0.4s var(--ease);
}

.swiper-slide img {
  max-height: 500px;
  margin: 0 auto;
}

.swiper-pagination {
  position: relative;
  margin-top: 24px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border-strong);
  opacity: 1;
  transition: all 0.3s var(--ease);
}

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: var(--r-full);
  background: var(--accent);
}

/* App mockup cards in swiper */
.app-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  max-width: 240px;
  margin: 0 auto;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.app-mockup .mock-header {
  margin-bottom: 20px;
}

.app-mockup .mock-logo {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 16px;
}

.app-mockup .mock-title {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.app-mockup .mock-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.app-mockup .mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.app-mockup .mock-cell {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: center;
}

.app-mockup .mock-cell i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 4px;
  display: block;
}

.app-mockup .mock-cell span {
  color: var(--text-secondary);
  font-size: 0.6875rem;
}

.app-mockup .mock-btn {
  margin-top: auto;
  padding: 12px;
  background: var(--accent);
  border-radius: var(--r-md);
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  text-align: center;
}

.app-mockup .mock-btn-outline {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.app-mockup .mock-pulse {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  border: 2px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.app-mockup .mock-pulse::after {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}

.app-mockup .mock-provider {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 10px;
  text-align: left;
}

.app-mockup .mock-provider .verified {
  background: var(--accent);
  color: #fff;
  font-size: 0.625rem;
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.app-mockup .mock-provider .rating {
  color: var(--accent);
  font-size: 0.75rem;
}

.app-mockup .mock-provider .price {
  color: var(--text-muted);
  font-size: 0.6875rem;
}

.app-mockup .mock-provider .actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.app-mockup .mock-provider .actions .btn-sm {
  flex: 1;
  padding: 8px;
  border-radius: var(--r-sm);
  text-align: center;
  font-size: 0.6875rem;
}

.app-mockup .mock-provider .actions .btn-view {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.app-mockup .mock-provider .actions .btn-select {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
