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

:root {
  --primary: #0B6B45;
  --primary-dark: #085237;
  --secondary: #071A12;
  --secondary-soft: #0C2820;
  --accent: #0A3324;
  --accent2: #B8892A;
  --white: #FFFFFF;
  --light-bg: #F2F7F3;
  --text-dark: #0F1A2A;
  --text-mid: #455062;
  --text-light: #8B95A6;
  --border: #DBE8E1;
  --card-bg: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #06180F 0%, #0B3122 55%, #07231A 100%);
  --gradient-dark-card: linear-gradient(135deg, #0C2820 0%, #071A12 100%);
  --gradient-cta: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
  --gradient-dark-pricing: linear-gradient(160deg, #07231A 0%, #0A5638 100%);
  --shadow-sm: 0 4px 12px rgba(15,26,26,0.06);
  --shadow-md: 0 12px 32px rgba(15,26,26,0.10);
  --shadow-lg: 0 24px 60px rgba(15,26,26,0.14);
  --shadow-cta: 0 10px 28px rgba(11,107,69,0.38);
}

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 90px; }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Float animation for the two floating cards in hero */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

body {
  font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NAVBAR ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,26,26,0.08);
  box-shadow: 0 2px 14px rgba(15,26,26,0.04);
}

/* Scoped to the header. As a bare `nav` element selector this also hit
   the footer's <nav class="footer-links"> (and the ride-share tab list),
   padding them 16px top and bottom by accident. */
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-cta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 24px; height: 24px; fill: #1A1A2E; }

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--primary); }

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

.nav-links a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 10px 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(11,107,69,0.32);
  isolation: isolate;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.nav-cta::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 7px;
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,107,69,0.50);
}

.nav-cta:hover::before { transform: translateX(120%); }
.nav-cta:hover::after { transform: translateX(3px); }

.nav-cta:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

.nav-cta:focus-visible {
  outline: 3px solid rgba(11,107,69,0.55);
  outline-offset: 3px;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.99);
  padding: 0 24px;
  border-top: 1px solid rgba(15,26,26,0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.25s ease;
  pointer-events: none;
}

.mobile-menu.open {
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 24px 24px;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--text-dark);
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(15,26,26,0.06);
}

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

.mobile-menu .nav-cta {
  display: flex;
  margin: 20px 0 6px;
  padding: 16px 24px;
  width: 100%;
  max-width: none;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
  background: linear-gradient(135deg, #FFDA26 0%, #0B6B45 55%, #E6BE00 100%);
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  align-self: stretch;
  text-align: center;
  box-shadow: 0 10px 24px rgba(11,107,69, 0.38), 0 2px 6px rgba(0, 0, 0, 0.08);
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.mobile-menu .nav-cta::after {
  position: static;
  transform: none;
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-menu .nav-cta:hover {
  box-shadow: 0 14px 30px rgba(11,107,69, 0.52);
}

.mobile-menu .nav-cta:hover::after,
.mobile-menu .nav-cta:active::after {
  transform: translateX(3px);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #06180F 0%, #0A5638 45%, #07231A 100%);
  padding: 130px 0 110px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  bottom: -30px;
  left: -40px;
  right: -40px;
  height: 110px;
  background: var(--primary);
  transform: skewY(-2.5deg);
  transform-origin: bottom right;
  z-index: 2;
  box-shadow: 0 -6px 28px rgba(11,107,69,0.25);
}

.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11,107,69,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(62,185,128,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 3;
}

/* ── FLOATING SERVICE TOOLS (home-service icons in hero) ─── */
.hero-tools {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tool {
  position: absolute;
  width: 56px;
  height: 56px;
  opacity: 0.85;
  filter: drop-shadow(0 0 18px rgba(11,107,69,0.45));
  will-change: transform;
}

.tool svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes toolFloat {
  0%, 100% { transform: translateY(0)   rotate(-6deg); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}

@keyframes toolFloatAlt {
  0%, 100% { transform: translateY(0)   rotate(10deg); }
  50%      { transform: translateY(-14px) rotate(-8deg); }
}

@keyframes toolSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes sparkleFloat {
  0%, 100% { transform: scale(0.9)  translateY(0)    rotate(0deg);   opacity: 0.55; }
  50%      { transform: scale(1.25) translateY(-12px) rotate(180deg); opacity: 1; }
}

.tool-wrench     { animation: toolFloat    7.5s ease-in-out infinite; }
.tool-paintbrush { animation: toolFloatAlt 9s   ease-in-out infinite; }
.tool-hammer     { animation: toolFloat    8s   ease-in-out infinite -2s; }
.tool-gear       { animation: toolSpin     14s  linear           infinite; }
.tool-broom      { animation: toolFloatAlt 8.5s ease-in-out infinite -3s; }
.tool-sparkle    { animation: sparkleFloat 5s   ease-in-out infinite; }

/* Pause animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tool { animation: none; }
}

.hero-content { flex: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,107,69,0.15);
  border: 1px solid rgba(11,107,69,0.35);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom:8px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 3.875rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 26px;
  letter-spacing:normal;
}

.hero h1 .highlight {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
}

/* ── HERO FEATURE BULLETS ──────────────────────────── */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 580px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero-features li strong {
  color: var(--white);
  font-weight: 800;
}

.hero-feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(11,107,69, 0.35); */
}

.hero-feature-check svg {
  width: 16px;
  height: 16px;
  fill: #0B6B45;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--gradient-cta);
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  min-height: 60px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 8px 24px rgba(11,107,69,0.35);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  isolation: isolate;
  will-change: transform;
  vertical-align: middle;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.btn-primary::after {
  content: '→';
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 26px;
  transition: transform 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11,107,69,0.50);
  filter: brightness(1.04);
}

.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover::after { transform: translateX(6px); }

.btn-primary:active {
  transform: translateY(-1px) scale(0.985);
  box-shadow: 0 6px 16px rgba(11,107,69,0.35);
  transition-duration: 0.1s;
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(11,107,69,0.55);
  outline-offset: 3px;
}

.btn-outline {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--text-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 60px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  isolation: isolate;
  vertical-align: middle;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(11,107,69,0.25) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}

.btn-outline:hover::before { transform: translateX(120%); }

.btn-outline:active {
  transform: translateY(-1px) scale(0.985);
  transition-duration: 0.1s;
}

.btn-outline:focus-visible {
  outline: 3px solid rgba(15,26,26,0.45);
  outline-offset: 3px;
}

.btn-outline::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.85rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-outline:hover::after {
  transform: translateX(4px);
  background: var(--primary);
  color: var(--text-dark);
}

/* Hide trailing arrow chip on media/play-style outline buttons */
.btn-outline.no-arrow { padding-right: 28px; }
.btn-outline.no-arrow::after { content: none; display: none; }

/* Ghost variant — for use on dark backgrounds (e.g. final CTA section) */
/* Padding compensates for the 2px border so total height matches .btn-primary */
.btn-ghost {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: rgba(255,255,255,0.92);
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  min-height: 60px;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              background 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease,
              box-shadow 0.25s ease;
  isolation: isolate;
  vertical-align: middle;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(11,107,69,0.20) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.btn-ghost::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}

.btn-ghost:hover::before { transform: translateX(120%); }

.btn-ghost:hover::after {
  transform: translateX(4px);
  background: var(--primary);
  color: var(--text-dark);
}

.btn-ghost:active {
  transform: translateY(-1px) scale(0.985);
  transition-duration: 0.1s;
}

.btn-ghost:focus-visible {
  outline: 3px solid rgba(11,107,69,0.55);
  outline-offset: 3px;
}

.play-icon {
  width: 28px;
  height: 28px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg { width: 10px; height: 10px; fill: white; margin-left: 1px; }

.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }

.hero-poster {
  width: 100%;
  max-width:90%;
  height: auto;
  /* border-radius: 20px; */
  /* filter: drop-shadow(0 24px 55px rgba(0,0,0,0.30)); */
}

/* Positioned wrapper so the floating badges anchor to the poster edges */
.hero-poster-wrap {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
/* Poster fills the wrapper (scoped override — keeps the base .hero-poster rule untouched) + gentle float */
.hero-poster-wrap .hero-poster {
  max-width: 100%;
  display: block;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-poster-wrap .hero-poster { animation: none; }
}

/* Floating badges use negative offsets; clip the hero so they can never
   push the document wider than the viewport (fixes mobile horizontal overflow) */
.hero { overflow-x: clip; }
/* Root-level clip: scroll-reveal translateX(40px) + hero-stripe negative
   margins pushed the document to ~492px on mobile, so all media queries
   evaluated against the wrong width. Clipping html pins the document to the
   viewport width (body's overflow-x:hidden alone doesn't constrain the ICB). */
html { overflow-x: clip; }

.hero-mockup {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.phone-frame {
  background: linear-gradient(45deg, #cccccc, #ffffff);
  border-radius: 44px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.55),
    0 0 0 5px rgba(43, 43, 43, 0.25),
    0 0 60px rgba(66, 66, 66, 0.3),
    inset 0 0 0 1px rgba(255,255,255,0.10);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame { animation: none; }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #071A12;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #FFFFFF;
  position: relative;
}

/* ── PHONE SLIDER ──────────────────────────────────── */
.taxi-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  background: #FFFFFF;
}

.taxi-slider:active { cursor: grabbing; }

.taxi-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.taxi-slider-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  background: #FFFFFF;
}

.taxi-slider.is-dragging .taxi-slider-track {
  transition: none;
}

/* Dots float BELOW the phone, centered, without resizing the mockup */
.taxi-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15, 26, 26, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease, transform 0.2s ease;
}

/* Enlarged invisible hit area for easier tapping on mobile */
.ts-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
}

.ts-dot.is-active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 14px rgba(11,107,69,0.6);
}

.ts-dot:hover { background: rgba(255,255,255,0.75); }
.ts-dot.is-active:hover { background: var(--primary); }

.ts-dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.floating-card.card-1 {
  top: 20px;
  left: -60px;
  animation: cardFloat 5.5s ease-in-out infinite;
}
.floating-card.card-2 {
  bottom: 60px;
  right: -50px;
  animation: cardFloat 6.5s ease-in-out -2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .floating-card.card-1, .floating-card.card-2 { animation: none; }
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-icon svg { width: 18px; height: 18px; }

.fc-label { font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.fc-sub { color: var(--text-light); font-size: 0.72rem; }

/* ── STATS ─────────────────────────────────────────── */
.stats-section {
  background: var(--white);
  padding: 48px 0;
}

.stats-title {
  text-align: center;
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 48px;
}

.stats-title span { color: var(--primary); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gradient-dark-card);
  border-radius: 32px;
  overflow: hidden;
  padding: 56px 40px;
  box-shadow: 0 30px 80px rgba(15,26,26,0.18);
}

.stat-item {
  background: transparent;
  padding: 0 28px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-3px); }

.stat-number {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  /* Keep digits the same width while the counter animates — no layout shift */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  display: inline-block;
  min-width: 0;
}

.stat-label {
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ── SECTION COMMON ─────────────────────────────────── */
.section { padding:48px 0; }
.section-alt { background: var(--light-bg); }

.section-tag {
  display: inline-block;
  background: rgba(26,26,46,0.08);
  color: var(--text-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 18px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.ai-section .section-title::after,
.cta-middle h2::after {
  background: var(--primary);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── WHY CHOOSE ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15,26,26,0.12);
  border-color: var(--primary);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 26px; height: 26px; }

.ic-orange { background: var(--secondary); }
.ic-blue { background: rgba(10,51,36,0.1); }
.ic-red { background: rgba(184,137,42,0.1); }

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── AI FEATURES DARK ──────────────────────────────── */
.ai-section {
  background: var(--gradient-hero);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

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

.ai-section .section-title { color: var(--white); }
.ai-section .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.ai-feature-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all 0.25s;
  cursor: default;
}

.ai-feature-item:hover {
  background: rgba(11,107,69,0.1);
  border-color: rgba(11,107,69,0.4);
  transform: translateY(-4px);
}

.ai-feat-icon {
  width: 50px;
  height: 50px;
  background: rgba(11,107,69,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ai-feat-icon svg { width: 24px; height: 24px; fill: var(--primary); }

.ai-feature-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.ai-feature-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── SERVICES ──────────────────────────────────────── */
.services-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.services-cta-box {
  background: radial-gradient(circle at 18% 12%, rgba(11,107,69,0.22) 0%, transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(11,107,69,0.16) 0%, transparent 45%),
    linear-gradient(135deg, #07231A 0%, #0A5638 100%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  margin-top: 40px;
  position: relative;
}

.services-cta-box::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.services-cta-box h4 {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.services-cta-box h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.4;
}

.services-list { display: flex; flex-direction: column; gap: 2px; }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 20px;
  border-radius: 14px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.service-item:hover {
  background: var(--light-bg);
  border-color: var(--border);
}

.service-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-item-icon svg { width: 22px; height: 22px; }

.service-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.service-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PRICING ───────────────────────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 90px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 28px;
  padding: 52px 44px;
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26,26,46,0.12);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--gradient-dark-pricing);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-icon svg { width: 28px; height: 28px; }

.pi-orange { background: var(--secondary); }
.pi-white { background: rgba(255,255,255,0.1); }

.pricing-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--primary);
}

.pricing-card.featured .pricing-plan-name { color: var(--primary); }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-dark);
}

.pricing-card.featured .price-amount { color: var(--white); }

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.pricing-card.featured .price-currency { color: rgba(255,255,255,0.7); }

.price-period {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

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

.pricing-description {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.pricing-card.featured .pricing-description {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.1);
}

.pricing-features { margin-bottom: 36px; }

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.pricing-card.featured .pricing-feature-item { color: rgba(255,255,255,0.75); }

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg { width: 10px; height: 10px; stroke: var(--primary); fill: none; stroke-width: 2.5; }

.pricing-card.featured .check-icon { background: rgba(11,107,69,0.95); }
.pricing-card.featured .check-icon svg { stroke: var(--secondary); }

.btn-pricing {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  isolation: isolate;
}

.btn-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.45) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.btn-pricing:hover::before { transform: translateX(120%); }

.btn-pricing:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 0.1s;
}

.btn-pricing:focus-visible {
  outline: 3px solid rgba(11,107,69,0.55);
  outline-offset: 3px;
}

.btn-pricing-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-pricing-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11,107,69,0.30);
}

.btn-pricing-solid {
  background: var(--gradient-cta);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(11,107,69,0.3);
}

.btn-pricing-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11,107,69,0.50);
  filter: brightness(1.04);
}

.pricing-plus {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11,107,69,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.pricing-plus svg { width: 20px; height: 20px; flex-shrink: 0; }

.pricing-plus p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.pricing-card.featured .pricing-plus { background: rgba(255,255,255,0.07); }
.pricing-card.featured .pricing-plus p { color: rgba(255,255,255,0.6); }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials-section {
  display: none;
  padding: 90px 0;
  background: var(--white);
}

/* Hide nav links that point to the hidden testimonials section */
.nav-links li:has(a[href="#testimonials"]),
.mobile-menu a[href="#testimonials"] {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: 22px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.08);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.star { color: var(--primary); font-size: 1.1rem; }

.testimonial-text {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── BRANDS / TRUST ────────────────────────────────── */
.trust-section {
  background: #166ede;
  padding: 48px 0;
}

.trust-label {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* Auto-scrolling marquee of real client logos, white-tinted to read on dark bg */
.brand-logos {
  position: relative;
  overflow: hidden;
  /* Soft fade at both edges so logos don't pop in/out abruptly */
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.brand-logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brandsMarquee 32s linear infinite;
}

.brand-logos:hover .brand-logos-track {
  animation-play-state: paused;
}

.brand-logo-item {
  height: 80px;
  width: auto;
  min-width: 140px;
  max-width: 240px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.97);
  padding: 8px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.brand-logo-item:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 26px rgba(11,107,69, 0.25);
}

@keyframes brandsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logos-track { animation: none; }
}

/* ── FAQ SECTION ───────────────────────────────────── */
.faq-section {
  background: var(--light-bg);
  padding: 90px 0;
}

/* Two-column FAQ layout — each column flows independently so expanding one
   item only shifts items below it within the same column (matching the
   reference site's `<div class="col-md-6">` structure). */
.faq-listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
  margin-top: 48px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(11,107,69, 0.45);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--text-dark);
  line-height: 1.5;
  user-select: none;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; }

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--text-light);
  transition: transform 0.3s ease, fill 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  fill: var(--primary);
}

/* FAQ open/close animation — handled later in the file (CSS-only via max-height).
   The old JS-driven height: 0 rule was removed because it caused conflicts. */

.faq-answer p {
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 12px;
  font-size: 0.96rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,107,69, 0.18);
}

.faq-answer ul li strong { color: var(--text-dark); font-weight: 700; }

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-section { padding: 64px 0; }
  .faq-listing { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .faq-col { gap: 14px; }
  .faq-item summary { padding: 18px 20px; font-size: 0.96rem; }
  .faq-item > .faq-answer { padding-left: 20px; padding-right: 20px; }
  .faq-item[open] > .faq-answer { padding-bottom: 20px; }
  .faq-answer p, .faq-answer ul li { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-chevron,
  .faq-item > .faq-answer { transition: none; animation: none; }
}

/* ── CTA MIDDLE ────────────────────────────────────── */
.cta-middle {
  background: var(--gradient-hero);
  padding: 48px 0;
  text-align: center;
}

.cta-middle h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
  position: relative;
  display: inline-block;
}

.cta-middle h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 18px auto 0;
}

.cta-middle p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-middle .btn-primary,
.cta-middle .btn-ghost {
  font-size: 1.1rem;
  min-height: 64px;
  min-width: 240px;
  justify-content: center;
  box-sizing: border-box;
}
.cta-middle .btn-primary { padding: 18px 46px; }
.cta-middle .btn-ghost   { padding: 16px 44px; }

/* ── HOW IT WORKS ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #0B6B45;
  z-index: 0;
}

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

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(11,107,69,0.35);
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FOOTER (minimal one-line, matches OnGraph LP variants) ── */
.footer-min {
  background: #F2F7F3;
  border-top: 1px solid #DBE8E1;
  padding: 18px 0;
  color: var(--text-mid);
  font-size: 0.88rem;
}

.footer-min .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--text-dark);
  letter-spacing: 0.2px;
}
.footer-copy span {
  color: var(--accent);          /* OnGraph blue */
  font-weight: 600;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-dark);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links .sep {
  color: #C7CFCF;
  user-select: none;
}

/* ── MEDIA QUERIES ─────────────────────────────────── */
/* Medium desktops (~1280–1500px): keep the phone inside the viewport
   by easing hero padding, removing the strict 100vh, and shrinking the mockup. */
@media (max-width: 1500px) {
  .hero {
    padding: 130px 0 100px;
    min-height: auto;
  }
  .hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.5rem); }
  .hero-sub { font-size: 1.1rem; }
  .hero-features li { font-size: 1rem; }
  .hero .container { gap: 48px; }
  .hero-mockup { width: 300px; }
  .floating-card.card-1 { left: -40px; }
  .floating-card.card-2 { right: -40px; }
}

@media (max-width: 1280px) {
  .container { padding: 0 32px; }
  .ai-features-grid { grid-template-columns: repeat(3, 1fr); }
  .hero .container { gap: 36px; }
  .hero { padding: 120px 0 90px; }
  .hero-mockup { width: 280px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .ai-features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .stats-grid { padding: 44px 28px; }
  .stat-number { font-size: 2.8rem; }
  .services-wrap { gap: 40px; }
}

/* Tablet — 900px breakpoint to avoid cramped 1024→768 jump */
@media (max-width: 900px) {
  .hero { padding: 140px 0 120px; min-height: auto; }
  .hero .container { flex-direction: column; gap: 56px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-features {
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    max-width: 460px;
    text-align: left;
  }
  .hero-btns { justify-content: center; }
  .hero-mockup { width: 300px; }
  .floating-card.card-1 { left: -30px; }
  .floating-card.card-2 { right: -30px; }
  .section { padding: 80px 0; }
  .services-wrap { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > :last-child { grid-column: 1 / -1; max-width: 560px; justify-self: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero { padding: 100px 0 110px; }
  /* On mobile, show the phone mockup first, then the hero text/buttons below */
  .hero .container { gap: 32px; flex-direction: column-reverse; }
  /* Hide the phone-mockup poster on mobile — lead with the headline + CTA */
  .hero-visual { display: none; }
  .hero-mockup { width: 240px; }
  /* Shrink floating tools on tablet, hide most on mobile to avoid clutter */
  .tool { width: 42px; height: 42px; opacity: 0.7; }
  .tool-hammer, .tool-broom, .tool-paintbrush { display: none; }
  .floating-card.card-1 { left: -10px; top: 8px; }
  /* Card-2 lifted above the phone's bottom CTA so it doesn't cover the "Next" button area */
  .floating-card.card-2 { right: -10px; bottom: 150px; }
  /* Dots now overlap the phone screen — keep visible but slightly smaller */
  .taxi-slider-dots { bottom: 14px; padding: 6px 12px; gap: 6px; }
  .ts-dot { width: 6px; height: 6px; }
  .ts-dot.is-active { width: 18px; height: 6px; border-radius: 4px; }
  .phone-notch { width: 90px; height: 18px; top: 14px; }
  .hero-stripe { height: 70px; bottom: -20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; gap: 28px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .stat-item:nth-child(2n) { border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
  .ai-features-grid { grid-template-columns: 1fr 1fr; }
  .services-wrap { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > :last-child { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-min .footer-row { flex-direction: column; gap: 12px; text-align: center; }
  .feature-card, .testimonial-card { padding: 32px 28px; }
  .cta-middle .btn-primary,
  .cta-middle .btn-ghost {
    font-size: 1rem;
    min-height: 56px;
    min-width: 220px;
    width: 100%;
    max-width: 320px;
  }
  .cta-middle .btn-primary { padding: 14px 32px; }
  .cta-middle .btn-ghost   { padding: 12px 30px; }
}

@media (max-width: 560px) {
  /* Floating cards begin to clip the phone — tuck them tighter and keep card-2 above the phone's bottom CTA */
  .floating-card { padding: 10px 12px; font-size: 0.74rem; }
  .floating-card.card-1 { left: 0; top: 0; }
  .floating-card.card-2 { right: 0; bottom: 130px; }
  .fc-icon { width: 30px; height: 30px; }
  .fc-icon svg { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero { padding: 100px 0 90px; }
  .hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .hero-sub { font-size: 1.05rem; }
  .hero-features li { font-size: 0.98rem; gap: 12px; }
  .hero-feature-check { width: 24px; height: 24px; }
  .hero-feature-check svg { width: 12px; height: 12px; }
  .hero-stripe { height: 56px; bottom: -16px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .stats-title { font-size: 1.2rem; margin-bottom: 32px; }
  .stats-section { padding: 60px 0; }
  .nav-cta { padding: 8px 8px 8px 16px; font-size: 0.88rem; gap: 8px; }
  .nav-cta::after { width: 26px; height: 26px; }
  .ai-features-grid { grid-template-columns: 1fr; }
  .ai-section { padding: 64px 0; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { justify-content: center; padding: 16px 24px; font-size: 1rem; }
  .brand-logos-track { gap: 28px; animation-duration: 26s; }
  .brand-logo-item {
    height: 70px;
    min-width: 110px;
    max-width: 200px;
    padding: 6px 16px;
    border-radius: 12px;
  }
  .pricing-card { padding: 40px 24px; }
  .pricing-section, .testimonials-section, .cta-middle { padding: 64px 0; }
  .stat-number { font-size: 2.4rem; }
  .floating-card { display: none; }
  .hero-visual { padding-bottom: 0; }
  .feature-card, .testimonial-card { padding: 28px 22px; }
  .feature-card h3 { font-size: 1.1rem; }
  .cta-middle h2 { font-size: 1.8rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .price-amount { font-size: 2.6rem; }
}

/* ── VIDEO DEMO MODAL ──────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  appearance: none;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  transform: scale(0.9) translateY(24px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.36, 0.64, 1), opacity 0.3s ease;
}

.video-modal.is-open .video-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: videoModalPop 0.5s cubic-bezier(0.34, 1.36, 0.64, 1);
}

@keyframes videoModalPop {
  0%   { transform: scale(0.9) translateY(24px); opacity: 0; }
  60%  { transform: scale(1.02) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.video-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, transform 0.3s ease, border-color 0.25s ease, color 0.25s ease;
  z-index: 2;
}

.video-modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #1A1A2E;
  transform: rotate(90deg) scale(1.05);
}

.video-modal-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.video-modal-close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #071A12;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.video-modal-frame.is-loading .video-modal-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.video-modal-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: videoSpin 0.85s linear infinite;
}

.video-modal-loader-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  animation: videoLoaderPulse 1.4s ease-in-out infinite;
}

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

@keyframes videoLoaderPulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

@media (max-width: 480px) {
  .video-modal-spinner { width: 42px; height: 42px; border-width: 3px; }
  .video-modal-loader-text { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .video-modal-spinner { animation-duration: 2.5s; }
  .video-modal-loader-text { animation: none; }
}

body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .video-modal { padding: 16px; }
  .video-modal-close {
    top: -46px;
    width: 38px;
    height: 38px;
  }
  .video-modal-close svg { width: 18px; height: 18px; }
  .video-modal-frame { border-radius: 12px; }
}

@media (max-width: 480px) {
  .video-modal { padding: 12px; }
  .video-modal-close { top: -42px; width: 34px; height: 34px; }
  .video-modal-close svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .video-modal,
  .video-modal-content,
  .video-modal.is-open .video-modal-content,
  .video-modal-close { transition: none; animation: none; }
}

/* ── ONGRAPH HEADER LOGO OVERRIDE ──────────────────── */
.logo { text-decoration: none; }
/* Header logo sizing now lives in common-css/header.css (shared by every
   landing page). Override a metric for this page only by setting the token
   on the header element, e.g.  header { --hdr-logo-h: 40px; }            */

/* ── LEAD FORM MODAL ───────────────────────────────── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-start;          /* was center — center via margin:auto on dialog so tall content can scroll */
  justify-content: center;
  padding: 24px;
  overflow-y: auto;                 /* let the modal itself scroll */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;/* momentum scroll on iOS */
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s;
}

.lead-modal-backdrop {
  position: fixed;                  /* fixed so it covers viewport even while modal scrolls */
  inset: 0;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.lead-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: auto;                     /* centers vertically when content fits, collapses to 0 when content overflows */
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.36, 0.64, 1), opacity 0.25s ease;
}
.lead-modal.is-open .lead-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F2F7F3;
  color: #45524E;
  border: 1px solid #DBE8E1;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 26, 26, 0.08);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s, box-shadow 0.2s;
}
.lead-modal-close:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: rotate(90deg);
  box-shadow: 0 6px 16px rgba(15, 26, 26, 0.22);
}
.lead-modal-close:focus-visible {
  outline: 3px solid rgba(11,107,69,0.55);
  outline-offset: 2px;
}

.lead-popup {
  display: flex;
  min-height: 460px;
}

.lead-popup-left {
  position: relative;
  width: 40%;
  background-color: #0E1129;
  background-image: url('../../common-img/popup-bg-frame.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto;
  color: #fff;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lead-popup-logo img {
  display: block;
  height: 56px;
  width: auto;
}
.lead-popup-text {
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.lead-popup-text h3 {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}
.lead-popup-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #C9C9C9;
}
.lead-popup-blob { display: none; } /* superseded by background-image pattern */

.lead-popup-right {
  width: 60%;
  padding: 40px 36px;
  background: #fff;
  display: flex;
  align-items: center;
}
.lead-form { width: 100%; }
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.lead-field { margin-bottom: 12px; }
.lead-field input,
.lead-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid #D6DCDC;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-field textarea {
  resize: vertical;
  min-height: 96px;
}
.lead-field input:focus,
.lead-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.12);
}
.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: #8B9590;
}

/* intl-tel-input host needs full width inside the field */
.lead-field.number-box .iti { width: 100%; display: block; }
.lead-field.number-box .iti input { padding-left: 92px; }

/* Submit button — inherits .btn-primary visuals (yellow + arrow chip),
   overridden here to span the form full-width with centered content. */
.lead-submit {
  display: flex;
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}
.lead-submit:disabled {
  cursor: default;
  opacity: 0.85;
  transform: none;
}
.lead-submit:disabled:hover {
  transform: none;
  filter: none;
  box-shadow: 0 8px 24px rgba(11,107,69,0.35);
}

/* Schedule-a-meeting nav link */
.nav-link-meet {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border: 1.5px solid var(--text-dark);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-link-meet:hover {
  background: var(--text-dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .lead-modal { padding: 14px; }
  .lead-popup { flex-direction: column; min-height: 0; }
  .lead-popup-left,
  .lead-popup-right { width: 100%; }
  .lead-popup-left { padding: 26px 24px; }
  .lead-popup-text { margin-top: 24px; }
  .lead-popup-text h3 { font-size: 1.4rem; }
  .lead-popup-right { padding: 28px 22px; }
  .lead-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lead-modal,
  .lead-modal-dialog,
  .lead-modal-close { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   HOME-SERVICES FULL-PAGE THEMING & ANIMATIONS
════════════════════════════════════════════════════════════ */

/* ── Section backgrounds: soft sky-blue tint (residential, fresh) ── */
.section-alt {
  background: linear-gradient(180deg, #F2F7F3 0%, #F5FBF8 100%);
  position: relative;
}

/* House-silhouette decoration anchored at the bottom of light alt sections */
.section-alt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='80' viewBox='0 0 360 80'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.08' stroke-width='1.4'%3E%3Cpath d='M 20,70 L 44,46 L 68,70 L 68,80 L 20,80 Z'/%3E%3Cpath d='M 110,70 L 142,40 L 174,70 L 174,80 L 110,80 Z'/%3E%3Cpath d='M 210,70 L 234,50 L 258,70 L 258,80 L 210,80 Z'/%3E%3Cpath d='M 290,70 L 320,42 L 350,70 L 350,80 L 290,80 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 360px 80px;
  background-position: bottom center;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.section-alt .container { position: relative; z-index: 1; }

/* ── House-silhouette overlay on dark sections ── */
.ai-section { position: relative; }
.ai-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='220' viewBox='0 0 280 220'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.12' stroke-width='1.2'%3E%3Cpath d='M 30,80 L 60,52 L 90,80 L 90,130 L 30,130 Z'/%3E%3Cpath d='M 150,70 L 188,36 L 226,70 L 226,140 L 150,140 Z'/%3E%3Cpath d='M 80,170 L 108,146 L 136,170 L 136,210 L 80,210 Z'/%3E%3C/g%3E%3Cg fill='%230B6B45' fill-opacity='0.08'%3E%3Crect x='54' y='102' width='12' height='28'/%3E%3Crect x='180' y='98' width='16' height='42'/%3E%3Crect x='100' y='182' width='12' height='28'/%3E%3Ccircle cx='20' cy='20' r='1.6'/%3E%3Ccircle cx='260' cy='190' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 280px 220px;
  z-index: 0;
}
.ai-section .container { position: relative; z-index: 2; }

.cta-middle,
section.cta-middle { position: relative; overflow: hidden; }
.cta-middle::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='240' viewBox='0 0 320 240'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.10' stroke-width='1.2'%3E%3Cpath d='M 40,90 L 70,60 L 100,90 L 100,150 L 40,150 Z'/%3E%3Cpath d='M 180,80 L 220,42 L 260,80 L 260,160 L 180,160 Z'/%3E%3C/g%3E%3Cg fill='%230B6B45' fill-opacity='0.08'%3E%3Crect x='62' y='112' width='12' height='38'/%3E%3Crect x='212' y='110' width='16' height='50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 240px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.cta-middle .container { position: relative; z-index: 2; }

/* ── Pulsing service-ping decorations on dark sections ── */
@keyframes svcPing {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.svc-ping {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(11,107,69,0.7);
  pointer-events: none;
  z-index: 1;
}
.svc-ping::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: svcPing 3s ease-out infinite;
}

/* ── Trust section — subtle moving glow under marquee ── */
.trust-section {
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(11,107,69,0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(11,107,69,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.trust-section .container { position: relative; z-index: 1; }

/* ── Enhanced FEATURE CARD animations ── */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(11,107,69,0.06) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: inherit;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.feature-card:hover .feature-icon {
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 0 8px 22px rgba(11,107,69,0.30);
}

/* ── Step number: pop + spin slightly on hover ── */
.step-number {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
}
.step-item:hover .step-number {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 14px 34px rgba(11,107,69,0.50);
}

/* ── AI feature icon: glow + scale on hover ── */
.ai-feat-icon {
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.ai-feature-item:hover .ai-feat-icon {
  background: rgba(11,107,69,0.3);
  box-shadow: 0 0 28px rgba(11,107,69,0.45);
  transform: scale(1.12);
}

/* ── Service item icon: subtle spin on hover ── */
.service-item-icon {
  transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.service-item:hover .service-item-icon {
  transform: rotate(360deg);
}

/* ── Industry card: image zoom + "available" checkmark badge on hover ── */
.industry-card {
  position: relative;
  overflow: hidden;
}
.industry-card img {
  transition: transform 0.5s ease;
}
.industry-card:hover img {
  transform: scale(1.08);
}
.industry-card::after {
  content: '✓';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 14px rgba(11,107,69,0.5);
  pointer-events: none;
}
.industry-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ── Tech stack box: pop with slight rotate ── */
.tech-box {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.tech-box:hover {
  transform: translateY(-8px) rotate(-3deg);
  box-shadow: 0 16px 40px rgba(11,107,69,0.18);
}

/* ── Pricing featured card — subtle pulsing glow ── */
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 24px 60px rgba(11,107,69,0.18); }
  50%      { box-shadow: 0 30px 84px rgba(11,107,69,0.40); }
}
.pricing-card.featured {
  animation: featuredGlow 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
/* Subtle house pattern overlay on featured pricing card */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='180' viewBox='0 0 220 180'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.12' stroke-width='1'%3E%3Cpath d='M 30,70 L 56,46 L 82,70 L 82,110 L 30,110 Z'/%3E%3Cpath d='M 140,90 L 174,58 L 208,90 L 208,140 L 140,140 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 180px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.pricing-card.featured > * { position: relative; z-index: 1; }

/* Top accent bar on featured card */
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, #3EB980 70%, transparent 100%);
  z-index: 2;
}

/* ── Pricing section enhanced mobile responsive ── */
@media (max-width: 768px) {
  .pricing-section { padding: 64px 0; }
  .pricing-card { padding: 44px 32px; }
  .pricing-card.featured { margin-top: 18px; }
  .pricing-badge { font-size: 0.72rem; padding: 5px 16px; }
  .btn-pricing { padding: 15px; font-size: 0.95rem; min-height: 50px; }
  .pricing-icon { width: 52px; height: 52px; }
  .pricing-icon svg { width: 24px; height: 24px; }
  .price-amount { font-size: 2.8rem; }
}
@media (max-width: 480px) {
  .pricing-card { padding: 36px 22px; border-radius: 22px; }
  .pricing-features { margin-bottom: 28px; }
  .price-amount { font-size: 2.4rem; }
  .pricing-plus { padding: 12px 14px; gap: 10px; }
  .pricing-plus p { font-size: 0.82rem; line-height: 1.5; }
  .pricing-description { font-size: 0.88rem; padding-top: 20px; margin-bottom: 22px; }
}

/* ── Universal CTA polish (all primary buttons get consistent gradient + glow) ── */
.btn-primary,
.btn-pricing-solid {
  background: var(--gradient-cta);
  color: #ffffff;
}
.btn-primary:hover,
.btn-pricing-solid:hover {
  filter: brightness(1.08);
}

/* Hero stripe bottom edge — use solid primary color (not gradient) */
.hero-stripe { background: var(--primary); }
.nav-cta { background: var(--gradient-cta); }
.step-number { background: var(--gradient-cta); }
.pricing-badge { background: var(--gradient-cta); }

/* ── Floating-card icons: subtle bounce on hover ── */
.floating-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.floating-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* ── Brand logos: gentle scale on hover (already exists, enhance) ── */
.brand-logo-item {
  filter: grayscale(0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.brand-logo-item:hover {
  filter: grayscale(0);
}

/* ── Section title underline grow on scroll-in ── */
.section-title::after {
  transform-origin: left;
  transition: width 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
}
.text-center .section-title::after { transform-origin: center; }

/* ── Scroll-reveal animation variants ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── Stats — count-up styling for animated number ── */
.stat-number[data-target] { display: inline-block; min-width: 4ch; }

/* ── Final CTA decoration ── */
section.cta-middle#contact::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(11,107,69,0.20) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Footer subtle bg tint */
.footer-min { background: linear-gradient(180deg, #F2F7F3 0%, #F5FBF8 100%); }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .reveal-left,
  .reveal-right { opacity: 1; transform: none; transition: none; }
  .pricing-card.featured { animation: none; }
  .svc-ping::after { animation: none; }
  .dispatch-routes { display: none; }
}

/* ════════════════════════════════════════════════════
   STATS SECTION — premium showcase
════════════════════════════════════════════════════ */

.stats-grid {
  /* layered background: dark base + soft blue radial glows + faint house pattern */
  background:
    radial-gradient(circle at 18% 12%, rgba(11,107,69,0.22) 0%, transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(11,107,69,0.16) 0%, transparent 45%),
    linear-gradient(135deg, #07231A 0%, #0A5638 100%);
  position: relative;
  overflow: hidden;
  padding:32px;
  border: 1px solid rgba(11,107,69,0.18);
  box-shadow:
    0 30px 80px rgba(8,17,31,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Top accent bar in primary blue with soft fade-out edges */
.stats-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(11,107,69,0.6) 20%,
    rgba(62,185,128,0.9) 50%,
    rgba(11,107,69,0.6) 80%,
    transparent 100%);
  z-index: 2;
}

/* Subtle house-silhouette pattern overlay */
.stats-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='200' viewBox='0 0 260 200'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.10' stroke-width='1'%3E%3Cpath d='M 30,80 L 56,56 L 82,80 L 82,120 L 30,120 Z'/%3E%3Cpath d='M 140,90 L 176,58 L 212,90 L 212,140 L 140,140 Z'/%3E%3C/g%3E%3Cg fill='%230B6B45' fill-opacity='0.08'%3E%3Crect x='52' y='98' width='8' height='22'/%3E%3Crect x='170' y='114' width='12' height='26'/%3E%3Ccircle cx='20' cy='20' r='1.4'/%3E%3Ccircle cx='240' cy='180' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 200px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

/* ── Stat item: center-aligned card with icon above ── */
.stat-item {
  text-align: center;
  padding: 8px 22px;
  position: relative;
  z-index: 1;
  border-right: none; /* replaced by gradient pseudo */
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.stat-item:hover { transform: translateY(-4px); }

/* Vertical gradient separator between items */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(11,107,69,0.35) 50%,
    transparent 100%);
}

/* ── Stat head: flex row holding icon + number, vertically centered ── */
.stat-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

/* ── Stat icon: glassy blue chip with primary-coloured glyph ── */
.stat-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,107,69,0.30) 0%, rgba(11,107,69,0.10) 100%);
  border: 1px solid rgba(11,107,69,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              background 0.35s ease,
              border-color 0.35s ease;
  position: relative;
}
.stat-icon svg { width: 28px; height: 28px; fill: currentColor; }

.stat-item:hover .stat-icon {
  transform: scale(1.10) rotate(-6deg);
  background: linear-gradient(135deg, rgba(11,107,69,0.55) 0%, rgba(11,107,69,0.20) 100%);
  box-shadow: 0 0 32px rgba(11,107,69,0.60);
  border-color: rgba(11,107,69,0.70);
}


/* ── Number: white with primary-blue glow halo, sits next to icon ── */
.stat-number {
  color: #ffffff;
  margin-bottom: 0;     /* spacing handled by .stat-head margin-bottom */
  line-height: 1;
  display: inline-block;
  text-shadow:
    0 0 30px rgba(11,107,69,0.55),
    0 0 60px rgba(11,107,69,0.25);
  transition: text-shadow 0.35s ease, transform 0.35s ease;
}
.stat-item:hover .stat-number {
  text-shadow:
    0 0 32px rgba(11,107,69,0.90),
    0 0 70px rgba(11,107,69,0.45);
  transform: scale(1.04);
}

.stat-label {
  text-align: center;
  margin: 0 auto;
  max-width: 200px;
}

/* ── Stat meta: subtle subtitle under the label ── */
.stat-meta {
  margin-top: 14px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(62,185,128,0.95);
  background: rgba(11,107,69,0.10);
  border: 1px solid rgba(11,107,69,0.22);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.stat-meta::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3EB980;
  box-shadow: 0 0 8px rgba(62,185,128,0.85);
}
.stat-item:hover .stat-meta {
  background: rgba(11,107,69,0.20);
  border-color: rgba(11,107,69,0.45);
  color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
  .stat-head { gap: 12px; }
  .stat-icon { width: 54px; height: 54px; }
  .stat-icon svg { width: 26px; height: 26px; }
}

@media (max-width: 1024px) {
  .stats-grid { padding: 48px 24px; }
  .stat-item { padding: 6px 14px; }
  .stat-head { gap: 10px; }
  .stat-icon { width: 48px; height: 48px; border-radius: 12px; }
  .stat-icon svg { width: 22px; height: 22px; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; gap: 40px 0; }
  .stat-item { padding: 8px 16px 8px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 18%;
    bottom: 18%;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(11,107,69,0.35) 50%, transparent 100%);
  }
  .stat-item:nth-last-child(-n+2) { padding-bottom: 0; }
  .stat-head { gap: 12px; margin-bottom: 14px; }
  .stat-icon { width: 46px; height: 46px; }
  .stat-icon svg { width: 22px; height: 22px; }
  .stat-meta { font-size: 0.70rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; padding: 36px 18px; }
  .stat-item:not(:last-child)::after,
  .stat-item:nth-child(odd)::before { display: none; }
  .stat-item:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(11,107,69,0.18);
  }
  .stat-head { gap: 14px; }
  .stat-icon { width: 50px; height: 50px; }
  .stat-icon svg { width: 24px; height: 24px; }
}

/* ════════════════════════════════════════════════════════════
   SECTION BACKGROUNDS — VISIBLY DISTINCT, HOME-SERVICES THEMED
   (Final override layer — strongest specificity wins)
════════════════════════════════════════════════════════════ */

/* Body/global */
body { background: #ffffff; }

/* ── Stats section — soft sky-blue band (was plain white) ── */
section.stats-section {
  background: linear-gradient(180deg, #F5FBF8 0%, #E0EDE6 100%);
  position: relative;
  overflow: hidden;
}
section.stats-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,107,69,0.16) 0%, transparent 65%);
  pointer-events: none;
}
section.stats-section .container { position: relative; z-index: 1; }

/* ── Features section — soft cream-blue with corner glow ── */
section.section#features {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FBF8 100%);
  position: relative;
  overflow: hidden;
}
section.section#features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='320' viewBox='0 0 400 320'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.06' stroke-width='1.2'%3E%3Cpath d='M 80,120 L 116,86 L 152,120 L 152,180 L 80,180 Z'/%3E%3Cpath d='M 250,140 L 290,100 L 330,140 L 330,210 L 250,210 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 320px;
  opacity: 0.7;
  pointer-events: none;
}
section.section#features .container { position: relative; z-index: 1; }

/* ── How It Works section — soft sky band with stronger color ── */
section.section.section-alt#how-it-works {
  background: linear-gradient(180deg, #F2F7F3 0%, #F5FBF8 100%);
}

/* ── Services section (contains the dark CTA box) — warm tinted ── */
section.section:not(#features):not(#how-it-works):not(#contact):not(#pricing) {
  position: relative;
}

/* ── Tabs section — distinct soft blue with house pattern visible ── */
section.tabs-section {
  background: linear-gradient(180deg, #F2F7F3 0%, #E0EDE6 100%);
}

/* ── Industries section — soft cream-blue band ── */
section.industries-section {
  background: linear-gradient(180deg, #F5FBF8 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
section.industries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='260' viewBox='0 0 320 260'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M 50,90 L 80,62 L 110,90 L 110,150 L 50,150 Z'/%3E%3Cpath d='M 200,120 L 234,88 L 268,120 L 268,180 L 200,180 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 260px;
  pointer-events: none;
}
section.industries-section .container { position: relative; z-index: 1; }

/* ── Tech section — sky blue band ── */
section.tech-section.section-alt {
  background: linear-gradient(180deg, #E0EDE6 0%, #F2F7F3 100%);
}

/* ── Pricing section — strong sky-blue tinted background ── */
section.pricing-section {
  background: linear-gradient(180deg, #F2F7F3 0%, #F5FBF8 100%);
  position: relative;
  overflow: hidden;
}
section.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,107,69,0.18) 0%, transparent 60%);
  pointer-events: none;
}
section.pricing-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,185,128,0.12) 0%, transparent 60%);
  pointer-events: none;
}
section.pricing-section .container { position: relative; z-index: 1; }

/* ── FAQ section — strong sky-blue ── */
section.faq-section {
  background: linear-gradient(180deg, #E0EDE6 0%, #F2F7F3 100%);
}

/* ── Footer — distinct soft blue ── */
footer.footer-min {
  background: linear-gradient(180deg, #F2F7F3 0%, #E0EDE6 100%);
  border-top: 1px solid rgba(11,107,69,0.15);
}

/* Slanted divider between Stats (sky-blue) and Features (sky-blue) sections
   — adds a smooth visual transition */
section.stats-section + section.section#features {
  margin-top: 0;
}

/* Visible decorative "section transition" — subtle wave at top of select sections */
section.pricing-section::before,
section.stats-section::before,
section.industries-section::before {
  z-index: 0;
}

/* Make sure all content is above decorative overlays */
section.stats-section > .container,
section.section#features > .container,
section.tabs-section > .container,
section.industries-section > .container,
section.tech-section > .container,
section.pricing-section > .container,
section.faq-section > .container { position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════════════
   TRUST SECTION — premium client showcase
   (replaces the marquee with a clean grid layout)
════════════════════════════════════════════════════════════ */

section.trust-section {
  background:#085237;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

/* House-silhouette pattern overlay */
section.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='240' viewBox='0 0 300 240'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.10' stroke-width='1'%3E%3Cpath d='M 30,80 L 60,52 L 90,80 L 90,130 L 30,130 Z'/%3E%3Cpath d='M 170,90 L 206,58 L 242,90 L 242,150 L 170,150 Z'/%3E%3Cpath d='M 90,170 L 118,146 L 146,170 L 146,210 L 90,210 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 240px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
section.trust-section .container { position: relative; z-index: 1; }

/* ── Trust header — tag, title, subtitle ── */
.trust-header {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 880px;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,107,69,0.18);
  border: 1px solid rgba(11,107,69,0.42);
  color: #FFFFFF;
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(11,107,69,0.18);
}
.trust-tag svg {
  width: 14px; height: 14px;
  fill: #FFD400;
}

.trust-title {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 28px;
  letter-spacing: -0.3px;
}
.trust-title span {
  color: #FFD400;
  text-shadow: 0 0 20px rgba(11,107,69,0.55);
  position: relative;
  display: inline-block;
}
.trust-title span::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, #000000 50%, transparent 100%);
  margin-top: 4px;
  border-radius: 3px;
}

/* ── Trust subtitle — short honest description under title ── */
.trust-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 4px;
}

/* Legacy stats row — hidden as a safety net */
.trust-meta, .trust-stat { display: none; }

/* ── Brand logos marquee track ── */
.brand-logos {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  /* Soft fade at both edges so logos don't pop in/out abruptly */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brand-logos-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 16px 0;
  animation: brandsMarquee 34s linear infinite;
}

.brand-logos:hover .brand-logos-track {
  animation-play-state: paused;
}

.brand-logo-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 22px 24px;
  width: 200px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(11,107,69,0.08);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.brand-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(11,107,69,0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.brand-logo-card:hover::before { opacity: 1; }
.brand-logo-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(11,107,69,0.40), inset 0 0 0 1px rgba(11,107,69,0.24);
}

.brand-logo-card img {
  max-width: 150px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.10);
  transition: filter 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.brand-logo-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

@keyframes brandsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hide the old standalone trust-label paragraph + trust-footnote if they still exist ── */
.trust-label,
.trust-footnote { display: none; }

/* ── Responsive: tablet (slightly smaller cards) ── */
@media (max-width: 1180px) {
  .brand-logos-track { gap: 20px; }
  .brand-logo-card { width: 180px; height: 100px; padding: 18px 20px; }
  .brand-logo-card img { max-width: 130px; max-height: 60px; }
}

/* ── Responsive: medium tablet ── */
@media (max-width: 900px) {
  section.trust-section { padding: 56px 0 48px; }
  .trust-header { margin-bottom: 32px; }
  .brand-logos-track { gap: 18px; animation-duration: 30s; }
  .brand-logo-card { width: 170px; height: 96px; padding: 16px 18px; }
  .brand-logo-card img { max-width: 120px; max-height: 54px; }
  .trust-subtitle { font-size: 0.96rem; padding: 0 16px; }
}

/* ── Responsive: mobile ── */
@media (max-width: 600px) {
  section.trust-section { padding: 48px 0 40px; }
  .trust-header { margin-bottom: 28px; }
  .trust-title { font-size: 1.4rem; line-height: 1.35; margin-bottom: 18px; }
  .trust-tag { font-size: 0.72rem; padding: 6px 12px 6px 10px; }
  .trust-tag svg { width: 12px; height: 12px; }
  .trust-subtitle { font-size: 0.90rem; padding: 0 16px; line-height: 1.6; }
  .brand-logos {
    /* Tighter fade edges on mobile */
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }
  .brand-logos-track { gap: 14px; animation-duration: 26s; padding: 12px 0; }
  .brand-logo-card {
    width: 140px;
    height: 84px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .brand-logo-card img { max-width: 100px; max-height: 48px; }
  .trust-footnote { font-size: 0.78rem; padding: 0 16px; text-align: center; }
}

/* ── Responsive: very small ── */
@media (max-width: 380px) {
  .trust-title { font-size: 1.25rem; }
  .brand-logos-track { gap: 12px; animation-duration: 22s; }
  .brand-logo-card { width: 124px; height: 76px; padding: 12px 14px; }
  .brand-logo-card img { max-width: 88px; max-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logos-track { animation: none; }
  .brand-logo-card, .brand-logo-card img { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   FAQ — CSS-only max-height animation (works without JS)
   `` is used here defensively: it guarantees these rules
   beat any cached / earlier / future conflicting declaration.
════════════════════════════════════════════════════════════ */
.faq-item > .faq-answer {
  display: block;
  height: auto;
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
}

.faq-item[open] > .faq-answer {
  max-height: 1500px;
  padding-top: 4px;
  padding-bottom: 22px;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-item > .faq-answer { padding-left: 20px; padding-right: 20px; }
  .faq-item[open] > .faq-answer { padding-bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   HERO POLISH — additional floating icons + premium animations
════════════════════════════════════════════════════════════ */

/* ── New service-category floating icon animations ── */
@keyframes toolBolt {
  0%, 100% { transform: translateY(0)   rotate(-8deg) scale(1); }
  25%      { transform: translateY(-10px) rotate(-4deg) scale(1.06); }
  50%      { transform: translateY(-4px)  rotate(2deg)  scale(1); }
  75%      { transform: translateY(-12px) rotate(-3deg) scale(1.04); }
}
@keyframes toolDrop {
  0%, 100% { transform: translateY(0)   scale(1) rotate(0deg); }
  25%      { transform: translateY(-8px) scale(1.10) rotate(-5deg); }
  50%      { transform: translateY(-4px) scale(0.96) rotate(3deg); }
  75%      { transform: translateY(-12px) scale(1.08) rotate(-2deg); }
}
@keyframes toolHouse {
  0%, 100% { transform: translateY(0)   rotate(-4deg); }
  50%      { transform: translateY(-14px) rotate(4deg); }
}
@keyframes toolBell {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  8%       { transform: translateY(0) rotate(-12deg); }
  16%      { transform: translateY(0) rotate(10deg); }
  24%      { transform: translateY(0) rotate(-8deg); }
  32%      { transform: translateY(0) rotate(5deg); }
  40%, 100%{ transform: translateY(0) rotate(0deg); }
}
@keyframes toolClock {
  0%, 100% { transform: translateY(0)   scale(1); }
  50%      { transform: translateY(-10px) scale(1.08); }
}

.tool-bolt   { animation: toolBolt   4.5s ease-in-out infinite; }
.tool-drop   { animation: toolDrop   5.5s ease-in-out infinite -1s; }
.tool-house  { animation: toolHouse  7s   ease-in-out infinite -2s; }
.tool-bell   { animation: toolBell   6s   ease-in-out infinite; }
.tool-clock  { animation: toolClock  8s   ease-in-out infinite -3s; }

/* Extra sparkle variants — slower, smaller, offset */
.tool-sparkle--2 { animation: sparkleFloat 6s ease-in-out infinite -1.5s; width: 42px; height: 42px; }
.tool-sparkle--3 { animation: sparkleFloat 7s ease-in-out infinite -2.5s; width: 36px; height: 36px; }

/* ── Phone mockup — soft animated glow halo behind ── */
.hero-mockup { position: relative; }
.hero-mockup::before {
  content: '';
  position: absolute;
  inset: -36px;
  border-radius: 60px;
  background: radial-gradient(ellipse at 50% 50%,
              rgba(11,107,69,0.45) 0%,
              rgba(62,185,128,0.18) 30%,
              transparent 65%);
  filter: blur(36px);
  z-index: 0;
  animation: phoneGlowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-mockup > * { position: relative; z-index: 1; }

@keyframes phoneGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

/* ── Headline highlight — animated shimmer gradient on "$99/month" ── */
.hero h1 .highlight {
  background: linear-gradient(90deg,
              #0B6B45 0%,
              #3EB980 25%,
              #ffffff 50%,
              #3EB980 75%,
              #0B6B45 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: highlightShimmer 5s linear infinite;
  /* display: inline-block; */
}
@keyframes highlightShimmer {
  0%   { background-position: 250% 50%; }
  100% { background-position: -250% 50%; }
}

/* ── Hero badge — subtle pulse glow halo ── */
.hero-badge {
  position: relative;
  box-shadow: 0 0 0 0 rgba(11,107,69,0.45);
  animation: badgePulse 2.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(11,107,69,0.40); }
  50%      { box-shadow: 0 0 0 8px rgba(11,107,69,0); }
}

/* ── Hero feature bullets — subtle staggered fade-in on load ── */
@keyframes heroBulletIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-features li {
  animation: heroBulletIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-features li:nth-child(1) { animation-delay: 0.30s; }
.hero-features li:nth-child(2) { animation-delay: 0.40s; }
.hero-features li:nth-child(3) { animation-delay: 0.50s; }
.hero-features li:nth-child(4) { animation-delay: 0.60s; }
.hero-features li:nth-child(5) { animation-delay: 0.70s; }

/* Check-circle subtle glow */
.hero-feature-check {
  box-shadow: 0 0 16px rgba(11,107,69,0.55), 0 4px 12px rgba(11,107,69,0.35);
}

/* ── Floating cards in hero — premium hover lift + glow ── */
.floating-card {
  border: 1px solid rgba(11,107,69,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Smaller / hidden icons on mobile to avoid clutter ── */
@media (max-width: 900px) {
  .tool-bolt, .tool-drop, .tool-house, .tool-bell, .tool-clock { width: 40px; height: 40px; opacity: 0.7; }
}
@media (max-width: 600px) {
  .tool-bolt, .tool-drop, .tool-house, .tool-bell, .tool-clock,
  .tool-sparkle--2, .tool-sparkle--3 { display: none; }
  .hero-mockup::before { inset: -20px; filter: blur(24px); }
}

@media (prefers-reduced-motion: reduce) {
  .tool-bolt, .tool-drop, .tool-house, .tool-bell, .tool-clock,
  .tool-sparkle--2, .tool-sparkle--3,
  .hero-mockup::before, .hero h1 .highlight, .hero-badge,
  .hero-features li { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   UNIFIED ICON STYLING — all feature/service icon chips use
   the same Trust Blue theme for visual consistency.
   Overrides the legacy .ic-orange / .ic-blue / .ic-red colours
   that came from the taxi template.
════════════════════════════════════════════════════════════ */

/* All icon backgrounds → same soft blue gradient chip */
.feature-icon.ic-orange,
.feature-icon.ic-blue,
.feature-icon.ic-red,
.service-item-icon.ic-orange,
.service-item-icon.ic-blue,
.service-item-icon.ic-red,
.ic-orange,
.ic-blue,
.ic-red {
  background: linear-gradient(135deg, rgba(11,107,69,0.16) 0%, rgba(11,107,69,0.05) 100%);
  border: 1px solid rgba(11,107,69,0.26);
}

/* All SVG glyphs inside those chips → Trust Blue */
.ic-orange svg,
.ic-blue svg,
.ic-red svg,
.ic-orange svg path,
.ic-blue svg path,
.ic-red svg path,
.ic-orange svg circle,
.ic-blue svg circle,
.ic-red svg circle,
.feature-icon svg,
.feature-icon svg path,
.feature-icon svg circle,
.service-item-icon svg,
.service-item-icon svg path,
.service-item-icon svg circle {
  fill: #0B6B45;
}

/* Slight hover lift for the chip itself (so cards still feel interactive) */
.feature-card:hover .feature-icon,
.service-item:hover .service-item-icon {
  background: linear-gradient(135deg, rgba(11,107,69,0.26) 0%, rgba(11,107,69,0.10) 100%);
  border-color: rgba(11,107,69,0.42);
  box-shadow: 0 8px 22px rgba(11,107,69,0.28);
}

/* ════════════════════════════════════════════════════════════
   PRICING SECTION — unified premium card styling
   Fixes:
   1. Left-card check icons were dark/invisible → now Trust Blue with white check
   2. pi-orange (dark) vs pi-white (light) inconsistency → unified blue chip
   3. Featured icon background lifted
   4. Most Popular badge uses SVG star (emoji rendering issues fixed)
════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   HERO HEIGHT FIX + RIGHT-SIDE REDESIGN
   - Hero now content-driven (was too tall)
   - Right side: smaller phone, premium glow ring, better cards
   - Responsive scaling on every breakpoint
════════════════════════════════════════════════════════════ */

/* ── Hero: content-driven height (not full-viewport) ── */
.hero {
  padding: 88px 0 80px;
  align-items: center;
  min-height: 0;
}

/* ── Right side container ── */
.hero-visual {
  position: relative;
  padding: 20px 0;
}

/* ── Smaller phone mockup so the hero stays compact ── */
.hero-mockup {
  max-width: 280px;
  margin: 0 auto;
}

/* Soft decorative ring behind the phone */
.hero-mockup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(62,185,128,0.25);
  background: radial-gradient(ellipse at center,
    rgba(11,107,69,0.10) 0%,
    rgba(11,107,69,0.04) 35%,
    transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: heroRingPulse 8s ease-in-out infinite;
}
@keyframes heroRingPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1)   rotate(0deg); opacity: 0.7; }
  50%      { transform: translate(-50%, -50%) scale(1.06) rotate(180deg); opacity: 1; }
}

/* Smaller phone frame padding to match the reduced size */
.phone-frame {
  border-radius: 38px;
  padding: 10px;
}
.phone-notch {
  width: 90px;
  height: 18px;
  top: 10px;
}
.phone-screen { border-radius: 28px; }

/* ── Polished floating cards ── */
.floating-card {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.32),
    0 0 0 1px rgba(11,107,69,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
  padding: 10px 14px;
  border-radius: 14px;
  z-index: 4;
}
.floating-card .fc-label {
  font-size: 0.78rem;
  font-weight: 700;
}
.floating-card .fc-sub {
  font-size: 0.68rem;
  color: var(--text-mid);
}

/* Reposition cards closer to the phone — feel attached, not floating away */
.floating-card.card-1 { top: 10%; left: -32px; }
.floating-card.card-2 { bottom: 22%; right: -36px; }

/* ── New "Live Booking" stat badge attached to phone (third visual element) ── */
.hero-mockup::before {
  content: '';
}
/* The badge is created via the new ::after on hero-visual */
.hero-visual::after {
  content: '5,000+ bookings · live';
  position: absolute;
  top: 18px;
  right: -8px;
  background: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 14px 7px 26px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(11,107,69,0.45),
              inset 0 1px 0 rgba(255,255,255,0.25);
  z-index: 5;
  white-space: nowrap;
  animation: heroBadgeFloat 5s ease-in-out infinite;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 100px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 10px rgba(74,222,128,0.9),
              0 0 0 4px rgba(74,222,128,0.2);
  z-index: 6;
  animation: liveDotPulse 1.4s ease-in-out infinite;
}
@keyframes liveDotPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.75; }
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── RESPONSIVE: tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero { padding: 80px 0 72px; }
  .hero-mockup { max-width: 260px; }
  .hero-mockup::after { width: 340px; height: 340px; }
  .floating-card.card-1 { left: -18px; }
  .floating-card.card-2 { right: -22px; }
  .hero-visual::after { top: 12px; right: -4px; font-size: 0.65rem; padding: 6px 12px 6px 22px; }
  .hero-visual::before { top: 22px; right: 88px; width: 7px; height: 7px; }
}

/* ── RESPONSIVE: tablet/small desktop (≤900px) ── */
@media (max-width: 900px) {
  .hero { padding: 80px 0 80px; }
  .hero-visual { padding: 12px 0; }
  .hero-mockup { max-width: 260px; }
  .hero-mockup::after { width: 320px; height: 320px; }
  .hero-visual::after,
  .hero-visual::before { display: none; } /* Hide the live badge on smaller screens */
}

/* ── RESPONSIVE: mobile (≤768px) ── */
@media (max-width: 768px) {
  .hero { padding: 70px 0 70px; }
  .hero-visual { padding: 8px 0; }
  .hero-mockup { max-width: 220px; }
  .hero-mockup::after { width: 280px; height: 280px; }
  .floating-card.card-1 { top: 2%; left: -8px; }
  .floating-card.card-2 { bottom: 18%; right: -8px; }
  .floating-card { padding: 8px 12px; }
  .floating-card .fc-label { font-size: 0.72rem; }
  .floating-card .fc-sub { font-size: 0.62rem; }
}

/* ── RESPONSIVE: small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero { padding: 60px 0 60px; }
  .hero-mockup { max-width: 200px; }
  .hero-mockup::after { width: 240px; height: 240px; }
  .floating-card { display: none; } /* clean phone-only view on small screens */
}

/* ── Pricing icon at top of each card → unified blue chip ── */
.pi-orange,
.pi-white,
.pricing-card .pricing-icon {
  background: linear-gradient(135deg, rgba(11,107,69,0.20) 0%, rgba(11,107,69,0.06) 100%);
  border: 1px solid rgba(11,107,69,0.40);
  box-shadow: 0 6px 18px rgba(11,107,69,0.18);
}

.pricing-icon svg,
.pricing-icon svg path {
  fill: #0B6B45;
}

/* Featured card → slightly brighter chip + white glyph for contrast */
.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, rgba(11,107,69,0.35) 0%, rgba(11,107,69,0.12) 100%);
  border-color: rgba(11,107,69,0.55);
  box-shadow: 0 6px 22px rgba(11,107,69,0.30);
}
.pricing-card.featured .pricing-icon svg,
.pricing-card.featured .pricing-icon svg path {
  fill: #ffffff;
}

/* ── Feature-list check icons → vivid Trust Blue circle + white check ── */
.check-icon {
  background: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
  width: 22px;
  height: 22px;
  box-shadow: 0 4px 10px rgba(11,107,69,0.32);
  flex-shrink: 0;
}
.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 2.8;
  fill: none;
}

/* Featured card check icons → same style, brighter glow */
.pricing-card.featured .check-icon {
  background: linear-gradient(135deg, #3EB980 0%, #0B6B45 100%);
  box-shadow: 0 4px 12px rgba(11,107,69,0.55);
}
.pricing-card.featured .check-icon svg {
  stroke: #ffffff;
}

/* ── "Best for" callout box icon ── */
.pricing-plus svg,
.pricing-plus svg path {
  fill: #0B6B45;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-plus svg,
.pricing-card.featured .pricing-plus svg path {
  fill: #3EB980;
}

/* ── Most Popular badge → solid gradient + clean star ── */
.pricing-badge {
  background: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
  color: #ffffff;
  padding: 7px 18px 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(11,107,69,0.50);
  border: 1px solid rgba(62,185,128,0.6);
}
.pricing-badge svg {
  width: 13px;
  height: 13px;
  fill: #FFE04D;
  flex-shrink: 0;
}

/* ── Non-featured card → slight border/shadow upgrade ── */
.pricing-card:not(.featured) {
  border-color: rgba(220,230,242,1);
  box-shadow: 0 8px 28px rgba(15,26,42,0.06);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.pricing-card:not(.featured):hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(11,107,69,0.16);
  border-color: rgba(11,107,69,0.30);
}

/* ── Price amount → subtle gradient text on the big number ── */
.price-amount {
  background: linear-gradient(135deg, #0F1A2A 0%, #2A4163 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card.featured .price-amount {
  background:#ffffff ;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ════════════════════════════════════════════════════════════
   FLOATING ELEMENTS AROUND HERO PHONE — added elements
   - Existing AI Matched + Smart Booking cards (icon themed)
   - NEW: Star rating mini-pill (top-center)
   - NEW: Provider avatars stack (mid-right)
   - NEW: Notification mini-pill with red dot (top-right area)
════════════════════════════════════════════════════════════ */

/* ── Themed icon variants for the existing fc-icon containers ── */
.fc-icon--teal-dark {
  background: linear-gradient(135deg, #071A12 0%, #143834 100%);
  border: 1px solid rgba(11,107,69,0.30);
}
.fc-icon--teal-dark svg { fill: #3EB980; }

.fc-icon--teal-soft {
  background: linear-gradient(135deg, rgba(11,107,69,0.20) 0%, rgba(11,107,69,0.08) 100%);
  border: 1px solid rgba(11,107,69,0.30);
}
.fc-icon--teal-soft svg { fill: #0B6B45; }

/* ── Shared mini floating element styling ── */
.floating-mini {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.32),
    0 0 0 1px rgba(11,107,69,0.10),
    inset 0 1px 0 rgba(255,255,255,0.85);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}

/* ── Star rating mini-pill — top-center floating above phone ── */
.float-rating {
  top: -8px;
  left: 50%;
  transform: translateX(-90%);
  gap: 8px;
  animation: floatRating 5s ease-in-out infinite;
}
.stars-row {
  display: inline-flex;
  gap: 1px;
  color: #FFD400;
  font-size: 0.78rem;
  line-height: 1;
}
.rating-text {
  font-size: 0.72rem;
  color: var(--text-dark);
  font-weight: 600;
}
.rating-text strong { font-weight: 800; }
.rating-text span { color: var(--text-light); font-weight: 500; }
@keyframes floatRating {
  0%, 100% { transform: translateX(-90%) translateY(0); }
  50%      { transform: translateX(-90%) translateY(-6px); }
}

/* ── Provider avatars stack — mid-right of phone ── */
.float-avatars {
  top: 38%;
  right: -54px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 10px 14px;
  animation: floatAvatars 6s ease-in-out infinite -1s;
}
.avatar-stack {
  display: inline-flex;
  align-items: center;
}
.avatar {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  background: #0B6B45;
}
.avatar.a1 { background: linear-gradient(135deg, #0B6B45 0%, #085237 100%); }
.avatar.a2 { background: linear-gradient(135deg, #3EB980 0%, #0B6B45 100%); margin-left: -6px; }
.avatar.a3 { background: linear-gradient(135deg, #085237 0%, #071A12 100%); margin-left: -6px; }
.avatar-more {
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #085237 0%, #071A12 100%);
  height: 22px;
  min-width: 32px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-left: -4px;
  letter-spacing: 0.3px;
}
.avatars-label {
  font-size: 0.66rem;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.2px;
}
@keyframes floatAvatars {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
}

/* ── Notification mini-pill — top-right of phone ── */
.float-notif {
  top: 14%;
  right: -36px;
  padding: 7px 12px 7px 8px;
  animation: floatNotif 5.5s ease-in-out infinite -2s;
}
.notif-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11,107,69,0.40);
}
.notif-icon svg { width: 14px; height: 14px; fill: #fff; }
.notif-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #B8892A;
  border: 1.5px solid #fff;
  animation: notifPulse 1.5s ease-in-out infinite;
}
.notif-text {
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}
@keyframes floatNotif {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes notifPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.75; }
}

/* ── Responsive: tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .float-rating { top: -2px; transform: translateX(-85%); }
  .float-avatars { right: -36px; top: 38%; }
  .float-notif { right: -18px; top: 12%; }
}

/* ── Responsive: medium tablet (≤900px) ── */
@media (max-width: 900px) {
  .float-rating { top: 2px; transform: translateX(-50%); left: 35%; }
  .float-avatars { right: -22px; padding: 8px 11px; }
  .float-notif { right: -10px; padding: 6px 10px 6px 6px; }
  .notif-text { font-size: 0.66rem; }
  .avatars-label { font-size: 0.62rem; }
}

/* ── Responsive: mobile (≤768px) ── */
@media (max-width: 768px) {
  .floating-mini { padding: 6px 10px; border-radius: 12px; }
  .float-rating { top: -4px; transform: translateX(-50%); left: 50%; }
  .stars-row { font-size: 0.70rem; }
  .rating-text { font-size: 0.64rem; }
  .float-avatars { display: none; }
  .float-notif { top: 12%; right: -6px; }
  .notif-text { font-size: 0.64rem; }
  .notif-icon { width: 22px; height: 22px; }
  .notif-icon svg { width: 12px; height: 12px; }
}

/* ── Responsive: small mobile (≤480px) ── */
@media (max-width: 480px) {
  .float-rating, .float-notif { display: none; } /* keep phone clean on small screens */
}

@media (prefers-reduced-motion: reduce) {
  .floating-mini { animation: none; }
  .notif-dot     { animation: none; }
}


/* Compact spacing between hero text elements */
.hero-badge   { margin-bottom: 16px; }
.hero h1      { margin-bottom: 20px; }
.hero-features{ margin-bottom: 26px; gap: 10px; }
.hero-btns    { margin-top: 4px; }

/* Responsive top spacing */
@media (max-width: 1024px) {
  .hero { padding: 50px 0 64px; }
}
@media (max-width: 900px) {
  .hero { padding: 64px 0 70px; }
}
@media (max-width: 768px) {
  .hero { padding: 56px 0 60px; }
  .hero-badge { margin-bottom: 12px; font-size: 0.72rem; padding: 5px 13px; }
  .hero h1 { margin-bottom: 16px; }
  .hero-features { margin-bottom: 22px; gap: 9px; }
  .hero-features li { font-size: 0.92rem; }
}
@media (max-width: 480px) {
  .hero { padding: 50px 0 54px; }
  .hero-badge { margin-bottom: 10px; }
  .hero h1 { margin-bottom: 14px; }
  .hero-features { margin-bottom: 18px; gap: 8px; }
}


/* ════════════════════════════════════════════════════════════
   HERO LAYOUT — restored top breathing room + visible tools
   - Badge needs to clear the fixed navbar (~80px)
   - Tools made more visible via opacity boost
   - Animation refreshed so the float is obvious
════════════════════════════════════════════════════════════ */

/* Show the floating tools clearly */
.hero-tools { display: block; z-index: 1; opacity: 1; }
.hero-tools .tool { opacity: 0.85; }

/* Proper top spacing — badge clears the fixed navbar with breathing room */
.hero {
  padding: 164px 0 80px;
  align-items: center;
  min-height: 0;
}

/* Mid-tight spacing between hero text elements (not too cramped, not too loose) */
.hero-badge   { margin-bottom: 20px; }
.hero h1      { margin-bottom: 24px; }
.hero-features{ margin-bottom: 30px; gap: 12px; }
.hero-btns    { margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 1280px) {
  .hero { padding: 105px 0 75px; }
}
@media (max-width: 1024px) {
  .hero { padding: 100px 0 72px; }
}
@media (max-width: 900px) {
  .hero { padding: 110px 0 80px; }
}
@media (max-width: 768px) {
  .hero { padding: 96px 0 70px; }
  .hero-badge { margin-bottom: 14px; font-size: 0.72rem; padding: 5px 13px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-features { margin-bottom: 24px; gap: 10px; }
  .hero-features li { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-badge { margin-bottom: 12px; }
  .hero h1 { margin-bottom: 16px; }
  .hero-features { margin-bottom: 20px; gap: 9px; }
}


/* ════════════════════════════════════════════════════════════
   FLOATING TOOLS — boosted visibility against dense pattern
════════════════════════════════════════════════════════════ */
.hero-tools .tool {
  opacity: 1;
  filter: drop-shadow(0 0 22px rgba(11,107,69,0.65));
}
.hero-tools .tool svg { opacity: 0.95; }


/* ════════════════════════════════════════════════════════════
   HIDE the "5,000+ Bookings · Live" floating badge + green dot
   (Both pseudo-elements live on .hero-visual)
════════════════════════════════════════════════════════════ */
.hero-visual::before,
.hero-visual::after {
  display: none;
  content: none;
}


/* ════════════════════════════════════════════════════════════
   YELLOW ACCENTS — added to every dark-teal section so the
   key elements pop clearly on desktop AND mobile.
   Accent color: #FFD400 (warm gold) — high contrast on dark teal
════════════════════════════════════════════════════════════ */

/* ── HERO — yellow accent dot in the badge + yellow CTA hover ring ── */
.hero-badge {
  border-left: 3px solid #FFD400;
  padding-left: 18px;
}
.hero-badge::before {
  background: #FFD400;
  box-shadow: 0 0 12px rgba(255,212,0,0.65);
}

/* ── STATS CARD (dark) — yellow top accent + yellow stat dots ── */
.stats-grid::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,212,0,0.65) 20%,
    #FFD400 50%,
    rgba(255,212,0,0.65) 80%,
    transparent 100%);
  height: 3px;
}
.stat-icon {
  border-color: rgba(255,212,0,0.45);
}
.stat-meta::before {
  background: #FFD400;
  box-shadow: 0 0 10px rgba(255,212,0,0.85);
}

/* ── AI SECTION (dark) — yellow tag underline + yellow corner accent ── */
.ai-section .section-tag {
  border-left: 3px solid #FFD400;
  padding-left: 14px;
}
.ai-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD400, transparent);
  z-index: 3;
}
.ai-feature-item:hover .ai-feat-icon {
  box-shadow: 0 0 28px rgba(255,212,0,0.45);
}

/* ── SERVICES CTA BOX (dark "Stuck Between Off-The-Shelf") ── */
.services-cta-box::before {
  background: #FFD400;
  width: 60px;
  height: 4px;
}
.services-cta-box h4 {
  color: #FFD400;
}

/* ── TRUST SECTION (dark navy with marquee) ── */
.trust-tag {
  border: 1px solid rgba(255,212,0,0.55);
}
.trust-tag svg { fill: #FFD400; }
.trust-title span {
  position: relative;
}
.trust-title span::after {
  background: linear-gradient(90deg, transparent 0%, #FFD400 50%, transparent 100%);
}

/* ── CTA MIDDLE + FINAL CTA (dark) — yellow underline + yellow check marks ── */
.cta-middle h2::after {
  background: linear-gradient(90deg, transparent, #FFD400 50%, transparent);
  width: 80px;
  height: 4px;
}
.cta-middle p:last-of-type {
  /* The "✓ Fixed pricing · Full source code · ..." trust line */
  position: relative;
}

/* ── FEATURED PRICING CARD (dark) — yellow accents ── */
.pricing-card.featured::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,212,0,0.65) 25%,
    #FFD400 50%,
    rgba(255,212,0,0.65) 75%,
    transparent 100%);
  height: 3px;
}
.pricing-card.featured .pricing-plan-name {
  color: #FFD400;
}
.pricing-card.featured .pricing-badge {
  background: linear-gradient(135deg, #FFD400 0%, #CCA800 100%);
  border-color: rgba(255,212,0,0.85);
  box-shadow: 0 8px 22px rgba(255,212,0,0.55);
}
.pricing-card.featured .pricing-badge svg {
  fill: #ffffff;
}
.pricing-card.featured .check-icon {
  background: linear-gradient(135deg, #FFD400 0%, #CCA800 100%);
  box-shadow: 0 4px 12px rgba(255,212,0,0.55);
}
.pricing-card.featured .pricing-plus svg path { fill: #FFD400; }

/* ── DARK CARDS GENERIC (stats card icons, AI icons) — yellow accent on hover ── */
.stat-item:hover .stat-icon {
  border-color: rgba(255,212,0,0.85);
  box-shadow: 0 0 30px rgba(255,212,0,0.55);
}

/* ── Mobile responsive — keep yellow accents visible but slightly smaller ── */
@media (max-width: 768px) {
  .hero-badge { border-left-width: 2px; padding-left: 14px; }
  .stats-grid::before { height: 2px; }
  .ai-section .section-tag { border-left-width: 2px; padding-left: 11px; }
  .services-cta-box::before { height: 3px; width: 50px; }
  .pricing-card.featured::before { height: 2px; }
  .cta-middle h2::after { height: 3px; width: 60px; }
}


/* ════════════════════════════════════════════════════════════
   Hero headline highlight → yellow shimmer
   ("Start With Just $99/month")
════════════════════════════════════════════════════════════ */
.hero h1 .highlight {
  background: linear-gradient(90deg,
    #FFD400 0%,
    #FFE04D 25%,
    #ffffff 50%,
    #FFE04D 75%,
    #FFD400 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}


/* ════════════════════════════════════════════════════════════
   Hero highlight → static yellow (no shimmer)
════════════════════════════════════════════════════════════ */
.hero h1 .highlight {
  background: linear-gradient(135deg, #FFD400 0%, #FFE04D 50%, #FFD400 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: none;
  text-shadow: none;
}


/* ════════════════════════════════════════════════════════════
   Hero highlight → solid yellow (no gradient, no animation)
════════════════════════════════════════════════════════════ */
.hero h1 .highlight {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #FFD400;
  color: #FFD400;
  animation: none;
  text-shadow: none;
}


/* ════════════════════════════════════════════════════════════
   YELLOW CTAs — every primary button sitting on a dark teal
   background switches to solid yellow with dark text for
   maximum visibility on desktop + mobile.

   On-light-bg buttons (.nav-cta on white navbar, pricing
   outline buttons on white cards) stay teal — they already
   pop fine without yellow.
════════════════════════════════════════════════════════════ */

/* HERO · Services CTA box · CTA Middle · Final CTA · Featured pricing solid */
.hero .btn-primary,
.services-cta-box .btn-primary,
.cta-middle .btn-primary,
#contact .btn-primary,
.btn-pricing-solid {
  background: #FFD400;
  color: #000000;
  /* box-shadow: 0 8px 24px rgba(255,212,0,0.40); */
  border: none;
}
.hero .btn-primary:hover,
.services-cta-box .btn-primary:hover,
.cta-middle .btn-primary:hover,
#contact .btn-primary:hover,
.btn-pricing-solid:hover {
  background: #fbff00;
  color: #000000;
  /* box-shadow: 0 16px 36px rgba(255,212,0,0.55); */
  filter: brightness(1.02);
  transform: translateY(-3px);
}

/* Arrow chip on these yellow CTAs should be dark to match the dark text */
.hero .btn-primary::after,
.services-cta-box .btn-primary::after,
.cta-middle .btn-primary::after,
#contact .btn-primary::after {
  color: #1a1a1a;
}

/* Shine sweep on yellow buttons — keep it subtle white so it reads on gold */
.hero .btn-primary::before,
.services-cta-box .btn-primary::before,
.cta-middle .btn-primary::before,
#contact .btn-primary::before,
.btn-pricing-solid::before {
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
}

/* Focus state with yellow ring */
.hero .btn-primary:focus-visible,
.services-cta-box .btn-primary:focus-visible,
.cta-middle .btn-primary:focus-visible,
#contact .btn-primary:focus-visible,
.btn-pricing-solid:focus-visible {
  outline: 3px solid rgba(255,212,0,0.65);
  outline-offset: 3px;
}

/* ── btn-ghost ("Explore Features" on Final CTA dark bg) → yellow outline ── */
#contact .btn-ghost,
.cta-middle .btn-ghost {
  color: #FFD400;
  border-color: rgba(255,212,0,0.55);
}
#contact .btn-ghost:hover,
.cta-middle .btn-ghost:hover {
  background: rgba(255,212,0,0.10);
  border-color: #FFD400;
  color: #FFD400;
}
#contact .btn-ghost::after,
.cta-middle .btn-ghost::after {
  background: rgba(255,212,0,0.18);
  color: #FFD400;
}
#contact .btn-ghost:hover::after,
.cta-middle .btn-ghost:hover::after {
  background: #FFD400;
  color: #1a1a1a;
}


/* ════════════════════════════════════════════════════════════
   Header "Get Free Demo" nav-cta → solid yellow
   Higher-specificity selectors so it beats .nav-links a
   without needing
════════════════════════════════════════════════════════════ */
.nav-links a.nav-cta,
.mobile-menu a.nav-cta,
header a.nav-cta {
  background: #FFD400;
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(255,212,0,0.45);
}
.nav-links a.nav-cta::after,
.mobile-menu a.nav-cta::after,
header a.nav-cta::after {
  background: #1a1a1a;
  color: #FFD400;
}
.nav-links a.nav-cta:hover,
.mobile-menu a.nav-cta:hover,
header a.nav-cta:hover {
  background: #FFE04D;
  color: #1a1a1a;
  box-shadow: 0 12px 28px rgba(255,212,0,0.60);
}
.nav-links a.nav-cta:focus-visible,
header a.nav-cta:focus-visible {
  outline: 3px solid rgba(255,212,0,0.65);
  outline-offset: 3px;
}


/* ════════════════════════════════════════════════════════════
   HERO BADGE — premium yellow pill
   "CUSTOM AI HOME SERVICES APP DEVELOPMENT"
════════════════════════════════════════════════════════════ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,
    rgba(255,212,0,0.18) 0%,
    rgba(255,212,0,0.08) 100%);
  border: 1px solid rgba(255,212,0,0.45);
  border-left: 1px solid rgba(255,212,0,0.45);
  padding: 8px 18px;
  padding-left: 16px;
  border-radius: 999px;
  color: #FFE87A;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  box-shadow:
    0 6px 24px rgba(255,212,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: none;
  position: relative;
}

/* Pulsing golden dot on the left of the badge */
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD400;
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px rgba(255,212,0,0.20),
    0 0 16px rgba(255,212,0,0.85);
  animation: heroBadgeDot 1.6s ease-in-out infinite;
}

@keyframes heroBadgeDot {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(255,212,0,0.20), 0 0 16px rgba(255,212,0,0.85);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255,212,0,0), 0 0 24px rgba(255,212,0,1);
    transform: scale(1.18);
  }
}

/* Mobile sizing */
@media (max-width: 768px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 7px 14px;
    padding-left: 12px;
    letter-spacing: 1px;
    gap: 8px;
  }
  .hero-badge::before { width: 7px; height: 7px; }
}
@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.66rem;
    padding: 6px 12px;
    padding-left: 10px;
    letter-spacing: 0.8px;
  }
}


/* ════════════════════════════════════════════════════════════
   FAQ footer CTA — "Still have a question?"
════════════════════════════════════════════════════════════ */
.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed rgba(11,107,69,0.30);
}
.faq-cta p {
  color: var(--text-mid);
  font-size: 1.02rem;
  margin: 0 0 18px;
  font-weight: 500;
}
.faq-cta .btn-primary {
  display: inline-flex;
  background: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1rem;
}
.faq-cta .btn-primary::after { color: #ffffff; }
.faq-cta .btn-primary:hover {
  background: linear-gradient(135deg, #3EB980 0%, #0B6B45 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11,107,69,0.45);
}

/* Mobile sizing */
@media (max-width: 768px) {
  .faq-cta { margin-top: 36px; padding-top: 24px; }
  .faq-cta p { font-size: 0.95rem; }
  .faq-cta .btn-primary { padding: 12px 26px; font-size: 0.95rem; }
}


/* ════════════════════════════════════════════════════════════
   FAQ — fix bottom spacing so the last bullet doesn't hug
   the bottom edge of the accordion card.
════════════════════════════════════════════════════════════ */
.faq-item[open] > .faq-answer {
  padding-bottom: 30px;
}

/* Add slight breathing room below the last <ul> or <p> inside */
.faq-answer > *:last-child {
  margin-bottom: 4px;
}
.faq-answer ul li:last-child {
  margin-bottom: 0;
}
.faq-answer ul {
  margin-bottom: 6px;
}

/* Mobile — also tighten but keep enough room */
@media (max-width: 768px) {
  .faq-item[open] > .faq-answer { padding-bottom: 26px; }
}


/* ════════════════════════════════════════════════════════════
   FAQ — DYNAMIC HEIGHT (content-driven, no fixed max-height)
   Uses CSS grid `0fr → 1fr` trick to animate to the natural
   height of the content — no matter how long the answer.
   Supported in Chrome 117+, Firefox 117+, Safari 17.1+
════════════════════════════════════════════════════════════ */

.faq-item > .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;
  height: auto;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top      0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom   0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity          0.3s ease;
}

/* Inner content must allow itself to shrink for grid to work */
.faq-item > .faq-answer > * {
  min-height: 0;
  overflow: hidden;
}

/* OPEN state — grid row expands to actual content height */
.faq-item[open] > .faq-answer {
  grid-template-rows: 1fr;
  max-height: none;
  padding-top: 4px;
  padding-bottom: 30px;
  opacity: 1;
}

/* When the animation finishes, allow overflow so dropdowns / tooltips
   inside the answer aren't clipped (defensive) */
.faq-item[open] > .faq-answer > * {
  overflow: visible;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-item > .faq-answer { padding-left: 20px; padding-right: 20px; }
  .faq-item[open] > .faq-answer { padding-bottom: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}


/* ════════════════════════════════════════════════════════════
   FAQ — robust dynamic height + proper 4-side spacing
   Switches from grid-rows trick (which overlapped <p> + <ul>)
   to a reliable max-height technique with generous ceiling.
════════════════════════════════════════════════════════════ */

.faq-item > .faq-answer {
  display: block;          /* NOT grid — block layout flows naturally */
  grid-template-rows: none;
  height: auto;
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;         /* horizontal padding always present */
  opacity: 0;
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* Reset child overrides from the previous grid approach */
.faq-item > .faq-answer > * {
  min-height: auto;
  overflow: visible;
}

/* OPEN state — large max-height ceiling accommodates any content */
.faq-item[open] > .faq-answer {
  grid-template-rows: none;
  max-height: 2200px;
  padding-top: 18px;       /* top spacing */
  padding-bottom: 28px;    /* bottom spacing */
  opacity: 1;
}

/* ── Inner element spacing (paragraph, lists, etc.) ── */
.faq-answer > p {
  margin: 0 0 14px;
  line-height: 1.65;
}
.faq-answer > p:last-child { margin-bottom: 0; }

.faq-answer > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-answer > ul + p,
.faq-answer > p + ul { margin-top: 14px; }

/* Bullet dot alignment + breathing room */
.faq-answer ul li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,107,69,0.18);
}

/* ── Mobile sizing ── */
@media (max-width: 768px) {
  .faq-item > .faq-answer { padding-left: 20px; padding-right: 20px; }
  .faq-item[open] > .faq-answer { padding-top: 14px; padding-bottom: 24px; }
  .faq-answer ul li { font-size: 0.92rem; padding-left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}


/* ════════════════════════════════════════════════════════════
   FAQ — FINAL fix (defeats main.js inline height)
   common-js/main.js sets style="height: XXpx" on .faq-answer
   which clips content. Our page JS strips that style; this CSS
   provides a pure max-height transition that handles any content.
════════════════════════════════════════════════════════════ */

.faq-item > .faq-answer {
  display: block;
  height: auto;              /* page JS strips any inline style.height */
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  opacity: 0;
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.faq-item[open] > .faq-answer {
  max-height: 3000px;        /* generous ceiling for any FAQ */
  padding-top:0px;
  padding-bottom:16px;
  opacity: 1;
}

.faq-item > .faq-answer > * {
  min-height: auto;
  overflow: visible;
}

@media (max-width: 768px) {
  .faq-item > .faq-answer { padding-left: 20px; padding-right: 20px; }
  .faq-item[open] > .faq-answer { padding-top: 16px; padding-bottom: 26px; }
}


/* ════════════════════════════════════════════════════════════
   Accordion (+ / −) icons — pixel-perfect centering via CSS
   shapes (no font glyphs). Two thin bars drawn with linear-
   gradient: horizontal + vertical for "+", just horizontal
   for "−". Always centered, every browser, every zoom level.
════════════════════════════════════════════════════════════ */

.acc-btn::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(11,107,69,0.10);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 2px, 2px 12px;
  background-repeat: no-repeat;
  background-position: center, center;
  color: var(--primary);
  flex-shrink: 0;
  transform: rotate(0deg);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  /* Cancel any text rendering left over from the old "+" character */
  font-size: 0;
  line-height: 0;
}

.acc-btn.open::after {
  content: '';
  background-color: var(--primary);
  /* Only the horizontal bar — that visually becomes "−" */
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 12px 2px;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11,107,69,0.40);
  transform: rotate(180deg); /* visual flourish on open */
}

/* Mobile sizing — keep shapes proportional */
@media (max-width: 768px) {
  .acc-btn::after {
    width: 26px;
    height: 26px;
    background-size: 10px 2px, 2px 10px;
  }
  .acc-btn.open::after {
    background-size: 10px 2px;
  }
}


/* ════════════════════════════════════════════════════════════
   FLOATING TOOLS — BRIGHT EMBOSSED COLORS
   The inline rgba(...,0.5) fills on SVG paths made them dull.
   Force solid bright colors with multi-layer drop-shadows for
   a 3D embossed glow look that pops against the dark teal hero.
════════════════════════════════════════════════════════════ */

/* Default: bright YELLOW for trade tools + service icons */
.hero-tools .tool svg,
.hero-tools .tool svg path {
  fill: #FFD400;
  opacity: 1;
}

/* CYAN-TEAL for "service indicators" — visual variety */
.hero-tools .tool-drop svg,
.hero-tools .tool-drop svg path,
.hero-tools .tool-house svg,
.hero-tools .tool-house svg path,
.hero-tools .tool-gear svg,
.hero-tools .tool-gear svg path,
.hero-tools .tool-bell svg,
.hero-tools .tool-bell svg path,
.hero-tools .tool-paintbrush svg,
.hero-tools .tool-paintbrush svg path,
.hero-tools .tool-broom svg,
.hero-tools .tool-broom svg path {
  fill: #3EB980;
}

/* SPARKLES — bright gold */
.hero-tools .tool-sparkle svg,
.hero-tools .tool-sparkle svg path {
  fill: #FFE87A;
}

/* CLOCK — bright cyan */
.hero-tools .tool-clock svg,
.hero-tools .tool-clock svg path {
  fill: #3EB980;
}

/* ── Embossed glow shadows ── */
/* Yellow tools: warm gold glow + dark drop shadow underneath */
.hero-tools .tool {
  filter:
    drop-shadow(0 0 16px rgba(255,212,0,0.65))
    drop-shadow(0 2px 4px rgba(0,0,0,0.45));
  opacity: 1;
}

/* Cyan tools: matching teal glow */
.hero-tools .tool-drop,
.hero-tools .tool-house,
.hero-tools .tool-gear,
.hero-tools .tool-bell,
.hero-tools .tool-paintbrush,
.hero-tools .tool-broom,
.hero-tools .tool-clock {
  filter:
    drop-shadow(0 0 18px rgba(62,185,128,0.75))
    drop-shadow(0 2px 4px rgba(0,0,0,0.45));
}

/* Sparkles — soft golden bloom */
.hero-tools .tool-sparkle {
  filter:
    drop-shadow(0 0 20px rgba(255,224,77,0.80))
    drop-shadow(0 0 6px rgba(255,212,0,0.40));
}


/* ════════════════════════════════════════════════════════════
   LEAD MODAL — left side teal overlay on worker image
   - Replaces the brown overlay with a brand-matching teal one
   - Image stays in HTML inline style for easy swap
   - Mobile: image becomes top banner above the form
════════════════════════════════════════════════════════════ */

.lead-modal-left {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.lead-modal-left::before {
  background:
    linear-gradient(160deg,
      rgba(10, 36, 34, 0.88) 0%,
      rgba(31, 140, 136, 0.72) 40%,
      rgba(10, 36, 34, 0.90) 100%);
  mix-blend-mode: normal;
}

/* Subtle pattern texture on top of overlay for extra premium feel */
.lead-modal-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='180' viewBox='0 0 200 180'%3E%3Cg fill='none' stroke='%233EB980' stroke-opacity='0.12' stroke-width='1'%3E%3Cpath d='M 30,80 L 60,52 L 90,80 L 90,140 L 30,140 Z'/%3E%3Cpath d='M 120,90 L 150,62 L 180,90 L 180,150 L 120,150 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 180px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.lead-modal-left > div { z-index: 2; }

/* Heading + paragraph styled to read clearly on teal overlay */
.lead-modal-left h3 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.30);
}
.lead-modal-left p {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

/* Small accent bar above the heading (yellow brand accent) */
.lead-modal-left h3 {
  position: relative;
}
.lead-modal-left h3::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FFD400 0%, #FFE04D 100%);
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 0 12px rgba(255,212,0,0.55);
}

/* ── Mobile: keep the image visible as a top banner (instead of hiding) ── */
@media (max-width: 767px) {
  .lead-modal-card {
    flex-direction: column;
    grid-template-rows: auto auto 1fr;
  }
  .lead-modal-left {
    display: flex;
    width: 100%;
    min-height: 160px;
    padding: 24px 22px;
    grid-row: 1 / 2;
  }
  .lead-modal-left h3 {
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 6px;
  }
  .lead-modal-left h3::before {
    width: 32px;
    height: 2px;
    margin-bottom: 10px;
  }
  .lead-modal-left p {
    font-size: 12.5px;
    line-height: 1.5;
  }
  .lead-modal-left .modal-logo { height: 38px; }
  .lead-modal-close-btn {
    grid-row: 2 / 3;
  }
  .lead-modal-right {
    grid-row: 3 / 4;
  }
}

/* Tiny screens — keep the banner but minimal */
@media (max-width: 480px) {
  .lead-modal-left {
    min-height: 130px;
    padding: 18px 18px;
  }
  .lead-modal-left h3 { font-size: 16px; padding-top: 12px; }
  .lead-modal-left p { display: none; } /* hide description on tiny screens */
}


/* ════════════════════════════════════════════════════════════
   LEAD MODAL — STRONGER teal tint
   The previous overlay was too transparent; the background
   image dominated. Now the teal is dominant with the image
   peeking through as texture.
════════════════════════════════════════════════════════════ */


/* Mix mode for richer teal — image shows through as texture */
.lead-modal-left {
  background-color: #071A12;            /* fallback if image fails */
  background-blend-mode: multiply;       /* tints the image teal */
}

/* Boost the house pattern overlay so it reads on the strong teal */
.lead-modal-left::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='180' viewBox='0 0 200 180'%3E%3Cg fill='none' stroke='%233EB980' stroke-opacity='0.22' stroke-width='1.2'%3E%3Cpath d='M 30,80 L 60,52 L 90,80 L 90,140 L 30,140 Z'/%3E%3Cpath d='M 120,90 L 150,62 L 180,90 L 180,150 L 120,150 Z'/%3E%3C/g%3E%3Cg fill='rgba(62,185,128,0.15)'%3E%3Crect x='52' y='98' width='12' height='28'/%3E%3Crect x='142' y='110' width='14' height='30'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

/* Logo + text — strong white for max readability on teal */
.lead-modal-left .modal-logo {
  filter: brightness(0) invert(1);   /* white logo regardless of source */
}
.lead-modal-left h3 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.lead-modal-left p {
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 6px rgba(0,0,0,0.30);
}


/* ════════════════════════════════════════════════════════════
   LEAD MODAL RESPONSIVE — match the taxi page exactly
   - ≤767px : left image hidden, form takes full width
   - ≤480px / ≤360px : padding tightens progressively
   - Grid layout pulls close button into its own row above the form
════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  .lead-modal-overlay {
    padding: 12px;
    align-items: center;
  }
  .lead-modal-card {
    flex-direction: column;
    max-height: calc(100svh - 24px);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
  }
  /* Left image fully hidden on mobile (matches taxi page exactly) */
  .lead-modal-left {
    display: none;
    width: 100%;
    min-height: 0;
    padding: 0;
  }
  .lead-modal-left::before,
  .lead-modal-left::after { display: none; }

  /* Close button sits in row 1 above the scrollable form */
  .lead-modal-close-btn {
    grid-row: 1;
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    align-self: center;
    margin: 10px 10px 0 auto;
    flex-shrink: unset;
    z-index: 10;
  }

  /* Form takes the full card width */
  .lead-modal-right {
    grid-row: 2;
    flex: 1;
    min-height: 0;
    padding: 16px 20px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lead-modal-right .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .lead-modal-overlay { padding: 8px; }
  .lead-modal-card {
    border-radius: 12px;
    max-height: calc(100svh - 16px);
  }
  .lead-modal-right { padding: 12px 16px 28px; }
  .lead-modal-close-btn {
    margin: 8px 8px 0 auto;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .lead-modal-overlay { padding: 4px; }
  .lead-modal-card {
    border-radius: 10px;
    max-height: calc(100svh - 8px);
  }
  .lead-modal-right { padding: 10px 12px 24px; }
}

/* Safe area support for notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .lead-modal-right {
    padding-bottom: max(36px, calc(env(safe-area-inset-bottom) + 20px));
  }
  @media (max-width: 767px) {
    .lead-modal-right { padding-bottom: max(32px, calc(env(safe-area-inset-bottom) + 16px)); }
  }
  @media (max-width: 480px) {
    .lead-modal-right { padding-bottom: max(28px, calc(env(safe-area-inset-bottom) + 12px)); }
  }
}


/* ════════════════════════════════════════════════════════════
   MOVED FROM index.html INLINE <style> BLOCKS
════════════════════════════════════════════════════════════ */


/* ───── From inline <style> block #1 ───── */
/* AILancers brand logo */
    .logo.ai-brand{display:inline-flex;align-items:center;gap:10px;text-decoration:none;line-height:1;}
    .ai-brand-mark{display:inline-flex;align-items:center;justify-content:center;width:40px;height:34px;flex-shrink:0;}
    .ai-brand-mark svg{width:100%;height:100%;display:block;}
    .ai-brand-text{font-size:1.4rem;font-weight:800;color:var(--text-dark,#071A12);letter-spacing:-0.5px;line-height:1;}
    .ai-brand-text span{color:var(--primary,#0B6B45);}
    @media(max-width:768px){.ai-brand-mark{width:34px;height:28px;}.ai-brand-text{font-size:1.15rem;}}
    @media(max-width:480px){.logo.ai-brand{gap:8px;}.ai-brand-mark{width:30px;height:26px;}.ai-brand-text{font-size:1.05rem;letter-spacing:-0.3px;}}

    /* Industries grid */
    .industries-section{padding:80px 0;background:var(--white);}
    .industries-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;margin-top:48px;}
    .industry-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:12px 10px 16px;text-align:center;transition:box-shadow 0.2s,transform 0.2s,border-color 0.2s;cursor:default;}
    .industry-card:hover{box-shadow:0 10px 30px rgba(15,26,26,0.10);transform:translateY(-4px);border-color:var(--primary);}
    .industry-card img{width:100%;border-radius:10px;object-fit:cover;aspect-ratio:1;border:1px solid #E6F1EB;}
    .industry-card p{font-size:0.88rem;font-weight:600;color:var(--text-dark);margin-top:10px;}

    /* ── Feature tabs section ── */
    .tabs-section { background: var(--light-bg); padding: 80px 0; position: relative; overflow: hidden; }
    .tabs-section::before {
      content:''; position:absolute; top:-100px; right:-100px;
      width:400px; height:400px; border-radius:50%;
      background: radial-gradient(circle, rgba(11,107,69,0.10) 0%, transparent 60%);
      pointer-events:none;
    }
    .tabs-section::after {
      content:''; position:absolute; bottom:-80px; left:-80px;
      width:340px; height:340px; border-radius:50%;
      background: radial-gradient(circle, rgba(62,185,128,0.08) 0%, transparent 60%);
      pointer-events:none;
    }
    .tabs-section .container { position: relative; z-index: 1; }

    /* Tabs nav — white pill with shadow */
    .tabs-nav {
      display: inline-flex;
      background: #ffffff;
      border-radius: 999px;
      padding: 6px;
      gap: 4px;
      margin-bottom: 52px;
      box-shadow: 0 10px 30px rgba(15,26,42,0.10), inset 0 0 0 1px rgba(11,107,69,0.10);
    }
    .tab-btn {
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 12px 26px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-mid);
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .tab-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
    .tab-btn:hover:not(.active) { color: var(--primary); background: rgba(11,107,69,0.06); }
    .tab-btn.active {
      background: linear-gradient(135deg, var(--primary) 0%, #085237 100%);
      color: #ffffff;
      box-shadow: 0 8px 22px rgba(11,107,69,0.42);
      transform: translateY(-1px);
    }

    /* Tab pane fade-in */
    .tab-pane { display: none; }
    .tab-pane.active { display: block; animation: tabPaneIn 0.45s cubic-bezier(0.16,1,0.3,1); }
    @keyframes tabPaneIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    /* Tab grid layout */
    .tab-layout {
      display: grid;
      grid-template-columns: 1fr 320px 1fr;
      gap: 32px;
      align-items: center;
    }

    /* ── Accordion cards ── */
    .acc-card {
      background: #ffffff;
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      border: 1px solid rgba(220,230,242,0.7);
      box-shadow: 0 2px 8px rgba(15,26,42,0.04);
      transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
      position: relative;
    }
    .acc-card:hover {
      box-shadow: 0 12px 28px rgba(15,26,42,0.10);
      transform: translateY(-2px);
      border-color: rgba(11,107,69,0.22);
    }
    /* Open state — left accent bar + subtle blue background */
    .acc-card:has(.acc-btn.open) {
      border-color: rgba(11,107,69,0.32);
      box-shadow: 0 10px 28px rgba(11,107,69,0.14);
      background: linear-gradient(180deg, #ffffff 0%, #F4FAFE 100%);
      transform: translateY(-2px);
    }
    .acc-card:has(.acc-btn.open)::before {
      content: '';
      position: absolute;
      top: 14px; bottom: 14px; left: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--primary) 0%, #3EB980 100%);
      border-radius: 0 3px 3px 0;
    }

    .acc-btn {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 18px 20px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      font-family: inherit;
      transition: color 0.25s ease;
      line-height: 1.4;
    }
    .acc-btn:hover { color: var(--primary); }
    .acc-btn.open { color: var(--primary); }

    /* Plus/Minus chip indicator */
    .acc-btn::after {
      content: "+";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background: rgba(11,107,69,0.10);
      color: var(--primary);
      border-radius: 50%;
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .acc-btn.open::after {
      content: "\2212";
      background: var(--primary);
      color: #ffffff;
      transform: rotate(180deg);
      box-shadow: 0 4px 12px rgba(11,107,69,0.40);
    }

    .acc-body {
      display: none;
      padding: 0 20px 18px;
      font-size: 0.90rem;
      color: var(--text-mid);
      line-height: 1.7;
    }
    .acc-body.show { display: block; animation: accBodyIn 0.3s ease; }
    @keyframes accBodyIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

    /* ── Center area with animated showcase ── */
    .tab-center-img {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      position: relative;
      padding-top: 8px;
    }
    /* App-interface image inside the tabs (replaces the animated showcase) */
    .tab-app-img {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width:280px;
      height: auto;
      display: block;
      border-radius: 26px;
      /* box-shadow: 0 24px 55px rgba(0,0,0,0.26); */
    }
    /* Gentle floating animation on the app screen (additive — keeps the base rule above untouched) */
    .tab-app-img { animation: tabScreenFloat 6s ease-in-out infinite; }
    @keyframes tabScreenFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-14px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .tab-app-img { animation: none; }
    }
    .tab-center-img::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(11,107,69,0.22) 0%, rgba(11,107,69,0.06) 40%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    /* ── App showcase card (replaces broken image) ── */
    .app-showcase {
      width: 100%;
      max-width: 300px;
      height: 380px;
      position: relative;
      background:
        radial-gradient(circle at 50% 40%, rgba(11,107,69,0.20) 0%, transparent 60%),
        linear-gradient(160deg, #06180F 0%, #0A5638 50%, #07231A 100%);
      border-radius: 28px;
      overflow: hidden;
      box-shadow:
        0 30px 60px rgba(15,26,42,0.30),
        0 0 0 1px rgba(11,107,69,0.20),
        inset 0 1px 0 rgba(255,255,255,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      animation: showcaseFloat 6s ease-in-out infinite;
    }
    @keyframes showcaseFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    /* Faint house pattern overlay */
    .app-showcase::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='160' viewBox='0 0 180 160'%3E%3Cg fill='none' stroke='%230B6B45' stroke-opacity='0.10' stroke-width='1'%3E%3Cpath d='M 20,50 L 42,30 L 64,50 L 64,90 L 20,90 Z'/%3E%3Cpath d='M 110,70 L 138,46 L 166,70 L 166,120 L 110,120 Z'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 180px 160px;
      pointer-events: none;
      opacity: 0.6;
    }

    /* Pulse rings expanding from centre */
    .app-showcase-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 2px solid rgba(11,107,69,0.55);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: ringPulse 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
      z-index: 1;
    }
    .app-showcase-ring--1 { animation-delay: 0s; }
    .app-showcase-ring--2 { animation-delay: 1.2s; }
    .app-showcase-ring--3 { animation-delay: 2.4s; }
    @keyframes ringPulse {
      0%   { width: 100px; height: 100px; opacity: 0.75; border-width: 2px; }
      100% { width: 280px; height: 280px; opacity: 0; border-width: 1px; }
    }

    /* Central glowing core with the tab's primary icon */
    .app-showcase-core {
      position: relative;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0B6B45 0%, #085237 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 0 50px rgba(11,107,69,0.70),
        0 12px 30px rgba(11,107,69,0.40),
        inset 0 2px 0 rgba(255,255,255,0.25);
      z-index: 3;
      animation: corePulse 3s ease-in-out infinite;
    }
    @keyframes corePulse {
      0%, 100% { box-shadow: 0 0 50px rgba(11,107,69,0.70), 0 12px 30px rgba(11,107,69,0.40), inset 0 2px 0 rgba(255,255,255,0.25); }
      50%      { box-shadow: 0 0 80px rgba(11,107,69,0.95), 0 12px 40px rgba(11,107,69,0.55), inset 0 2px 0 rgba(255,255,255,0.30); }
    }
    .app-showcase-core svg {
      width: 52px;
      height: 52px;
      fill: #ffffff;
    }

    /* Floating feature icons around the core */
    .orbit-icon {
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(11,107,69,0.40);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3EB980;
      z-index: 2;
      box-shadow: 0 8px 20px rgba(8,17,31,0.30);
    }
    .orbit-icon svg { width: 22px; height: 22px; fill: currentColor; }

    .orbit-icon--tl { top: 36px; left: 24px;  animation: orbitFloat1 4.5s ease-in-out infinite; }
    .orbit-icon--tr { top: 46px; right: 22px; animation: orbitFloat2 5s   ease-in-out infinite; }
    .orbit-icon--bl { bottom: 72px; left: 28px; animation: orbitFloat3 5.5s ease-in-out infinite; }
    .orbit-icon--br { bottom: 64px; right: 22px; animation: orbitFloat4 4.8s ease-in-out infinite; }

    @keyframes orbitFloat1 {
      0%, 100% { transform: translateY(0)   rotate(-4deg); }
      50%      { transform: translateY(-12px) rotate(4deg); }
    }
    @keyframes orbitFloat2 {
      0%, 100% { transform: translateY(0)   rotate(4deg); }
      50%      { transform: translateY(-10px) rotate(-4deg); }
    }
    @keyframes orbitFloat3 {
      0%, 100% { transform: translateY(0)   rotate(-3deg); }
      50%      { transform: translateY(-14px) rotate(3deg); }
    }
    @keyframes orbitFloat4 {
      0%, 100% { transform: translateY(0)   rotate(3deg); }
      50%      { transform: translateY(-11px) rotate(-3deg); }
    }

    /* Bottom label inside the showcase */
    .app-showcase-label {
      position: absolute;
      bottom: 26px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.85);
      font-size: 0.80rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 6px 16px;
      background: rgba(11,107,69,0.15);
      border: 1px solid rgba(11,107,69,0.35);
      border-radius: 999px;
      z-index: 3;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      white-space: nowrap;
    }

    @media (prefers-reduced-motion: reduce) {
      .app-showcase,
      .app-showcase-core,
      .app-showcase-ring,
      .orbit-icon { animation: none; }
    }

    /* Tech stack */
    .tech-section{padding:70px 0;background:var(--white);}
    .tech-components{display:flex;justify-content:center;gap:40px;flex-wrap:wrap;margin-top:40px;}
    .tech-box{background:radial-gradient(58% 58% at 50% 42%,#fff 53%,#f4f4f4 100%);width:140px;height:140px;border-radius:24px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 16px rgba(0,0,0,0.07);transition:transform 0.2s,box-shadow 0.2s;}
    .tech-box:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,0.12);}
    .tech-box img{height:60px;width:auto;}

    @media(max-width:1180px){
      .tab-layout{ grid-template-columns: 1fr 280px 1fr; gap: 24px; }
      .app-showcase{ max-width: 260px; height: 340px; }
      .app-showcase-core{ width: 100px; height: 100px; }
      .app-showcase-core svg{ width: 46px; height: 46px; }
      .tab-center-img::before{ width: 360px; height: 360px; }
    }
    @media(max-width:1024px){
      .industries-grid{ grid-template-columns: repeat(3,1fr); }
      .tab-layout{
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "img img" "left right";
        gap: 28px;
      }
      .tab-center-img{ grid-area: img; margin-bottom: 8px; }
      .app-showcase{ max-width: 280px; height: 360px; }
      .tab-center-img::before{ width: 360px; height: 360px; }
      .tab-layout > div:nth-child(1){ grid-area: left; }
      .tab-layout > div:nth-child(3){ grid-area: right; }
    }
    @media(max-width:768px){
      .industries-grid{ grid-template-columns: repeat(2,1fr); }
      .tabs-section{ padding: 60px 0; }
      .tabs-nav{
        width: 100%;
        flex-direction: column;
        border-radius: 16px;
        padding: 6px;
        margin-bottom: 32px;
      }
      .tab-btn{
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
      }
      .tab-layout{
        grid-template-columns: 1fr;
        grid-template-areas: "img" "left" "right";
        gap: 20px;
      }
      .tab-center-img{ grid-area: img; }
      .app-showcase{ max-width: 260px; height: 320px; border-radius: 24px; }
      .app-showcase-core{ width: 92px; height: 92px; }
      .app-showcase-core svg{ width: 42px; height: 42px; }
      .orbit-icon{ width: 42px; height: 42px; border-radius: 12px; }
      .orbit-icon svg{ width: 20px; height: 20px; }
      .orbit-icon--tl{ top: 28px; left: 18px; }
      .orbit-icon--tr{ top: 36px; right: 16px; }
      .orbit-icon--bl{ bottom: 64px; left: 22px; }
      .orbit-icon--br{ bottom: 56px; right: 16px; }
      .tab-center-img::before{ width: 300px; height: 300px; }
      .acc-card{ margin-bottom: 10px; border-radius: 12px; }
      .acc-btn{ padding: 15px 16px; font-size: 0.92rem; gap: 10px; }
      .acc-btn::after{ width: 26px; height: 26px; font-size: 15px; }
      .acc-body{ padding: 0 16px 14px; font-size: 0.86rem; }
    }
    @media(max-width:480px){
      .industries-grid{ grid-template-columns: repeat(2,1fr); gap: 12px; }
      .tech-box{ width: 110px; height: 110px; }
      .tech-box img{ height: 44px; }
      .app-showcase{ max-width: 240px; height: 300px; }
      .app-showcase-core{ width: 84px; height: 84px; }
      .app-showcase-core svg{ width: 38px; height: 38px; }
      .orbit-icon{ width: 38px; height: 38px; border-radius: 11px; }
      .orbit-icon svg{ width: 18px; height: 18px; }
      .orbit-icon--tl{ top: 24px; left: 14px; }
      .orbit-icon--tr{ top: 32px; right: 14px; }
      .orbit-icon--bl{ bottom: 60px; left: 16px; }
      .orbit-icon--br{ bottom: 54px; right: 14px; }
      .app-showcase-label{ font-size: 0.72rem; padding: 5px 12px; bottom: 20px; }
      .tab-center-img::before{ width: 260px; height: 260px; }
      .tab-btn{ font-size: 0.9rem; padding: 12px 14px; }
      .acc-card:has(.acc-btn.open)::before{ top: 12px; bottom: 12px; }
    }

/* ───── From inline <style> block #2 ───── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
  @keyframes cmModalIn2{from{opacity:0;transform:scale(0.94)}to{opacity:1;transform:scale(1)}}
  @keyframes cmSlideLeft2{from{opacity:0;transform:translateX(-28px)}to{opacity:1;transform:translateX(0)}}
  @keyframes cmFadeUp2{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
  .lead-modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.65);z-index:9999;display:none;align-items:center;justify-content:center;padding:16px;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);overflow:hidden;box-sizing:border-box;}
  .lead-modal-overlay.active{display:flex;}
  .lead-modal-card{background:#fff;border-radius:16px;overflow:hidden;max-width:1000px;width:100%;display:flex;box-shadow:0 25px 60px rgba(0,0,0,0.28);position:relative;animation:cmModalIn2 0.35s cubic-bezier(0.22,1,0.36,1) both;font-family:"Poppins",sans-serif;max-height:calc(100svh - 32px);}
  .lead-modal-close-btn{position:absolute;top:12px;right:12px;z-index:50;background:#fff;border:2px solid #e0e0e0;border-radius:50%;height:36px;width:36px;min-width:36px;color:#333;font-size:20px;font-weight:400;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,0.15);cursor:pointer;padding:0;margin:0;flex-shrink:0;transition:background 0.2s,transform 0.2s;}
  .lead-modal-close-btn:hover{background:#f5f5f5;}
  .lead-modal-left{width:42%;background-size:cover;background-position:center top;background-repeat:no-repeat;padding:40px 30px;position:relative;display:flex;align-items:flex-start;flex-shrink:0;animation:cmSlideLeft2 0.4s 0.1s cubic-bezier(0.22,1,0.36,1) both;}
  /* .lead-modal-left::before{content:"";position:absolute;inset:0;background:linear-gradient(170deg,rgba(20,10,0,0.85) 0%,rgba(80,40,0,0.65) 100%);z-index:0;} */
  .lead-modal-left>div{position:relative;z-index:1;}
  .lead-modal-left .modal-logo{height:52px;width:auto;}
  .lead-modal-left h3{font-family:"Poppins",sans-serif;font-size:24px;line-height:1.3;color:#fff;font-weight:700;padding-top:28px;padding-bottom:12px;margin:0;}
  .lead-modal-left p{font-family:"Poppins",sans-serif;font-size:14px;color:rgba(255,255,255,0.85);line-height:1.7;margin:0;}
  .lead-modal-right{flex:1;padding:40px 36px 36px;background:#fff;position:relative;overflow-y:auto;overflow-x:hidden;min-height:0;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;}
  .lead-modal-right,.lead-modal-right *{font-family:"Poppins",sans-serif;}
  .lead-modal-right .form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:0;animation:cmFadeUp2 0.35s 0.18s both;}
  .lead-modal-right .form-group{margin-bottom:14px;}
  .lead-modal-right .form-group label{display:block;font-size:13px;font-weight:600;color:#3a3a3a;margin-bottom:5px;}
  .lead-modal-right .form-group input,.lead-modal-right .form-group textarea{width:100%;padding:11px 14px;border:1.5px solid #e0e0e0;border-radius:8px;font-size:16px;color:#1a1a1a;background:#f9f9f9;outline:none;transition:border-color 0.2s,box-shadow 0.2s;box-sizing:border-box;font-family:"Poppins",sans-serif;-webkit-appearance:none;appearance:none;}
  .lead-modal-right .form-group input:focus,.lead-modal-right .form-group textarea:focus{border-color:#0B6B45;background:#fff;box-shadow:0 0 0 3px rgba(11,107,69,0.12);}
  .lead-modal-right .form-group input::placeholder,.lead-modal-right .form-group textarea::placeholder{color:#9a9a9a;}
  .lead-modal-right .form-group textarea{min-height:80px;resize:vertical;}
  .lead-modal-right .form-group .iti{width:100%;}
  .lead-modal-right .form-group .iti--allow-dropdown input[type="tel"]{padding-left:96px;}
  .lead-modal-right .form-submit{width:100%;background:#0B6B45;color:#ffffff;border:none;border-radius:6px;font-size:16px;font-weight:700;text-transform:uppercase;letter-spacing:0.04em;padding:13px;min-height:48px;cursor:pointer;transition:background 0.2s,transform 0.2s,box-shadow 0.2s;font-family:"Poppins",sans-serif;box-shadow:0 4px 14px rgba(11,107,69,0.28);}
  .lead-modal-right .form-submit:hover{background:#085237;transform:translateY(-2px);box-shadow:0 8px 22px rgba(11,107,69,0.40);}
  @media(max-width:767px){
    .lead-modal-overlay{padding:12px;}
    .lead-modal-card{flex-direction:column;max-height:calc(100svh - 24px);display:grid;grid-template-rows:auto 1fr;}
    .lead-modal-left{display:none;}
    .lead-modal-close-btn{grid-row:1;position:relative;top:auto;right:auto;justify-self:end;align-self:center;margin:10px 10px 0 auto;}
    .lead-modal-right{grid-row:2;overflow-y:auto;padding:16px 20px 32px;}
    .lead-modal-right .form-row{grid-template-columns:1fr;gap:0;}
  }
  @media(max-width:480px){
    .lead-modal-close-btn{margin:8px 8px 0 auto;}
    .lead-modal-right{padding:12px 16px 28px;}
  }

/* ════════════════════════════════════════════════════════════
   LAPTOP / SHORT-VIEWPORT HERO FIT  (authoritative — kept last so
   it wins over the earlier stacked .hero overrides in this file)

   On laptops the fixed header + tall phone mockup pushed the CTA
   button and the last bullet below the fold. These HEIGHT-based
   rules compress the hero so the whole block (headline → bullets →
   CTA + phone) fits on a laptop screen. Tall desktops (viewport
   height > 900px) are not matched, so they keep the full design.
════════════════════════════════════════════════════════════ */
@media (min-width: 769px) and (max-height: 900px) {
  .hero { padding: 92px 0 60px; align-items: center; }
  .hero-badge { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(2.2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
  .hero-features { margin-bottom: 22px; gap: 10px; }
  .hero-features li { font-size: 1rem; }
  .hero-feature-check { width: 24px; height: 24px; }
  .hero-feature-check svg { width: 12px; height: 12px; }
  .hero-btns { margin-top: 4px; }
  .hero-btns .btn-primary { min-height: 52px; padding: 13px 30px; font-size: 1rem; }
  .hero-mockup { max-width: 248px; }
}

@media (min-width: 769px) and (max-height: 760px) {
  /* Top-align both columns so the tall phone stops shoving the text
     and CTA further down the page. */
  .hero { padding: 120px 0 48px; }
  .hero .container { align-items: flex-start; }
  .hero-content { padding-top: 2px; }
  .hero-badge { margin-bottom: 10px; font-size: 0.74rem; padding: 5px 14px; }
  .hero h1 { font-size: clamp(1.9rem, 3.5vw, 3.5rem); margin-bottom: 16px; }
  .hero-features { margin-bottom: 16px; gap: 7px; }
  .hero-features li { font-size: 0.94rem; }
  .hero-feature-check { width: 22px; height: 22px; }
  .hero-mockup { max-width: 210px; }
.hero-stripe{
  height:84px;
}

}

/* ── FLOATING PHONE PILLS — keep them tucked to the phone ──────
   The rating / notification / "providers online" pills had fixed
   pixel offsets tuned for the large mockup; once the phone shrinks
   on laptops they wrapped and drifted into the empty space beside
   the phone. Stop the wrap, and pull the pills in proportionally.
   (.float-rating can only move via `left` — its `transform` is
   owned by the floatRating animation; notif/avatars move via `right`.) */
.floating-mini { white-space: nowrap; }

@media (min-width: 1025px) {
  .float-notif   { right: -28px; }
  .float-avatars { right: -38px; }
}

@media (min-width: 769px) and (max-height: 900px) {
  .float-rating  { left: 58%; top: -4px; padding: 6px 10px; }
  .float-notif   { top: 12%; right: -22px; padding: 6px 10px 6px 7px; }
  .float-avatars { top: 40%; right: -28px; padding: 8px 12px; }
}

@media (min-width: 769px) and (max-height: 760px) {
  .float-rating  { left: 60%; top: -2px; }
  .float-notif   { top: 11%; right: -14px; }
  .float-avatars { top: 42%; right: -18px; }
}

/* ── Single-plan pricing (one dark card, centered) ── */
.pricing-grid.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 600px;
}

/* Keep the LP's gold accent on the dark card; dark tick reads far better on gold
   than the white one, and the soft glow was smearing into the label text. */
.pricing-grid-single .pricing-card.featured .check-icon {
  width: 24px;
  height: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.30);
}

.pricing-grid-single .pricing-card.featured .check-icon svg {
  width: 13px;
  height: 13px;
  stroke: #06180F;
  stroke-width: 3;
}

/* Body copy on the dark card — lifted for contrast */
.pricing-grid-single .pricing-card.featured .pricing-feature-item {
  color: #ffffff;
  font-size: 0.95rem;
  padding: 10px 0;
}

.pricing-grid-single .pricing-card.featured .pricing-description { color: rgba(255,255,255,0.82); }
.pricing-grid-single .pricing-card.featured .pricing-plus p { color: rgba(255,255,255,0.85); }
.pricing-grid-single .pricing-card.featured .price-period { color: rgba(255,255,255,0.70); }

/* House-pattern overlay was washing out the text underneath */
.pricing-grid-single .pricing-card.featured::after { opacity: 0.28; }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-mid);
  font-size: 0.88rem;
}

/* ── Single-plan pricing — mobile ── */
@media (max-width: 768px) {
  .pricing-grid.pricing-grid-single { max-width: 520px; margin-top: 40px; }
  .pricing-grid-single .pricing-card.featured { margin-top: 0; }
  .pricing-grid-single .pricing-card.featured .pricing-feature-item { font-size: 0.92rem; padding: 9px 0; }
}

@media (max-width: 480px) {
  .pricing-grid-single .pricing-card.featured .pricing-feature-item {
    font-size: 0.88rem;
    gap: 10px;
    padding: 8px 0;
    align-items: flex-start;
  }
  .pricing-grid-single .pricing-card.featured .check-icon { margin-top: 2px; }
  .pricing-note { font-size: 0.78rem; line-height: 2; margin-top: 22px; }
}

/* ── Tablet nav fix ────────────────────────────────────
   Logo (200px) + 5 links + the CTA pill need ~1000px to sit
   on one row. Below that they were colliding with the logo and
   wrapping to two lines, so hand the nav to the hamburger. */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Price count-up animation ──────────────────────────
   Number counts 0 → 5000 when the card scrolls into view,
   glows while counting, then settles with a small pop. */
@keyframes pricePop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.07); }
  70%  { transform: scale(0.99); }
  100% { transform: scale(1); }
}

@keyframes priceGlow {
  0%, 100% { text-shadow: 0 0 18px rgba(255,212,0,0.30); }
  50%      { text-shadow: 0 0 34px rgba(255,212,0,0.60); }
}

.pricing-grid-single .price-amount {
  display: inline-block;
  transform-origin: left center;
  font-variant-numeric: tabular-nums;
  transition: text-shadow 0.3s ease;
}

.pricing-card.price-counting .price-amount {
  animation: priceGlow 1.1s ease-in-out infinite;
}

.pricing-grid-single .price-currency { transition: color 0.4s ease; }

.pricing-card.price-counting .price-currency {
  color: #FFD400;
}

.price-amount.price-pop {
  animation: pricePop 0.62s cubic-bezier(0.34,1.56,0.64,1);
  text-shadow: 0 0 30px rgba(255,212,0,0.50);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card.price-counting .price-amount,
  .price-amount.price-pop { animation: none; text-shadow: none; }
}

/* ── Price idle loop ───────────────────────────────────
   After the count-up settles the number keeps a slow
   breath + glow so the card never goes fully static. */
@keyframes priceIdle {
  0%, 100% { transform: scale(1);     text-shadow: 0 0 0 rgba(255,212,0,0); }
  50%      { transform: scale(1.02);  text-shadow: 0 0 26px rgba(255,212,0,0); }
}

.price-amount.price-idle {
  animation: priceIdle 4.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .price-amount.price-idle { animation: none; }
}

/* ── Feature-list ticks → same solid check-circle mark as the
   "Best for" icon at the top of the card. Drop the wrapper's
   disc/glow so the SVG itself is the whole icon. ── */
.pricing-features .check-icon,
.pricing-grid-single .pricing-card.featured .check-icon {
  width: 22px;
  height: 22px;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.pricing-features .check-icon svg,
.pricing-features .check-icon svg path,
.pricing-grid-single .pricing-card.featured .check-icon svg,
.pricing-grid-single .pricing-card.featured .check-icon svg path {
  width: 22px;
  height: 22px;
  stroke: none;
  fill: #0B6B45;
}

.pricing-card.featured .check-icon svg,
.pricing-card.featured .check-icon svg path,
.pricing-grid-single .pricing-card.featured .check-icon svg,
.pricing-grid-single .pricing-card.featured .check-icon svg path {
  fill: #FFD400;
}

@media (max-width: 480px) {
  .pricing-grid-single .pricing-card.featured .check-icon { margin-top: 1px; }
}

/* ══════════════════════════════════════════════════════════════
   LAPTOP SCREENS ONLY — short desktop viewports (≈1366×768 / 1536×864)
   Scoped by viewport HEIGHT, so 1080p+ and any tall monitor is
   completely unaffected. Hero measured ~745px on a 640px laptop
   viewport; this block only tightens the vertical rhythm.
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) and (max-height: 820px) {
  /* Full-screen hero — header is fixed and overlays the hero (hero starts at
     y=0), so 100vh here makes header + hero exactly one laptop screen.
     align-items must be reset to stretch: the base rule sets it to `center`
     for the row direction, which in a column would shrink .container's width. */
  .hero {
    padding: 94px 0 22px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .hero .container { gap: 44px; }
  .hero-badge { margin-bottom: 15px; }
  .hero h1 { font-size: clamp(2.05rem, 3.3vw, 2.85rem); margin-bottom: 16px; }
  .hero-sub { font-size: 1.04rem; line-height: 1.62; margin-bottom: 20px; }
  .hero-features { gap: 10px; margin: 0 0 22px; }
  .hero-features li { font-size: 1rem; }
  .hero-visual { padding: 6px 0; }
  .hero-poster-wrap { max-width: 590px; }
}
