/* ============================================
   Satellite Home Watch — Landing Page Styles
   Premium Edition — Stripe/Linear-inspired
   ============================================ */

/* ── Fade-in Animation Base ── */
.fade-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-init.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Top Navigation ── */
/*
 * LAYOUT IS IDENTICAL IN BOTH STATES.
 * Only background, text colors, button styles, and shadow change on scroll.
 * No position, size, flex, or spacing properties differ between states.
 */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  /* Transition only the visual properties, never layout */
  transition:
    background-color 280ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color     280ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow       280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Hero state (top of page, dark background) ── */
.landing-nav:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

/* ── Scrolled state (light background) ── */
.landing-nav.scrolled {
  background: rgba(254, 252, 249, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.07);
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.06), 0 8px 24px rgba(10, 22, 40, 0.04);
}

/* ── Nav inner wrapper — layout only, never changes ── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ── Logo — Premium Branding ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover { opacity: 0.82; }

/* Logo image — no background box, just the clean mark */
.nav-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform var(--transition-base), opacity var(--transition-base);
  filter: drop-shadow(0 1px 4px rgba(10,22,40,0.18));
}

.nav-logo:hover .nav-logo-img {
  transform: translateY(-1px);
}

/* Scrolled state */
.landing-nav.scrolled .nav-logo-img {
  filter: drop-shadow(0 1px 3px rgba(10,22,40,0.10));
}

/* Text block */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

/* Brand name — hero state: white */
.nav-logo-primary {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #ffffff;
  transition: color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtitle — hero state */
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state: brand text becomes navy */
.landing-nav.scrolled .nav-logo-primary {
  color: var(--navy-900);
}

.landing-nav.scrolled .nav-logo-sub {
  color: var(--blue-gray-500);
}

/* ── Navigation links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Base nav-link — color transitions only, layout fixed */
.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  letter-spacing: -0.01em;
  /* Hero state: white-ish */
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  transition:
    color      280ms cubic-bezier(0.4, 0, 0.2, 1),
    background 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero state hover */
.landing-nav:not(.scrolled) .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

.landing-nav:not(.scrolled) .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

/* Scrolled state: links become dark navy */
.landing-nav.scrolled .nav-link {
  color: var(--color-text-secondary);
}

.landing-nav.scrolled .nav-link:hover {
  color: var(--navy-800);
  background: var(--navy-50);
}

.landing-nav.scrolled .nav-link.active {
  color: var(--navy-700);
  background: var(--navy-50);
}

/* ── Action buttons ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* --- Hero state: Client Login button (ghost/outline on dark) --- */
.landing-nav:not(.scrolled) .nav-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.22);
  transition:
    background 280ms cubic-bezier(0.4, 0, 0.2, 1),
    color      280ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 280ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav:not(.scrolled) .nav-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
  transform: translateY(-1px);
}

/* --- Hero state: Get Started button (white solid on dark) --- */
.landing-nav:not(.scrolled) .nav-actions .btn-primary {
  background: #ffffff;
  color: var(--navy-800);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
  border: 1px solid transparent;
  transition:
    background 280ms cubic-bezier(0.4, 0, 0.2, 1),
    color      280ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav:not(.scrolled) .nav-actions .btn-primary:hover {
  background: var(--cream-100);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* --- Scrolled state: both buttons revert to base styles (navy palette) --- */
/* .btn-secondary and .btn-primary base styles in base.css apply here naturally */
.landing-nav.scrolled .nav-actions .btn-secondary {
  background: var(--blue-gray-100);
  color: var(--navy-700);
  border-color: var(--blue-gray-200);
  transition:
    background 280ms cubic-bezier(0.4, 0, 0.2, 1),
    color      280ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 280ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav.scrolled .nav-actions .btn-secondary:hover {
  background: var(--blue-gray-200);
  border-color: var(--blue-gray-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.landing-nav.scrolled .nav-actions .btn-primary {
  background: var(--navy-700);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition:
    background 280ms cubic-bezier(0.4, 0, 0.2, 1),
    color      280ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav.scrolled .nav-actions .btn-primary:hover {
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ── Mobile menu toggle button ── */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  /* Hero state: white icon */
  color: rgba(255, 255, 255, 0.90);
  background: transparent;
  transition:
    color       280ms cubic-bezier(0.4, 0, 0.2, 1),
    background  280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav:not(.scrolled) .mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Scrolled state: hamburger becomes navy */
.landing-nav.scrolled .mobile-menu-btn {
  color: var(--navy-700);
}

.landing-nav.scrolled .mobile-menu-btn:hover {
  background: var(--navy-50);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(254, 252, 249, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  padding: var(--space-4) var(--space-6);
  z-index: 999;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  flex-direction: column;
  gap: var(--space-2);
}

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

.mobile-menu .nav-link {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
  /* Mobile menu is always on light background — always dark text */
  color: var(--color-text-secondary);
}

.mobile-menu .nav-link:hover {
  color: var(--navy-800);
  background: var(--navy-50);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: var(--border-light);
  margin-top: var(--space-2);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 15% 55%, rgba(30, 58, 110, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(42, 79, 143, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 85%, rgba(10, 22, 40, 0.9) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  /* Minimal geometric sun icon — SVG encoded as a CSS background pattern.
     The sun: a small circle core with 8 evenly-spaced short rays (no emoji style).
     Opacity is kept at ~5% so it is barely perceptible — luxury brand feel.  */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg transform='translate(50,50)' fill='none' stroke='rgba(255,255,255,0.75)' stroke-width='1.6' stroke-linecap='round'%3E%3C!-- Core circle --%3E%3Ccircle cx='0' cy='0' r='7' stroke-width='1.4'/%3E%3C!-- 8 rays, evenly spaced, short and refined --%3E%3Cline x1='0' y1='-11' x2='0' y2='-16'/%3E%3Cline x1='7.78' y1='-7.78' x2='11.31' y2='-11.31'/%3E%3Cline x1='11' y1='0' x2='16' y2='0'/%3E%3Cline x1='7.78' y1='7.78' x2='11.31' y2='11.31'/%3E%3Cline x1='0' y1='11' x2='0' y2='16'/%3E%3Cline x1='-7.78' y1='7.78' x2='-11.31' y2='11.31'/%3E%3Cline x1='-11' y1='0' x2='-16' y2='0'/%3E%3Cline x1='-7.78' y1='-7.78' x2='-11.31' y2='-11.31'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
  /* Soft radial fade — visible towards centre/right, dissolves at edges */
  mask-image: radial-gradient(ellipse 80% 80% at 62% 42%, black 15%, rgba(0,0,0,0.6) 45%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 62% 42%, black 15%, rgba(0,0,0,0.6) 45%, transparent 75%);
}

.hero-radial-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(42, 79, 143, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-24) var(--space-6);
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: var(--navy-200);
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(4px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

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

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
}

.hero-headline span {
  background: linear-gradient(135deg, #b8d0f0 0%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(148, 179, 223, 0.9);
  line-height: 1.65;
  margin-bottom: var(--space-10);
  font-weight: var(--weight-normal);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero CTA helper text */
.hero-cta-helper {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  margin-top: var(--space-3);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-cta-helper::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 012.12 4.18 2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Hero button variants */
.hero-btn-primary {
  background: white !important;
  color: var(--navy-900) !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.15) !important;
  transition: all var(--transition-base) !important;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.2) !important;
}

.hero-btn-ghost {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  transition: all var(--transition-base) !important;
  backdrop-filter: blur(4px);
}

.hero-btn-ghost:hover {
  background: rgba(255,255,255,0.13) !important;
  border-color: rgba(255,255,255,0.25) !important;
  transform: translateY(-1px);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: rgba(148, 179, 223, 0.85);
  font-weight: var(--weight-medium);
}

.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: #4ade80;
  flex-shrink: 0;
}

/* ── Hero Dashboard Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(42, 79, 143, 0.25) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(30px);
}

.hero-mockup {
  background: rgba(8, 18, 36, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 64px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform var(--transition-slow);
}

.hero-visual:hover .hero-mockup {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.6),
    0 12px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.09);
}

.mockup-topbar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mockup-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-dot-red   { background: #ff5f57; }
.mockup-dot-yellow { background: #ffbd2e; }
.mockup-dot-green { background: #28c840; }

.mockup-title {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: var(--weight-medium);
  margin-left: var(--space-2);
  flex: 1;
  text-align: center;
  letter-spacing: -0.01em;
}

/* URL bar */
.mockup-url-bar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 6px var(--space-5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-url-icon {
  width: 14px;
  height: 14px;
  background: rgba(74, 222, 128, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ade80;
}

.mockup-url-text {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  flex: 1;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.mockup-url-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 3px;
  padding: 2px 5px;
  font-weight: 600;
}

.mockup-body {
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
}

.mockup-section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.mockup-sidebar-mini {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  padding-top: var(--space-1);
}

.mockup-nav-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.mockup-nav-dot.active {
  background: rgba(62, 99, 176, 0.45);
  box-shadow: 0 0 0 1px rgba(100, 140, 220, 0.2);
}

.mockup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.mockup-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px;
  transition: background var(--transition-fast);
}

.mockup-card-full { grid-column: 1 / -1; }
.mockup-card-stat { overflow: hidden; }

.mockup-card-alert {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.15);
}

.mockup-card-label {
  font-size: 9px;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.mockup-card-value {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1;
  letter-spacing: -0.03em;
}

.mockup-value-alert { color: #fbbf24; }
.mockup-value-sm { font-size: 14px; color: rgba(255,255,255,0.85); }

.mockup-bar-row {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.mockup-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  flex: 1;
}

.mockup-bar.filled { background: rgba(100,220,160,0.65); }
.mockup-bar.filled-alert { background: rgba(251, 191, 36, 0.6); }

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.mockup-list-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-list-text {
  font-size: 9px;
  color: rgba(255,255,255,0.58);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-list-badge {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.badge-green { background: rgba(74,222,128,0.15); color: #4ade80; }
.badge-blue  { background: rgba(96,165,250,0.15); color: #60a5fa; }
.badge-amber { background: rgba(251,191,36,0.15); color: #fbbf24; }

.mockup-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.mockup-pulse-dot {
  width: 5px;
  height: 5px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

/* Mini sparkline */
.mockup-mini-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  margin-top: 7px;
}

.sparkline-bar {
  flex: 1;
  background: rgba(100, 140, 220, 0.25);
  border-radius: 1.5px;
}

.sparkline-bar.active {
  background: rgba(100, 140, 220, 0.65);
}

/* ═══════════════════════════════════════════════════════
   Hero — Video Demo Frame
   Inherits the same .hero-mockup shell (size, border-radius,
   shadow, hover transform) — only the body content changes.
   ═══════════════════════════════════════════════════════ */

/* Extend the base mockup for video use */
.hero-video-frame {
  /* no extra overrides needed for shape/shadow — inherited from .hero-mockup */
  cursor: default;
}

/* ── Video placeholder body ── */
.video-placeholder {
  position: relative;
  width: 100%;
  /* 16:9 aspect ratio for the video area */
  aspect-ratio: 16 / 9;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  /* Subtle inner glow on hover, transition in sync with the frame */
  transition: background var(--transition-base);
}

/* ── Gradient background layers ── */
.video-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 35% 40%, rgba(42, 79, 143, 0.38) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 72% 65%, rgba(16, 40, 90, 0.45) 0%, transparent 60%),
    linear-gradient(160deg, #06111f 0%, #0a1930 45%, #071425 100%);
  pointer-events: none;
}

/* Subtle film-grain noise texture overlay */
.video-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ── Soft radial glow behind the play button ── */
.video-center-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 99, 176, 0.35) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video-placeholder:hover .video-center-glow {
  opacity: 1.4;
  transform: scale(1.15);
}

/* ── Animated rings around the play button ── */
.video-ring-outer,
.video-ring-inner {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(100, 148, 255, 0.14);
  pointer-events: none;
  animation: video-ring-pulse 3.2s ease-in-out infinite;
}

.video-ring-outer {
  width: 130px;
  height: 130px;
  animation-delay: 0s;
}

.video-ring-inner {
  width: 90px;
  height: 90px;
  border-color: rgba(100, 148, 255, 0.22);
  animation-delay: 0.6s;
}

@keyframes video-ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1);    }
  50%        { opacity: 1;   transform: scale(1.06); }
}

/* ── Play button ── */
.video-play-btn {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  transition:
    transform       0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background      0.22s ease,
    box-shadow      0.22s ease;
  /* nudge the triangle optically */
  padding-left: 4px;
}

.video-play-btn:hover,
.video-placeholder:hover .video-play-btn {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(62, 99, 176, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.video-play-btn:active {
  transform: scale(0.97);
}

/* ── Caption area ── */
.video-caption {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.video-caption-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100, 148, 255, 0.85);
  background: rgba(62, 99, 176, 0.14);
  border: 1px solid rgba(100, 148, 255, 0.18);
  border-radius: 20px;
  padding: 4px 10px;
}

.video-caption-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #648cff;
  flex-shrink: 0;
  animation: video-caption-blink 2.4s ease-in-out infinite;
}

@keyframes video-caption-blink {
  0%, 100% { opacity: 1;   }
  50%        { opacity: 0.4; }
}

.video-caption-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 280px;
  text-align: center;
  margin: 0;
}

.video-placeholder:hover .video-caption-text {
  color: rgba(255, 255, 255, 0.68);
}

/* ── Decorative corner accents ── */
.video-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-corner { opacity: 0.7; }

.video-corner-tl { top: 12px;    left: 12px;  border-top: 1.5px solid rgba(100,148,255,0.5); border-left: 1.5px solid rgba(100,148,255,0.5); border-radius: 3px 0 0 0; }
.video-corner-tr { top: 12px;    right: 12px; border-top: 1.5px solid rgba(100,148,255,0.5); border-right: 1.5px solid rgba(100,148,255,0.5); border-radius: 0 3px 0 0; }
.video-corner-bl { bottom: 40px; left: 12px;  border-bottom: 1.5px solid rgba(100,148,255,0.5); border-left: 1.5px solid rgba(100,148,255,0.5); border-radius: 0 0 0 3px; }
.video-corner-br { bottom: 40px; right: 12px; border-bottom: 1.5px solid rgba(100,148,255,0.5); border-right: 1.5px solid rgba(100,148,255,0.5); border-radius: 0 0 3px 0; }

/* ── Bottom metadata / stats bar ── */
.video-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px var(--space-5);
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.video-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.video-stat svg { color: rgba(100, 148, 255, 0.55); flex-shrink: 0; }

.video-placeholder:hover .video-stat { color: rgba(255, 255, 255, 0.52); }

.video-stat-divider {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 14px;
  flex-shrink: 0;
}

/* ── Responsive: keep video-placeholder aspect ratio on mobile ── */
@media (max-width: 520px) {
  .video-placeholder {
    min-height: 180px;
  }
  .video-play-btn {
    width: 52px;
    height: 52px;
  }
  .video-ring-outer { width: 108px; height: 108px; }
  .video-ring-inner { width: 76px;  height: 76px;  }
  .video-stats-bar { display: none; }
  .video-corner-bl,
  .video-corner-br { bottom: 8px; }
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: var(--space-4);
  padding: 0.3rem var(--space-3);
  background: var(--navy-50);
  border-radius: var(--radius-full);
  border: 1px solid var(--navy-100);
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.6rem);
  font-weight: var(--weight-extrabold);
  color: var(--navy-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── Benefits / Feature Cards ── */
.benefits { background: var(--color-bg-primary); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(10, 22, 40, 0.07);
  padding: var(--space-8);
  box-shadow:
    0 1px 2px rgba(10, 22, 40, 0.04),
    0 2px 8px rgba(10, 22, 40, 0.04),
    0 0 0 0 rgba(30, 58, 110, 0);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--navy-600), var(--navy-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px 2px 0 0;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card:hover {
  box-shadow:
    0 4px 8px rgba(10, 22, 40, 0.06),
    0 12px 32px rgba(10, 22, 40, 0.1),
    0 0 0 1px rgba(10, 22, 40, 0.06);
  transform: translateY(-5px);
  border-color: rgba(10, 22, 40, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy-50), #eef3fb);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 4px rgba(10, 22, 40, 0.06);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy-600);
  transition: color var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.25);
}

.benefit-card:hover .benefit-icon svg { color: white; }

.benefit-title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── How It Works ── */
.how-it-works {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -250px;
  left: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 58, 110, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works .section-eyebrow {
  color: var(--navy-200);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.how-it-works .section-title { color: white; }
.how-it-works .section-desc { color: rgba(148, 179, 223, 0.85); }

.steps-wrapper { position: relative; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 32px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 15%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.12) 85%,
    transparent 100%
  );
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
  cursor: default;
}

.step-number-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.step-number {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.step-svg-icon {
  width: 26px;
  height: 26px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-base), transform var(--transition-base);
}

.step:hover .step-number {
  background: linear-gradient(145deg, var(--navy-600), var(--navy-700));
  border-color: rgba(100, 140, 220, 0.3);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.4);
}

.step:hover .step-svg-icon {
  color: white;
  transform: scale(1.05);
}

.step-number-label {
  font-size: 0.65rem;
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.step-title {
  font-size: 0.95rem;
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.step-desc {
  font-size: var(--text-sm);
  color: rgba(148, 179, 223, 0.75);
  line-height: var(--leading-relaxed);
}

/* ── Trust Section ── */
/* ── Owners Section ── */
.owners-section {
  background: var(--cream-200);
}

.owners-section .section-header {
  margin-bottom: var(--space-16);
}

/* Two-column layout */
.owners-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Photo Column ── */
.owners-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owners-photo-wrap {
  width: 100%;
  max-width: 380px;
}

.owners-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--navy-50) 0%, #dde6f3 60%, #c8d8ee 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(10, 22, 40, 0.1);
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.07),
    0 20px 48px rgba(10, 22, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Subtle inner glow overlay */
.owners-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.35) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}

/* Corner accent line */
.owners-photo-placeholder::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: calc(var(--radius-2xl) - 6px);
  pointer-events: none;
}

.owners-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

.owners-photo-icon {
  width: 72px;
  height: 72px;
  color: var(--navy-400);
  opacity: 0.65;
}

.owners-photo-hint {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--navy-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Caption below photo */
.owners-photo-caption {
  margin-top: var(--space-5);
  text-align: center;
  padding: var(--space-4) var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(10, 22, 40, 0.07);
  box-shadow: 0 1px 4px rgba(10, 22, 40, 0.05), 0 4px 12px rgba(10, 22, 40, 0.05);
  width: 100%;
  max-width: 380px;
}

.owners-caption-names {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.owners-caption-title {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* ── Text Column ── */
.owners-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.owners-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-5) 0;
}

.owners-body strong {
  color: var(--navy-900);
  font-weight: var(--weight-semibold);
}

.owners-body-closing {
  font-style: italic;
  color: var(--navy-700);
  font-size: 1.0625rem;
  font-weight: var(--weight-medium);
  padding-left: var(--space-5);
  border-left: 3px solid var(--navy-300);
  margin-top: var(--space-2);
  line-height: 1.75;
}

/* Signature row with three trust signals */
.owners-signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.owners-sig-block {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--navy-700);
  letter-spacing: -0.01em;
}

.owners-sig-icon {
  width: 18px;
  height: 18px;
  color: var(--navy-500);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .owners-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .owners-photo-col {
    align-items: center;
  }

  .owners-photo-wrap {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .owners-photo-wrap {
    max-width: 260px;
  }

  .owners-signature-row {
    flex-direction: column;
    gap: var(--space-3);
  }
}

/* ── Testimonials ── */
.testimonials { background: var(--cream-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid rgba(10, 22, 40, 0.07);
  box-shadow:
    0 1px 3px rgba(10, 22, 40, 0.05),
    0 4px 16px rgba(10, 22, 40, 0.06);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  box-shadow:
    0 4px 8px rgba(10, 22, 40, 0.07),
    0 16px 40px rgba(10, 22, 40, 0.11);
  transform: translateY(-4px);
  border-color: rgba(10, 22, 40, 0.1);
}

.testimonial-card.featured {
  background: var(--navy-800);
  border-color: rgba(62, 103, 176, 0.4);
  box-shadow:
    0 4px 8px rgba(10, 22, 40, 0.2),
    0 16px 48px rgba(10, 22, 40, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.testimonial-card.featured:hover {
  box-shadow:
    0 6px 12px rgba(10, 22, 40, 0.25),
    0 24px 64px rgba(10, 22, 40, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Featured label */
.testimonial-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-bottom: var(--space-4);
}

/* Verified row */
.testimonial-verified-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.testimonial-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  padding: 3px 9px;
}

.testimonial-verified-badge.featured-verified {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.22);
  color: #4ade80;
}

.testimonial-verified-badge svg {
  flex-shrink: 0;
}

.testimonial-location-flag {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
}

.testimonial-card.featured .testimonial-location-flag {
  color: rgba(148, 179, 223, 0.7);
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-star {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

/* Quote text */
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  flex: 1;
  position: relative;
  font-style: italic;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(196, 217, 240, 0.9);
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255,255,255,0.08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-100), var(--navy-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--weight-bold);
  color: var(--navy-700);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.testimonial-card.featured .testimonial-avatar {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.testimonial-author-info { flex: 1; min-width: 0; }

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.testimonial-card.featured .testimonial-name { color: white; }

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-property-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--navy-600);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  font-weight: var(--weight-medium);
  width: fit-content;
}

.testimonial-card.featured .testimonial-property-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--navy-200);
}

.testimonial-duration {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
}

.testimonial-card.featured .testimonial-duration {
  color: rgba(148, 179, 223, 0.6);
}

/* ── Service Areas ── */
.service-areas {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 110, 0.3) 0%, transparent 65%);
  pointer-events: none;
}

.service-areas .section-eyebrow {
  color: var(--navy-200);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.service-areas .section-title { color: white; }
.service-areas .section-desc { color: rgba(148, 179, 223, 0.85); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.area-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(100, 140, 220, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.area-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 110, 0.5);
  border: 1px solid rgba(62, 99, 176, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.area-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy-200);
}

.area-card:hover .area-icon {
  background: rgba(62, 99, 176, 0.5);
  border-color: rgba(100, 140, 220, 0.4);
}

.area-name {
  font-size: 1.15rem;
  font-weight: var(--weight-bold);
  color: white;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.area-desc {
  font-size: var(--text-sm);
  color: rgba(148, 179, 223, 0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.area-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.area-badge-primary {
  background: rgba(30, 58, 110, 0.6);
  color: var(--navy-200);
  border-color: rgba(62, 99, 176, 0.4);
}

/* Areas CTA bar */
.areas-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-8);
  margin-top: var(--space-10);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.areas-cta-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(148, 179, 223, 0.85);
  font-weight: var(--weight-medium);
}

.areas-cta-text svg {
  color: var(--navy-300);
  flex-shrink: 0;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 25% 50%, rgba(30, 58, 110, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(22, 45, 86, 0.45) 0%, transparent 55%);
  pointer-events: none;
}

.cta-glow-left {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42, 79, 143, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-glow-right {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 58, 110, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: var(--navy-200);
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: var(--weight-extrabold);
  color: white;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(148, 179, 223, 0.85);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

/* CTA section helper text */
.cta-section-helper {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  text-align: center;
  margin-top: 0;
  margin-bottom: var(--space-8);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-section-helper::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 012.12 4.18 2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* CTA button variants */
.cta-btn-primary {
  background: white !important;
  color: var(--navy-900) !important;
  border: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
  font-weight: var(--weight-bold) !important;
  transition: all var(--transition-base) !important;
}

.cta-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3) !important;
}

.cta-btn-subtle {
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.7) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: all var(--transition-base) !important;
}

.cta-btn-subtle:hover {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.9) !important;
  border-color: rgba(255,255,255,0.18) !important;
}

/* CTA trust strip */
.cta-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: rgba(148, 179, 223, 0.7);
  font-weight: var(--weight-medium);
}

.cta-trust-item svg { color: #4ade80; }

.cta-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
}

/* ── Footer ── */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer Trust Bar */
.footer-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--navy-400);
  font-weight: var(--weight-medium);
  letter-spacing: 0.01em;
}

.footer-trust-item svg { color: var(--navy-500); }

.footer-trust-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.06);
}

.footer-top {
  padding: var(--space-16) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-brand { max-width: 290px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-5);
}

/* No icon wrapper box — logo is a plain image */
.footer-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(1.05) drop-shadow(0 1px 4px rgba(10,22,40,0.3));
}

.footer-logo-textblock {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-text {
  font-size: 0.925rem;
  font-weight: var(--weight-bold);
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-logo-sub {
  font-size: 0.6rem;
  font-weight: var(--weight-semibold);
  color: var(--navy-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--navy-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--navy-400);
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer-contact-item:hover { color: var(--navy-200); }

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--navy-500);
  flex-shrink: 0;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: var(--space-5);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav-link {
  font-size: var(--text-sm);
  color: var(--navy-400);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-nav-link:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--navy-600);
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  gap: var(--space-6);
  flex-shrink: 0;
}

.footer-legal-link {
  font-size: 0.72rem;
  color: var(--navy-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover { color: var(--navy-200); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
  .step-connector { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-actions .btn-secondary { display: none; }
  .mobile-menu-btn { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: none; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-brand { max-width: none; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .hero-trust-row { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-trust-bar { gap: var(--space-3); }
  .footer-trust-divider { display: none; }
  .cta-trust-strip { flex-direction: column; gap: var(--space-3); }
  .cta-trust-divider { display: none; }
  .areas-cta { flex-direction: column; text-align: center; }

  /* ── FIX 1: Mobile Hero — prevent overlap, ensure proper stacking ── */
  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: var(--space-12);
    align-items: flex-start;
  }

  .hero-inner {
    padding: var(--space-10) var(--space-5) var(--space-8);
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: var(--space-5);
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: var(--space-8);
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-helper {
    justify-content: flex-start;
    margin-top: var(--space-3);
  }

  .hero-trust-row {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
  }

  .hero-eyebrow {
    margin-bottom: var(--space-5);
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { max-width: none; }
  .footer-legal-links { flex-direction: column; gap: var(--space-2); align-items: center; }
  .hero-cta-helper { justify-content: flex-start; }
  .cta-section-helper { text-align: center; justify-content: center; }

  /* ── FIX 1: Extra small mobile hero ── */
  .hero-inner {
    padding: var(--space-8) var(--space-4) var(--space-6);
  }

  .hero-headline {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .nav-inner {
    padding: 0 var(--space-4);
  }
}
