/* ═══════════════════════════════════════════════════════════════════════════
   LocalOrbit360 — WordPress Theme
   Exact visual match for the published React/Vite site.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ────────────────────────────────────────────────────── */
:root {
  --lo-primary:        #16a34a;
  --lo-primary-dark:   #15803d;
  --lo-primary-10:     rgba(22, 163, 74, 0.10);
  --lo-primary-20:     rgba(22, 163, 74, 0.20);
  --lo-primary-30:     rgba(22, 163, 74, 0.30);
  --lo-primary-glow:   0 0 20px rgba(22,163,74,0.35);
  --lo-primary-glow-lg:0 0 30px rgba(22,163,74,0.50);

  --lo-dark-900: #0f0f1a;   /* footer */
  --lo-dark-800: #0f1624;   /* video / packages / dark sections */
  --lo-dark-700: #1a1a2e;   /* stats bar */

  --lo-text:       #0f172a;
  --lo-text-muted: #64748b;

  --lo-white:    #ffffff;
  --lo-gray-50:  #f8fafc;
  --lo-gray-100: #f1f5f9;
  --lo-gray-200: #e2e8f0;
  --lo-border:   #e2e8f0;

  --lo-radius:      .75rem;
  --lo-radius-lg:   1.5rem;
  --lo-radius-full: 9999px;

  --lo-font-sans:    'Inter', system-ui, sans-serif;
  --lo-font-heading: 'Montserrat', system-ui, sans-serif;

  --lo-container-w: 1200px;
}

/* ── Resets & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--lo-font-sans);
  color: var(--lo-text);
  background: var(--lo-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--lo-font-heading);
  font-weight: 800;
  line-height: 1.15;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.lo-container {
  max-width: var(--lo-container-w);
  margin-inline: auto;
  padding-inline: 1rem;
}
.lo-text-center { text-align: center; }
.lo-mx-auto     { margin-inline: auto; }

/* ── Section helpers ──────────────────────────────────────────────────────── */
.lo-section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--lo-font-heading);
  font-weight: 800;
  color: var(--lo-text);
  margin-bottom: 1rem;
}
.lo-section-title--white { color: #fff; }
.lo-section-line {
  width: 5rem;
  height: 4px;
  background: var(--lo-primary);
  border-radius: var(--lo-radius-full);
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}
.lo-section-sub { color: var(--lo-text-muted); font-size: 1rem; }
.lo-section-sub--gray { color: #9ca3af; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.lo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--lo-font-heading);
  font-weight: 700;
  border-radius: var(--lo-radius);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.lo-btn--primary   { background: var(--lo-primary); color: #fff; }
.lo-btn--primary:hover { background: var(--lo-primary-dark); }
.lo-btn--outline   { background: transparent; color: #fff; border-color: #fff; }
.lo-btn--outline:hover { background: #fff; color: var(--lo-text); }
.lo-btn--outline-primary { background: transparent; color: var(--lo-primary); border-color: var(--lo-primary); }
.lo-btn--outline-primary:hover { background: var(--lo-primary); color: #fff; }
.lo-btn--dark-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.lo-btn--dark-outline:hover { border-color: var(--lo-primary); color: var(--lo-primary); }
.lo-btn--white  { background: #fff; color: var(--lo-primary); font-weight: 800; }
.lo-btn--white:hover { transform: scale(1.03); }
.lo-btn--linkedin { background: transparent; color: #0A66C2; border-color: #0A66C2; }
.lo-btn--linkedin:hover { background: #0A66C2; color: #fff; }
.lo-btn--sm  { font-size: .8rem;  padding: .4rem .875rem; }
.lo-btn--lg  { font-size: .95rem; padding: .875rem 1.75rem; }
.lo-btn--xl  { font-size: 1rem;   padding: 1.1rem 2.25rem; }
.lo-btn--full { width: 100%; }
.lo-btn--glow { box-shadow: var(--lo-primary-glow); }
.lo-btn--glow:hover { box-shadow: var(--lo-primary-glow-lg); }

/* ── Pills ────────────────────────────────────────────────────────────────── */
.lo-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .375rem 1rem; border-radius: var(--lo-radius-full);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.lo-pill--green,
.lo-pill--green-dark,
.lo-pill--green-light { background: var(--lo-primary-20); color: var(--lo-primary); }
.lo-pill--border { background: var(--lo-primary-20); color: var(--lo-primary); border: 1px solid var(--lo-primary-30); }

/* ── Stars ────────────────────────────────────────────────────────────────── */
.lo-stars { letter-spacing: .05em; }
.lo-stars--yellow { color: #facc15; }

/* ── Avatar ───────────────────────────────────────────────────────────────── */
.lo-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: var(--lo-radius-full);
  background: var(--lo-primary-10); color: var(--lo-primary);
  font-weight: 800; font-family: var(--lo-font-heading);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lo-avatar--ring { background: var(--lo-primary-20); border: 2px solid var(--lo-primary); font-size: 1.125rem; }

/* ── Fade-up ──────────────────────────────────────────────────────────────── */
.lo-fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.lo-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   POPUP MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.60); backdrop-filter: blur(3px); padding: 1rem;
  opacity: 0; transition: opacity .3s;
}
.lo-modal-overlay.visible { opacity: 1; }
.lo-modal-overlay[hidden] { display: none; }
.lo-modal {
  background: #fff; border-radius: 1.5rem;
  width: 100%; max-width: 28rem; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.3);
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.lo-modal-overlay.visible .lo-modal { transform: scale(1) translateY(0); }
.lo-modal__top {
  background: var(--lo-primary); padding: 1.75rem 1.5rem 1.25rem;
  text-align: center; color: #fff; position: relative;
}
.lo-modal__x {
  position: absolute; top: 1rem; right: 1rem;
  width: 2rem; height: 2rem; border-radius: var(--lo-radius-full);
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.lo-modal__x:hover { background: rgba(255,255,255,.35); }
.lo-modal__gift-icon { font-size: 1.875rem; margin-bottom: .75rem; }
.lo-modal__eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .7; margin-bottom: .25rem; }
.lo-modal__title { font-size: 1.4rem; font-family: var(--lo-font-heading); font-weight: 800; margin-bottom: .25rem; }
.lo-modal__sub { font-size: .875rem; opacity: .9; }
.lo-modal__body { padding: 1.5rem; }
.lo-modal__desc { color: var(--lo-text-muted); font-size: .875rem; line-height: 1.65; margin-bottom: 1.25rem; text-align: center; }
.lo-modal__countdown-label {
  display: flex; align-items: center; justify-content: center; gap: .375rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--lo-text-muted); margin-bottom: .75rem;
}
.lo-modal__countdown { display: flex; align-items: center; justify-content: center; gap: .375rem; margin-bottom: 1.25rem; }
.lo-cd-unit {
  background: var(--lo-dark-700); color: #fff; border-radius: .75rem;
  padding: .5rem .625rem; text-align: center; min-width: 52px;
}
.lo-cd-n { display: block; font-family: var(--lo-font-heading); font-weight: 800; font-size: 1.375rem; line-height: 1; }
.lo-cd-l { display: block; font-size: .625rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.lo-cd-sep { font-size: 1.125rem; font-weight: 700; color: var(--lo-dark-700); }
.lo-modal__note {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: .75rem;
  padding: .75rem 1rem; font-size: .8125rem; color: #15803d; font-weight: 500;
  margin-bottom: 1.25rem; text-align: center;
}
.lo-modal__cta { margin-bottom: .75rem; font-size: .95rem; }
.lo-modal__skip {
  display: block; width: 100%; text-align: center;
  font-size: .75rem; color: var(--lo-text-muted);
  cursor: pointer; transition: color .2s;
}
.lo-modal__skip:hover { color: var(--lo-text); }

/* ═══════════════════════════════════════════════════════════════════════════
   PROMO BANNER  (#0f0f1a)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-promo { background: #0f0f1a; position: relative; overflow: hidden; z-index: 50; }
.lo-promo__shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(22,163,74,.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.lo-promo__desktop {
  display: flex; align-items: center; gap: .6rem;
  justify-content: center; flex-wrap: nowrap;
  padding: .45rem 3rem .45rem 1rem;
  font-size: .8rem; color: rgba(255,255,255,.9);
}
.lo-promo__mobile { display: none; }
.lo-promo__flag { flex-shrink: 0; }
.lo-promo__badge {
  background: #ef4444; color: #fff;
  font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .5rem; border-radius: var(--lo-radius-full);
  animation: pulse-badge 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-badge { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.lo-promo__msg { display: flex; align-items: center; gap: .3rem; flex-wrap: nowrap; font-size: .8rem; }
.lo-promo__hl  { color: #4ade80; font-weight: 700; }
.lo-promo__yellow { color: #fbbf24; font-weight: 700; }
.lo-promo__sep { opacity: .3; flex-shrink: 0; }
.lo-promo__exp { opacity: .7; flex-shrink: 0; }
.lo-promo__timer { display: flex; gap: .375rem; align-items: center; flex-shrink: 0; }
.lo-promo__unit {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: .2rem .5rem; border-radius: .375rem;
  font-size: .75rem; font-weight: 700; font-family: var(--lo-font-heading); color: #fff;
  display: flex; align-items: center; gap: .1rem;
}
.lo-promo__unit small { font-size: .6rem; opacity: .6; font-weight: 400; }
.lo-promo__cta {
  background: var(--lo-primary); color: #fff; font-weight: 700; font-size: .75rem;
  padding: .35rem .9rem; border-radius: var(--lo-radius-full); white-space: nowrap;
  flex-shrink: 0; transition: background .2s;
}
.lo-promo__cta:hover { background: var(--lo-primary-dark); color: #fff; }
.lo-promo__close {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.6); padding: .25rem; border-radius: .25rem; display: flex;
}
.lo-promo__close:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   TOP BAR  (green)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-topbar {
  background: var(--lo-primary); color: rgba(255,255,255,.95);
  padding: .4rem 0; font-size: .8rem; position: relative; z-index: 49;
}
.lo-topbar__inner { display: flex; align-items: center; justify-content: space-between; }
.lo-topbar__phone { display: flex; align-items: center; gap: .375rem; font-weight: 700; color: inherit; letter-spacing: .02em; }
.lo-topbar__phone:hover { color: rgba(255,255,255,.8); }
.lo-topbar__right { display: flex; align-items: center; gap: 1rem; }
.lo-topbar__email { display: none; align-items: center; gap: .375rem; color: inherit; }
.lo-topbar__email:hover { color: rgba(255,255,255,.8); }
.lo-topbar__social { display: flex; align-items: center; gap: .625rem; }
.lo-topbar__social a { color: inherit; display: flex; transition: opacity .2s; }
.lo-topbar__social a:hover { opacity: .7; }
.lo-topbar__social--hide-xs,
.lo-topbar__social--hide-sm { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.97); border-bottom: 1px solid var(--lo-border);
  backdrop-filter: blur(12px);
  transition: background .3s, box-shadow .3s;
}
.lo-nav--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.lo-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.lo-nav__logo {
  font-family: var(--lo-font-heading); font-weight: 800;
  font-size: 1.375rem; color: var(--lo-text); letter-spacing: -.02em;
}
.lo-nav__logo img { height: 2.25rem; width: auto; }
.lo-nav__logo-accent { color: var(--lo-primary); }
.lo-nav__links { display: none; align-items: center; gap: 1.5rem; }
.lo-nav__link { font-size: .875rem; font-weight: 500; color: var(--lo-text); transition: color .2s; }
.lo-nav__link:hover { color: var(--lo-primary); }
.lo-nav__actions { display: flex; align-items: center; gap: .625rem; }
.lo-nav__hamburger {
  width: 2.25rem; height: 2.25rem; border-radius: .5rem;
  border: 1px solid var(--lo-gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lo-nav__hamburger:hover { background: var(--lo-gray-100); }
.lo-nav__mobile {
  border-top: 1px solid var(--lo-border); background: #fff;
  overflow: hidden; max-height: 0; transition: max-height .25s ease;
}
.lo-nav__mobile.open { max-height: 24rem; }
.lo-nav__mobile-link {
  display: block; padding: .625rem .75rem; font-size: .875rem; font-weight: 500;
  color: var(--lo-text); border-radius: .5rem; margin: .125rem 1rem;
  transition: color .2s, background .2s;
}
.lo-nav__mobile-link:hover { color: var(--lo-primary); background: var(--lo-gray-50); }
.lo-nav__mobile-phone {
  display: flex; align-items: center; gap: .5rem;
  padding: .625rem .75rem; margin: .5rem 1rem .75rem;
  font-size: .875rem; font-weight: 700; color: var(--lo-primary);
  background: var(--lo-primary-10); border-radius: .5rem;
}
.lo-nav__cta { white-space: nowrap; }
.lo-hide-sm { display: inline; }
.lo-show-sm { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-hero { position: relative; overflow: hidden; height: 480px; }
.lo-hero__track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.lo-hero__slide { position: relative; flex: 0 0 100%; height: 100%; }
.lo-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s linear;
}
.lo-hero__slide.active .lo-hero__bg { transform: scale(1.04); }
.lo-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.60); }
.lo-hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  max-width: 56rem; margin-inline: auto;
}
.lo-hero__title {
  color: #fff; font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-family: var(--lo-font-heading); font-weight: 700; line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s .1s, transform .5s .1s;
}
.lo-hero__sub {
  color: #d1d5db; font-size: clamp(.875rem, 1.5vw, 1.125rem);
  margin-bottom: 2rem; max-width: 36rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s .25s, transform .5s .25s;
}
.lo-hero__btns {
  display: flex; flex-direction: column; gap: .75rem;
  width: 100%; max-width: 22rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s .4s, transform .5s .4s;
}
.lo-hero__slide.active .lo-hero__title,
.lo-hero__slide.active .lo-hero__sub,
.lo-hero__slide.active .lo-hero__btns { opacity: 1; transform: translateY(0); }
.lo-hero__arrow {
  display: none; position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: var(--lo-radius-full);
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px); color: #fff;
  align-items: center; justify-content: center; transition: background .2s; z-index: 3;
}
.lo-hero__arrow:hover { background: rgba(255,255,255,.35); }
.lo-hero__arrow svg { width: 1.25rem; height: 1.25rem; }
.lo-hero__arrow--prev { left: 1rem; }
.lo-hero__arrow--next { right: 1rem; }
.lo-hero__dots { position: absolute; bottom: 1.5rem; left: 0; right: 0; display: flex; justify-content: center; gap: .5rem; z-index: 3; }
.lo-hero__dot {
  width: .6rem; height: .6rem; border-radius: var(--lo-radius-full);
  background: rgba(255,255,255,.5); border: none; padding: 0; cursor: pointer;
  transition: background .25s, width .25s;
}
.lo-hero__dot.active { background: var(--lo-primary); width: 1.75rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   STATS  (MUST be #1a1a2e)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-stats { background: #1a1a2e; padding: 2.5rem 0; }
.lo-stats__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem 2rem; }
.lo-stats__item { text-align: center; padding: .5rem; }
.lo-stats__num {
  font-family: var(--lo-font-heading); font-weight: 800;
  font-size: clamp(2rem,5vw,3rem); color: #fff; line-height: 1; margin-bottom: .375rem;
}
.lo-stats__label {
  color: var(--lo-primary); font-weight: 600;
  font-size: clamp(.75rem,1.5vw,.9rem); letter-spacing: .02em; line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS  (white)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-reviews { background: #fff; padding: 3.5rem 0; }
.lo-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem; margin-bottom: 2.5rem; }
.lo-trust__badge {
  display: flex; align-items: center; gap: .5rem;
  background: var(--lo-gray-50); border: 1px solid var(--lo-gray-200);
  padding: .5rem 1.125rem; border-radius: var(--lo-radius-full);
  font-size: .8125rem; font-weight: 600; color: #374151;
}
.lo-google-rating { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.lo-google-letters { display: flex; gap: .2rem; }
.lo-google-letters span { font-family: var(--lo-font-heading); font-weight: 800; font-size: 1.5rem; }
.lo-google-rating__stars { font-size: 1.25rem; }
.lo-google-rating__score { font-size: 1.375rem; font-weight: 700; color: #374151; }
.lo-reviews__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
.lo-review {
  border: 1px solid var(--lo-gray-100); border-radius: var(--lo-radius);
  padding: 1.25rem; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.05); transition: box-shadow .2s;
}
.lo-review:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.lo-review__head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.lo-review__name { font-weight: 700; font-size: .875rem; }
.lo-review__role { font-size: .75rem; color: var(--lo-text-muted); }
.lo-review__stars { font-size: .875rem; margin-bottom: .5rem; }
.lo-review__text { font-size: .8125rem; color: #4b5563; line-height: 1.65; font-style: italic; }
.lo-review__source { font-size: .75rem; color: #9ca3af; margin-top: .75rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO TESTIMONIAL  (#0f1624)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-video-section { background: #0f1624; padding: 3.5rem 0; position: relative; overflow: hidden; }
.lo-video-section__dots {
  position: absolute; inset: 0; opacity: .03;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
.lo-video-section__inner { position: relative; z-index: 1; max-width: 72rem; }
.lo-video-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.lo-video-thumb {
  position: relative; border-radius: 1rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 60px rgba(22,163,74,.2); background: #000;
}
.lo-video-el { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.lo-video-play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; background: rgba(0,0,0,.28); backdrop-filter: blur(1px);
  gap: .75rem; transition: opacity .2s;
}
.lo-video-play-overlay.hidden { opacity: 0; pointer-events: none; }
.lo-video-play-btn {
  width: 5rem; height: 5rem; border-radius: var(--lo-radius-full);
  background: var(--lo-primary); box-shadow: 0 0 30px rgba(22,163,74,.6);
  display: flex; align-items: center; justify-content: center; transition: transform .2s;
}
.lo-video-play-btn:hover { transform: scale(1.1); }
.lo-video-play-btn svg { margin-left: 3px; }
.lo-video-play-label { color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500; }
.lo-video-verified { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; justify-content: center; font-size: .75rem; color: #6b7280; }
.lo-pulse-dot { width: .5rem; height: .5rem; border-radius: var(--lo-radius-full); background: var(--lo-primary); animation: pulse-dot 2s ease-in-out infinite; display: inline-block; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
.lo-video-quote { color: #fff; font-family: var(--lo-font-heading); font-weight: 600; font-size: clamp(1rem,2vw,1.25rem); line-height: 1.55; margin-bottom: 1.5rem; position: relative; }
.lo-video-quote__mark { color: var(--lo-primary); font-size: 3rem; font-family: Georgia, serif; line-height: 0; opacity: .6; }
.lo-video-quote__mark:first-child { vertical-align: -1rem; margin-right: .25rem; }
.lo-video-author { display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.lo-video-author__name { color: #fff; font-weight: 700; font-size: .9375rem; }
.lo-video-author__role { color: #9ca3af; font-size: .8125rem; }
.lo-verified-badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: .25rem;
  background: var(--lo-primary-10); border: 1px solid var(--lo-primary-30);
  color: var(--lo-primary); font-size: .7rem; font-weight: 700;
  padding: .25rem .625rem; border-radius: var(--lo-radius-full); flex-shrink: 0;
}
.lo-video-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1.5rem; }
.lo-metric-chip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: .75rem; padding: .75rem .5rem; text-align: center; }
.lo-metric-chip__n { display: block; font-family: var(--lo-font-heading); font-weight: 800; font-size: 1.25rem; color: var(--lo-primary); }
.lo-metric-chip__l { display: block; font-size: .65rem; color: #9ca3af; margin-top: .2rem; }
.lo-video-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.lo-video-trust__item { font-size: .75rem; color: #6b7280; }

/* ═══════════════════════════════════════════════════════════════════════════
   PACKAGES  (#0f1624)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-packages { background: #0f1624; padding: 3.5rem 0; position: relative; overflow: hidden; }
.lo-packages__glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: var(--lo-primary-10); border-radius: var(--lo-radius-full); filter: blur(60px); pointer-events: none; }
.lo-packages__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
.lo-pkg {
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px); transition: transform .2s;
}
.lo-pkg:hover { transform: translateY(-4px); }
.lo-pkg--featured { border-color: var(--lo-primary); background: #fff; box-shadow: 0 24px 64px rgba(22,163,74,.2); }
.lo-pkg__badge { background: var(--lo-primary); color: #fff; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .5rem; text-align: center; }
.lo-pkg__inner { padding: 1.75rem; display: flex; flex-direction: column; color: #fff; }
.lo-pkg--featured .lo-pkg__inner { color: var(--lo-text); }
.lo-pkg__icon { font-size: 1.75rem; margin-bottom: .75rem; }
.lo-pkg__tier { font-family: var(--lo-font-heading); font-weight: 800; font-size: 1.125rem; margin-bottom: .5rem; }
.lo-pkg__tier--dark { color: var(--lo-text); }
.lo-pkg__tagline { font-size: .8125rem; color: #9ca3af; line-height: 1.55; margin-bottom: 1.5rem; }
.lo-pkg__tagline--dark { color: var(--lo-text-muted); }
.lo-pkg__price { display: flex; align-items: flex-end; gap: .25rem; margin-bottom: 1.75rem; }
.lo-pkg__amount { font-family: var(--lo-font-heading); font-weight: 800; font-size: 2.75rem; color: #fff; line-height: 1; }
.lo-pkg__amount--primary { color: var(--lo-primary); font-size: 2.25rem; }
.lo-pkg__period { font-size: .8125rem; color: #9ca3af; padding-bottom: .375rem; }
.lo-pkg__period--dark { color: var(--lo-text-muted); }
.lo-pkg__features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .625rem; flex: 1; }
.lo-pkg__features li { font-size: .8125rem; padding-left: 1.5rem; position: relative; color: #d1d5db; line-height: 1.5; }
.lo-pkg__features li::before { content: '✓'; position: absolute; left: 0; color: var(--lo-primary); font-weight: 700; }
.lo-pkg__features--dark li { color: var(--lo-text); }
.lo-pkg__results { border-radius: 1rem; padding: .875rem; margin-bottom: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.lo-pkg__results--featured { background: rgba(22,163,74,.06); border-color: rgba(22,163,74,.2); }
.lo-pkg__results-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--lo-primary); margin-bottom: .625rem; }
.lo-pkg__results-list { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.lo-pkg__results-list li { font-size: .75rem; color: #d1d5db; padding-left: .875rem; position: relative; }
.lo-pkg__results-list li::before { content: ''; position: absolute; left: 0; top: .45em; width: .375rem; height: .375rem; border-radius: 50%; background: var(--lo-primary); }
.lo-pkg__results-list--dark li { color: var(--lo-text-muted); }
.lo-pkg__budget { font-size: .75rem; color: #9ca3af; margin-bottom: 1.25rem; }
.lo-pkg__budget--dark { color: var(--lo-text-muted); }
.lo-packages__footnote { text-align: center; color: #6b7280; font-size: .8125rem; margin-top: 2rem; }
.lo-packages__footnote a { color: var(--lo-primary); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOUNDER  (white)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-founder { background: #fff; padding: 3.5rem 0; }
.lo-founder__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; max-width: 72rem; margin-inline: auto; }
.lo-founder__name { font-size: clamp(2rem,4vw,3rem); font-family: var(--lo-font-heading); font-weight: 800; margin-bottom: .25rem; }
.lo-founder__role { color: var(--lo-primary); font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }
.lo-founder__bio { color: var(--lo-text-muted); font-size: .9375rem; line-height: 1.7; margin-bottom: 1.375rem; }
.lo-founder__quote { border-left: 4px solid var(--lo-primary); padding: .75rem 1rem; background: var(--lo-primary-10); border-radius: 0 .75rem .75rem 0; margin-bottom: 2rem; }
.lo-founder__quote p { font-size: .9375rem; font-weight: 600; font-style: italic; color: var(--lo-text); line-height: 1.6; }
.lo-founder__quote footer { font-size: .75rem; color: var(--lo-text-muted); margin-top: .375rem; font-weight: 500; }
.lo-founder__mini-stats { display: flex; gap: .75rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.lo-founder__mini-stat { background: var(--lo-gray-50); border: 1px solid var(--lo-gray-100); border-radius: 1rem; padding: .875rem 1.25rem; text-align: center; flex: 1; min-width: 80px; }
.lo-founder__mini-n { font-family: var(--lo-font-heading); font-weight: 800; font-size: 1.625rem; color: var(--lo-primary); }
.lo-founder__mini-l { font-size: .7rem; color: var(--lo-text-muted); margin-top: .25rem; }
.lo-founder__btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.lo-founder__video-box { aspect-ratio: 16/9; background: #0f1624; border-radius: 1.5rem; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(22,163,74,.2); }
.lo-founder__video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,163,74,.08), transparent); }
.lo-founder__video-glow { position: absolute; top: 0; right: 0; width: 12rem; height: 12rem; background: rgba(22,163,74,.08); border-radius: 50%; transform: translate(25%,-25%); filter: blur(32px); }
.lo-founder__video-content { position: relative; z-index: 1; text-align: center; padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lo-founder__play-icon { width: 4.5rem; height: 4.5rem; border-radius: var(--lo-radius-full); background: rgba(22,163,74,.2); border: 2px solid rgba(22,163,74,.4); display: flex; align-items: center; justify-content: center; color: var(--lo-primary); }
.lo-founder__video-title { color: #fff; font-family: var(--lo-font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: .5rem; }
.lo-founder__video-sub { color: #9ca3af; font-size: .8125rem; }
.lo-founder__video-pill { display: inline-flex; align-items: center; gap: .375rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--lo-radius-full); padding: .4rem 1rem; font-size: .75rem; color: #9ca3af; }
.lo-founder__card { margin-top: 1.25rem; display: flex; align-items: center; gap: .875rem; background: rgba(22,163,74,.05); border: 1px solid rgba(22,163,74,.15); border-radius: 1rem; padding: .875rem 1.25rem; }
.lo-founder__card-avatar { width: 3rem; height: 3rem; border-radius: var(--lo-radius-full); background: var(--lo-primary); color: #fff; font-family: var(--lo-font-heading); font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lo-founder__card-name { font-weight: 700; font-size: .9375rem; }
.lo-founder__card-role { font-size: .8125rem; color: var(--lo-text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES  (gray-50)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-services { background: var(--lo-gray-50); padding: 3.5rem 0; }
.lo-services__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.lo-service-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--lo-radius); padding: 1.75rem; box-shadow: 0 1px 4px rgba(0,0,0,.05); border: 1px solid transparent; transition: box-shadow .2s, border-color .2s; color: var(--lo-text); }
.lo-service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); border-color: rgba(22,163,74,.2); }
.lo-service-card__icon-wrap { width: 3.25rem; height: 3.25rem; background: var(--lo-primary-10); border-radius: .875rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.375rem; transition: background .2s; }
.lo-service-card:hover .lo-service-card__icon-wrap { background: var(--lo-primary-20); }
.lo-service-card__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; transition: color .2s; }
.lo-service-card:hover .lo-service-card__title { color: var(--lo-primary); }
.lo-service-card__desc { font-size: .875rem; color: var(--lo-text-muted); line-height: 1.65; flex: 1; }
.lo-service-card__more { color: var(--lo-primary); font-size: .875rem; font-weight: 600; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDIES  (white)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-cases { background: #fff; padding: 3.5rem 0; }
.lo-cases__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.lo-case-card { border-radius: 1rem; overflow: hidden; }
.lo-case-card__img-wrap { position: relative; height: 13rem; overflow: hidden; border-radius: 1rem 1rem 0 0; }
.lo-case-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lo-case-card:hover .lo-case-card__img { transform: scale(1.08); }
.lo-case-card__type { position: absolute; top: .875rem; left: .875rem; background: #fff; padding: .25rem .625rem; border-radius: var(--lo-radius-full); font-size: .75rem; font-weight: 700; box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.lo-case-card__body { background: var(--lo-gray-50); padding: 1.25rem; border: 1px solid var(--lo-border); border-top: none; border-radius: 0 0 1rem 1rem; }
.lo-case-card__name { font-weight: 700; font-size: 1rem; margin-bottom: .375rem; }
.lo-case-card__result { color: var(--lo-primary); font-weight: 600; font-size: .875rem; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US  (gray-50)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-why { background: var(--lo-gray-50); padding: 3.5rem 0; }
.lo-why__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; }
.lo-why__item { display: flex; flex-direction: column; align-items: center; }
.lo-why__icon { width: 5rem; height: 5rem; background: var(--lo-primary); border-radius: var(--lo-radius-full); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 2rem; box-shadow: 0 8px 24px rgba(22,163,74,.25); }
.lo-why__title { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; }
.lo-why__desc { font-size: .9rem; color: var(--lo-text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BANNER  (primary green)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-cta-banner { background: var(--lo-primary); padding: 3.5rem 0; position: relative; overflow: hidden; }
.lo-cta-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&q=80') center/cover; opacity: .08; }
.lo-cta-banner .lo-container { position: relative; z-index: 1; }
.lo-cta-banner__title { font-size: clamp(1.5rem,3.5vw,3rem); font-family: var(--lo-font-heading); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.lo-cta-banner__sub { font-size: 1rem; color: rgba(255,255,255,.9); margin-bottom: 2.5rem; max-width: 36rem; margin-inline: auto; }
.lo-cta-banner__actions { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.lo-cta-banner__phone { display: flex; align-items: center; gap: .625rem; font-size: 1.375rem; font-weight: 800; color: #fff; transition: color .2s; }
.lo-cta-banner__phone:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════════════════════════════
   CALENDLY  (light grey)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-calendly { background: #f8fafc; padding: 3.5rem 0; }
.lo-calendly__embed { background: #fff; border-radius: 1rem; box-shadow: 0 4px 32px rgba(0,0,0,.08); overflow: hidden; border: 1px solid #e8ecef; margin-top: 2rem; }
@media (min-width:1024px) { .lo-calendly { padding: 5rem 0; } }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT  (white)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-contact { background: #fff; padding: 3.5rem 0; }
.lo-contact__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 72rem; margin-inline: auto; }
.lo-contact__title { font-size: clamp(1.5rem,3vw,2.25rem); font-family: var(--lo-font-heading); font-weight: 700; margin-bottom: 1rem; }
.lo-contact__sub { color: var(--lo-text-muted); font-size: .9375rem; line-height: 1.65; margin-bottom: 1.5rem; }
.lo-contact__badge { display: inline-flex; align-items: center; gap: .375rem; background: #f0fdf4; color: #15803d; font-weight: 600; font-size: .8125rem; padding: .4rem .875rem; border-radius: var(--lo-radius-full); margin-bottom: 2.5rem; }
.lo-contact__info { display: flex; flex-direction: column; gap: 1.75rem; }
.lo-contact__info-item { display: flex; align-items: flex-start; gap: .875rem; }
.lo-contact__info-icon { width: 2.75rem; height: 2.75rem; background: var(--lo-primary-10); border-radius: var(--lo-radius-full); display: flex; align-items: center; justify-content: center; color: var(--lo-primary); flex-shrink: 0; }
.lo-contact__info-item > div { display: flex; flex-direction: column; gap: .25rem; }
.lo-contact__info-item strong { font-weight: 700; font-size: .9375rem; }
.lo-contact__info-item a,
.lo-contact__info-item span { font-size: .875rem; color: var(--lo-text-muted); }
.lo-contact__info-item a:hover { color: var(--lo-primary); }
.lo-contact__card { background: #fff; border: 1px solid var(--lo-gray-100); border-radius: var(--lo-radius-lg); padding: 2rem; box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* Form */
.lo-form { display: flex; flex-direction: column; gap: 1.125rem; }
.lo-form__group { display: flex; flex-direction: column; gap: .375rem; }
.lo-form__group label { font-size: .875rem; font-weight: 500; color: var(--lo-text); }
.lo-form__group input,
.lo-form__group select,
.lo-form__group textarea { padding: .625rem .875rem; border: 1px solid var(--lo-gray-200); border-radius: var(--lo-radius); font-size: .9rem; color: var(--lo-text); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.lo-form__group input:focus,
.lo-form__group select:focus,
.lo-form__group textarea:focus { border-color: var(--lo-primary); box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.lo-form__group textarea { resize: vertical; min-height: 5rem; }
.lo-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.lo-form-success { text-align: center; padding: 3rem 1rem; }
.lo-form-success__icon { width: 4rem; height: 4rem; background: #dcfce7; border-radius: var(--lo-radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.lo-form-success h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: .5rem; }
.lo-form-success p { color: var(--lo-text-muted); font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER  (#0f0f1a)
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-footer { background: #0f0f1a; color: #fff; padding-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.lo-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.lo-footer__logo { font-family: var(--lo-font-heading); font-weight: 800; font-size: 1.875rem; letter-spacing: -.02em; margin-bottom: .875rem; }
.lo-footer__logo-accent { color: var(--lo-primary); }
.lo-footer__tagline { color: #6b7280; font-size: .875rem; max-width: 20rem; margin-bottom: 1.5rem; }
.lo-footer__social { display: flex; gap: .625rem; }
.lo-footer__social-link { width: 2.5rem; height: 2.5rem; border-radius: var(--lo-radius-full); background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: background .2s, color .2s; }
.lo-footer__social-link:hover { background: var(--lo-primary); color: #fff; }
.lo-footer__col-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.lo-footer__links { list-style: none; }
.lo-footer__links li { margin-bottom: .625rem; }
.lo-footer__links a { color: #6b7280; font-size: .875rem; transition: color .2s; }
.lo-footer__links a:hover { color: #fff; }
.lo-footer__contact { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.lo-footer__contact li { display: flex; align-items: flex-start; gap: .625rem; }
.lo-footer__contact svg { color: var(--lo-primary); flex-shrink: 0; margin-top: .1rem; }
.lo-footer__contact a,
.lo-footer__contact span { color: #6b7280; font-size: .875rem; transition: color .2s; }
.lo-footer__contact a:hover { color: #fff; }
.lo-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; text-align: center; color: #6b7280; font-size: .8125rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   CHAT WIDGET
   ═══════════════════════════════════════════════════════════════════════════ */
.lo-chat { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50; }
.lo-chat__popup { position: absolute; bottom: 4.25rem; right: 0; background: #fff; border-radius: 1rem; box-shadow: 0 16px 48px rgba(0,0,0,.15); border: 1px solid var(--lo-gray-100); overflow: hidden; display: flex; flex-direction: column; width: min(320px, calc(100vw - 2rem)); height: min(400px, calc(100vh - 8rem)); }
.lo-chat__popup[hidden] { display: none; }
.lo-chat__header { background: var(--lo-primary); color: #fff; padding: .875rem 1rem; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.lo-chat__header strong { font-size: .875rem; display: block; }
.lo-chat__header span { font-size: .7rem; opacity: .8; }
.lo-chat__close { color: rgba(255,255,255,.8); display: flex; transition: color .2s; }
.lo-chat__close:hover { color: #fff; }
.lo-chat__messages { flex: 1; overflow-y: auto; padding: .875rem; background: var(--lo-gray-50); display: flex; flex-direction: column; gap: .75rem; }
.lo-chat__msg { max-width: 82%; padding: .625rem .875rem; border-radius: 1rem; font-size: .8125rem; line-height: 1.5; }
.lo-chat__msg--bot { background: #fff; border: 1px solid var(--lo-gray-100); color: #374151; border-radius: 1rem 1rem 1rem .25rem; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.lo-chat__msg--user { background: var(--lo-primary); color: #fff; border-radius: 1rem 1rem .25rem 1rem; align-self: flex-end; }
.lo-chat__form { padding: .625rem; background: #fff; border-top: 1px solid var(--lo-gray-100); display: flex; gap: .5rem; flex-shrink: 0; }
.lo-chat__form input { flex: 1; padding: .5rem .875rem; border-radius: var(--lo-radius-full); background: var(--lo-gray-50); border: none; font-size: .8125rem; outline: none; min-width: 0; }
.lo-chat__form input:focus { box-shadow: 0 0 0 2px rgba(22,163,74,.2); }
.lo-chat__form button { width: 2.25rem; height: 2.25rem; border-radius: var(--lo-radius-full); background: var(--lo-primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.lo-chat__form button:hover { background: var(--lo-primary-dark); }
.lo-chat__toggle { width: 3.25rem; height: 3.25rem; border-radius: var(--lo-radius-full); background: var(--lo-primary); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(22,163,74,.4); transition: transform .2s; }
.lo-chat__toggle:hover { transform: scale(1.07); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ≥ 480px */
@media (min-width: 480px) {
  .lo-topbar__social--hide-xs { display: flex; }
}

/* ≥ 640px */
@media (min-width: 640px) {
  .lo-promo__desktop { display: flex; }
  .lo-promo__mobile  { display: none; }
  .lo-hero { height: 560px; }
  .lo-hero__arrow { display: flex; }
  .lo-hero__btns { flex-direction: row; max-width: none; width: auto; }
  .lo-hero__dots { bottom: 2rem; }
  .lo-stats { padding: 4rem 0; }
  .lo-stats__grid { grid-template-columns: repeat(4,1fr); gap: 2rem; }
  .lo-reviews { padding: 5rem 0; }
  .lo-reviews__grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .lo-services__grid { grid-template-columns: repeat(2,1fr); }
  .lo-cases__grid { grid-template-columns: repeat(2,1fr); }
  .lo-why__grid { grid-template-columns: repeat(3,1fr); }
  .lo-form__row { grid-template-columns: 1fr 1fr; }
  .lo-footer__grid { grid-template-columns: 1fr 1fr; }
  .lo-footer__brand { grid-column: span 2; }
  .lo-topbar__email { display: flex; }
  .lo-topbar__social--hide-sm { display: flex; }
  .lo-hide-sm { display: none; }
  .lo-show-sm { display: inline; }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .lo-packages__grid { grid-template-columns: repeat(3,1fr); }
  .lo-pkg--featured { transform: scale(1.03); }
  .lo-pkg--featured:hover { transform: scale(1.03) translateY(-4px); }
  .lo-reviews__grid { grid-template-columns: repeat(4,1fr); }
  .lo-cases__grid { grid-template-columns: repeat(3,1fr); }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .lo-hero { height: 660px; }
  .lo-nav__links { display: flex; }
  .lo-nav__hamburger { display: none; }
  .lo-nav__mobile { display: none !important; }
  .lo-video-section__grid { grid-template-columns: repeat(2,1fr); gap: 3.5rem; align-items: center; }
  .lo-video-section { padding: 5rem 0; }
  .lo-founder__grid { grid-template-columns: repeat(2,1fr); gap: 3.5rem; }
  .lo-founder { padding: 5rem 0; }
  .lo-services__grid { grid-template-columns: repeat(3,1fr); }
  .lo-contact__grid { grid-template-columns: repeat(2,1fr); }
  .lo-contact { padding: 5rem 0; }
  .lo-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .lo-footer__brand { grid-column: auto; }
  .lo-packages { padding: 5rem 0; }
  .lo-reviews { padding: 6rem 0; }
  .lo-cases { padding: 5rem 0; }
  .lo-why { padding: 5rem 0; }
}

/* < 640px — mobile promo */
@media (max-width: 639px) {
  .lo-promo__desktop { display: none; }
  .lo-promo__mobile {
    display: flex; align-items: center; justify-content: center;
    gap: .4rem; padding: .35rem .875rem .35rem 1rem;
    font-size: .7rem; color: rgba(255,255,255,.9);
    flex-wrap: nowrap; position: relative;
  }
  .lo-promo__badge--sm { background: #ef4444; color: #fff; font-size: .55rem; font-weight: 800; padding: .15rem .4rem; border-radius: var(--lo-radius-full); flex-shrink: 0; }
  .lo-promo__msg-sm { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lo-promo__green { color: #4ade80; }
  .lo-promo__unit--sm { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); padding: .15rem .45rem; border-radius: .3rem; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
  .lo-promo__cta--sm { background: var(--lo-primary); color: #fff; font-weight: 700; font-size: .7rem; padding: .25rem .625rem; border-radius: var(--lo-radius-full); white-space: nowrap; flex-shrink: 0; }
  .lo-promo__close--sm { position: static; transform: none; color: rgba(255,255,255,.6); flex-shrink: 0; }

  /* ── Additional Mobile Fixes ── */
  .lo-topbar { font-size: .75rem; padding: .375rem .75rem; }
  .lo-topbar__inner { flex-wrap: wrap; justify-content: center; gap: .25rem; }
  .lo-topbar__phone { font-size: .75rem; }
  .lo-topbar__email { font-size: .75rem; }
  .lo-topbar__right { gap: .5rem; }

  .lo-nav__inner { padding: 0 .75rem; height: 3.25rem; }
  .lo-nav__logo { font-size: 1.1rem; }
  .lo-nav__cta { font-size: .75rem; padding: .375rem .75rem; }
  .lo-hide-sm { display: none; }
  .lo-show-sm { display: inline; }

  .lo-hero { height: 400px; min-height: 400px; }
  .lo-hero__content { padding: 0 .75rem; }
  .lo-hero__title { font-size: 1.5rem; }
  .lo-hero__sub { font-size: .85rem; }
  .lo-hero__btns { flex-direction: column; max-width: 280px; margin: 0 auto; gap: .625rem; }
  .lo-hero__btns .lo-btn { width: 100%; justify-content: center; font-size: .85rem; padding: .75rem 1rem; }

  .lo-section-title { font-size: 1.375rem; }
  .lo-section-sub { font-size: .875rem; }

  .lo-stats { padding: 2rem 0; }
  .lo-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .lo-stats__num { font-size: 1.75rem; }
  .lo-stats__label { font-size: .7rem; }

  .lo-services__grid { grid-template-columns: 1fr; }
  .lo-services__card { padding: 1.25rem; }

  .lo-video-section { padding: 2.5rem 0; }
  .lo-video-section__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lo-video-quote__text { font-size: .9rem; }
  .lo-video-metrics { flex-direction: column; gap: .5rem; }
  .lo-metric-chip { padding: .5rem .75rem; }
  .lo-video-trust { flex-direction: column; gap: .375rem; }
  .lo-video-author { flex-wrap: wrap; gap: .625rem; }

  .lo-reviews { padding: 2.5rem 0; }
  .lo-reviews__grid { grid-template-columns: 1fr; gap: 1rem; }

  .lo-cases { padding: 2.5rem 0; }
  .lo-cases__grid { grid-template-columns: 1fr; gap: 1rem; }

  .lo-why { padding: 2.5rem 0; }
  .lo-why__grid { grid-template-columns: 1fr; gap: 1rem; }

  .lo-packages { padding: 2.5rem 0; }
  .lo-packages__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .lo-pkg { padding: 1.5rem; }
  .lo-pkg--featured { transform: none; }
  .lo-pkg--featured:hover { transform: translateY(-2px); }
  .lo-pkg__price { font-size: 2rem; }
  .lo-pkg__name { font-size: 1.1rem; }

  .lo-founder { padding: 2.5rem 0; }
  .lo-founder__grid { grid-template-columns: 1fr; gap: 2rem; }

  .lo-contact { padding: 2.5rem 0; }
  .lo-contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lo-contact__title { font-size: 1.375rem; }
  .lo-contact__card { padding: 1.25rem; }
  .lo-form__row { grid-template-columns: 1fr; }
  .lo-contact__info-item { font-size: .85rem; }

  .lo-cta-banner { padding: 2.5rem 0; }
  .lo-cta-banner__title { font-size: 1.375rem; }
  .lo-cta-banner__phone { font-size: .9rem; }

  .lo-footer { padding: 2.5rem 0; }
  .lo-footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .lo-footer__brand { grid-column: auto; }
  .lo-footer__social { justify-content: center; }
  .lo-footer__links { text-align: center; }
  .lo-footer__links li { justify-content: center; }
  .lo-footer__contact li { justify-content: center; }
  .lo-footer__col-title { text-align: center; }

  .lo-chat__popup { width: calc(100vw - 1.5rem); right: -.5rem; }

  /* Modal mobile fixes */
  .lo-modal { width: calc(100vw - 2rem); max-height: 90vh; overflow-y: auto; }
  .lo-modal__title { font-size: 1.25rem; }
  .lo-modal__countdown { gap: .375rem; }
  .lo-cd-n { font-size: 1.25rem; min-width: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.0.2 — STATIC HERO BANNER + CASES CAROUSEL + NAV PHONE BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Nav: Prominent Phone Button ──────────────────────────────────────────── */
.lo-nav__phone-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--lo-primary);
  color: #fff !important;
  font-weight: 800;
  font-family: var(--lo-font-heading);
  font-size: .875rem;
  padding: .55rem 1rem;
  border-radius: var(--lo-radius);
  box-shadow: 0 4px 14px rgba(22,163,74,.30);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.lo-nav__phone-btn:hover {
  background: var(--lo-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22,163,74,.40);
}
.lo-nav__phone-btn svg { flex-shrink: 0; }

/* Topbar phone styled to look like a button-y link */
.lo-topbar__phone--btn {
  background: rgba(255,255,255,.18);
  padding: .25rem .75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.30);
  font-size: .8125rem;
  transition: background .2s;
}
.lo-topbar__phone--btn:hover { background: rgba(255,255,255,.30); color: #fff; }

/* ── STATIC HERO BANNER ───────────────────────────────────────────────────── */
.lo-static-hero {
  background: #f6f7f9;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15,23,42,.06) 1px, transparent 0);
  background-size: 18px 18px;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.lo-static-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lo-static-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.lo-static-hero__left { min-width: 0; }

/* Rating link */
.lo-static-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  padding: .45rem .9rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  font-size: .875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.lo-static-hero__rating:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-color: var(--lo-primary);
  color: var(--lo-primary);
}
.lo-static-hero__g-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lo-static-hero__stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: .08em;
}
.lo-static-hero__rating-text { font-size: .85rem; }
.lo-static-hero__rating-text strong { font-weight: 800; }

/* Title */
.lo-static-hero__title {
  font-family: var(--lo-font-heading);
  font-weight: 900;
  font-size: clamp(1.65rem, 5vw, 3.25rem);
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}
.lo-static-hero__title-accent { color: var(--lo-primary); }

.lo-static-hero__sub {
  font-size: clamp(.95rem, 1.4vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* Trust badges */
.lo-static-hero__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* New Google Partner Badge (v1.0.3) */
.lo-partner-badge {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .65rem;
  padding: .65rem 1.1rem .65rem .55rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  min-height: 64px;
}
.lo-partner-badge__bar {
  width: 6px;
  height: 36px;
  background: #34A853;
  border-radius: 3px;
  flex-shrink: 0;
}
.lo-partner-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.lo-partner-badge__google {
  font-family: 'Product Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.lo-partner-badge__label {
  font-family: 'Product Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #5f6368;
  margin-top: 1px;
}

/* New Google Ads Certified Circular Badge (v1.0.3) */
.lo-cert-badge {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.lo-cert-badge__svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.06));
}

/* Founder Link below form (v1.0.3) */
.lo-founder-link {
  display: block;
  margin-top: 1.25rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.lo-founder-link__divider {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin-bottom: 1rem;
}
.lo-founder-link__inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .875rem;
  background: linear-gradient(135deg, rgba(22,163,74,.05), rgba(22,163,74,.10));
  border: 1px solid rgba(22,163,74,.18);
  border-radius: .65rem;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.lo-founder-link:hover .lo-founder-link__inner {
  background: linear-gradient(135deg, rgba(22,163,74,.10), rgba(22,163,74,.18));
  border-color: rgba(22,163,74,.40);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22,163,74,.18);
}
.lo-founder-link__icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--lo-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22,163,74,.30);
}
.lo-founder-link__text { flex: 1; line-height: 1.25; }
.lo-founder-link__label {
  display: block;
  font-family: var(--lo-font-heading);
  font-weight: 800;
  font-size: .95rem;
  color: #0f172a;
  margin-bottom: .15rem;
}
.lo-founder-link__sub {
  display: block;
  font-size: .75rem;
  color: #64748b;
  font-weight: 500;
}
.lo-founder-link__arrow {
  font-size: 1.15rem;
  color: var(--lo-primary);
  font-weight: 700;
  transition: transform .2s;
  flex-shrink: 0;
}
.lo-founder-link:hover .lo-founder-link__arrow { transform: translateX(4px); }
.lo-founder-link[hidden] { display: none; }

/* Form Card */
.lo-static-hero__right { min-width: 0; }
.lo-static-hero__form-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(15,23,42,.10), 0 1px 4px rgba(15,23,42,.06);
  border: 1px solid rgba(226,232,240,.7);
}
.lo-static-hero__form-title {
  font-family: var(--lo-font-heading);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: 1.5rem;
}
.lo-static-hero__form { display: flex; flex-direction: column; gap: .9rem; }
.lo-static-hero__field input,
.lo-static-hero__field textarea,
.lo-static-hero__field-row input {
  width: 100%;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: .9375rem;
  color: #0f172a;
  background: #f4f5f7;
  border: 1px solid #f4f5f7;
  border-radius: .55rem;
  outline: none;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.lo-static-hero__field textarea { resize: vertical; min-height: 5rem; }
.lo-static-hero__field input::placeholder,
.lo-static-hero__field textarea::placeholder,
.lo-static-hero__field-row input::placeholder { color: #94a3b8; }
.lo-static-hero__field input:focus,
.lo-static-hero__field textarea:focus,
.lo-static-hero__field-row input:focus {
  background: #fff;
  border-color: var(--lo-primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,.14);
}
.lo-static-hero__field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.lo-static-hero__submit {
  width: 100%;
  background: var(--lo-primary);
  color: #fff;
  font-family: var(--lo-font-heading);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 1rem;
  border-radius: .55rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: .25rem;
  box-shadow: 0 6px 18px rgba(22,163,74,.30);
}
.lo-static-hero__submit:hover {
  background: var(--lo-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(22,163,74,.40);
}
.lo-static-hero__submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.lo-static-hero__form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-weight: 600;
  font-size: .875rem;
  padding: .75rem 1rem;
  border-radius: .55rem;
  margin-top: .5rem;
}
.lo-static-hero__form-success:not([hidden]) { display: flex; }

/* ── REVIEWS CAROUSEL (v1.0.3) ───────────────────────────────────────────── */
.lo-reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
}
.lo-reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem .25rem 1.5rem;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lo-reviews__track::-webkit-scrollbar { display: none; }
.lo-reviews__track .lo-review {
  flex: 0 0 calc(100% - .5rem);
  scroll-snap-align: start;
  max-width: calc(100% - .5rem);
}
.lo-reviews__nav {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lo-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  z-index: 2;
}
.lo-reviews__nav:hover {
  background: var(--lo-primary);
  color: #fff;
  border-color: var(--lo-primary);
  transform: scale(1.05);
}

/* Review avatar image (real photo instead of letter) */
.lo-review__avatar-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.10);
}

/* Harry image in video testimonial */
.lo-video-author__img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid rgba(22,163,74,.55);
  box-shadow: 0 2px 10px rgba(0,0,0,.20);
}

/* Responsive: reviews carousel >= 640px */
@media (min-width: 640px) {
  .lo-reviews__track .lo-review {
    flex: 0 0 calc(50% - .625rem);
    max-width: calc(50% - .625rem);
  }
}
@media (min-width: 960px) {
  .lo-reviews__track .lo-review {
    flex: 0 0 calc(33.333% - .835rem);
    max-width: calc(33.333% - .835rem);
  }
}
@media (max-width: 639px) {
  .lo-reviews__nav { width: 2.25rem; height: 2.25rem; }
  .lo-reviews__nav svg { width: 16px; height: 16px; }
  .lo-review__avatar-img { width: 2.5rem; height: 2.5rem; }
  .lo-video-author__img { width: 2.75rem; height: 2.75rem; }
  .lo-founder-link__inner { padding: .65rem .75rem; gap: .65rem; }
  .lo-founder-link__icon { width: 2rem; height: 2rem; }
  .lo-founder-link__label { font-size: .875rem; }
  .lo-founder-link__sub { font-size: .7rem; }
}

/* ── CASE STUDIES CAROUSEL ────────────────────────────────────────────────── */
.lo-cases__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lo-cases__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem .25rem 1.5rem;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lo-cases__track::-webkit-scrollbar { display: none; }
.lo-cases__track .lo-case-card {
  flex: 0 0 calc(100% - .5rem);
  scroll-snap-align: start;
  max-width: calc(100% - .5rem);
}
.lo-cases__nav {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lo-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  z-index: 2;
}
.lo-cases__nav:hover {
  background: var(--lo-primary);
  color: #fff;
  border-color: var(--lo-primary);
  transform: scale(1.05);
}
.lo-cases__view-all {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ── RESPONSIVE: ≥ 640px ──────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .lo-static-hero { padding: 4rem 0; }
  .lo-static-hero__field-row { grid-template-columns: 1fr 1fr; }
  .lo-static-hero__form-card { padding: 2.25rem 2rem; }
  .lo-cases__track .lo-case-card {
    flex: 0 0 calc(50% - .625rem);
    max-width: calc(50% - .625rem);
  }
}

/* ── RESPONSIVE: ≥ 960px ──────────────────────────────────────────────────── */
@media (min-width: 960px) {
  .lo-static-hero { padding: 5rem 0 4.5rem; }
  .lo-static-hero__inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
  }
  .lo-cases__track .lo-case-card {
    flex: 0 0 calc(33.333% - .835rem);
    max-width: calc(33.333% - .835rem);
  }
}

/* ── RESPONSIVE: ≥ 1024px ─────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .lo-nav__phone-btn { display: inline-flex; }
}

/* ── RESPONSIVE: < 640px (mobile) ─────────────────────────────────────────── */
@media (max-width: 639px) {
  .lo-static-hero { padding: 2rem 0 2.5rem; }
  .lo-static-hero__inner { gap: 1.75rem; }
  .lo-static-hero__title { font-size: 1.5rem; line-height: 1.15; }
  .lo-static-hero__sub { font-size: .9rem; }
  .lo-static-hero__rating { font-size: .8rem; padding: .35rem .75rem; }
  .lo-static-hero__stars { font-size: .85rem; }
  .lo-static-hero__badges { gap: .625rem; justify-content: flex-start; }
  .lo-partner-badge { padding: .5rem .75rem .5rem .55rem; min-height: 50px; gap: .5rem; }
  .lo-partner-badge__bar { width: 4px; height: 28px; }
  .lo-partner-badge__google { font-size: .95rem; }
  .lo-partner-badge__label { font-size: .9rem; }
  .lo-cert-badge { width: 58px; height: 58px; }
  .lo-static-hero__form-card { padding: 1.5rem 1.25rem; border-radius: 1rem; }
  .lo-static-hero__form-title { font-size: 1.25rem; margin-bottom: 1.1rem; }
  .lo-static-hero__field input,
  .lo-static-hero__field textarea,
  .lo-static-hero__field-row input { padding: .7rem .875rem; font-size: .9rem; }
  .lo-static-hero__submit { padding: .85rem; font-size: .875rem; }

  /* Carousel: hide nav buttons on mobile, rely on swipe */
  .lo-cases__nav { width: 2.25rem; height: 2.25rem; }
  .lo-cases__nav svg { width: 16px; height: 16px; }
  .lo-cases__view-all { margin-top: 1rem; }

  /* Mobile Nav phone link in mobile menu — make it visually a button */
  .lo-nav__mobile-phone {
    background: var(--lo-primary);
    color: #fff !important;
    border-radius: .5rem;
    padding: .8rem .75rem;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(22,163,74,.30);
    font-weight: 800;
  }
}
/* ═══════════════════════════════════════════════════════════════════════════
   END v1.0.2 additions
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── WhatsApp Floating Button ────────────────────────────────────────── */
.lo-whatsapp-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 49;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s ease;
  text-decoration: none;
}
.lo-whatsapp-btn:hover { transform: scale(1.1); }
.lo-whatsapp-btn:active { transform: scale(.95); }
@media (min-width: 640px) {
  .lo-whatsapp-btn { bottom: 5.75rem; right: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.0.4 ADDITIONS — Founder video, chat-form fields, mobile fixes
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── FOUNDER VIDEO (real video instead of placeholder) ──────────────────── */
.lo-founder__video-box--has-video {
  display: block;
  padding: 0;
  background: #000;
  cursor: pointer;
}
.lo-founder__video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1.5rem;
}
.lo-founder__video-overlay-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(15,22,36,.20) 0%, rgba(15,22,36,.55) 100%);
  color: #fff;
  cursor: pointer;
  border-radius: 1.5rem;
  transition: opacity .25s ease;
  z-index: 2;
}
.lo-founder__video-overlay-play.hidden { opacity: 0; pointer-events: none; }
.lo-founder__play-icon-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(22,163,74,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(22,163,74,.55), 0 0 0 6px rgba(255,255,255,.15);
  transition: transform .2s ease;
}
.lo-founder__video-overlay-play:hover .lo-founder__play-icon-btn { transform: scale(1.07); }
.lo-founder__play-label {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .25px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ── CHAT WIDGET extra fields (name + email) ───────────────────────────── */
.lo-chat__field {
  width: 100%;
  padding: .5rem .75rem;
  margin: 0 0 .35rem 0;
  border-radius: .5rem;
  background: var(--lo-gray-50);
  border: 1px solid var(--lo-gray-100);
  font-size: .8125rem;
  outline: none;
}
.lo-chat__field:focus { box-shadow: 0 0 0 2px rgba(22,163,74,.2); border-color: var(--lo-primary); }
.lo-chat__form { flex-direction: column; align-items: stretch; gap: .25rem; padding: .625rem; }
.lo-chat__send-row { display: flex; gap: .5rem; width: 100%; }
.lo-chat__send-row input { flex: 1; padding: .5rem .875rem; border-radius: var(--lo-radius-full); background: var(--lo-gray-50); border: 1px solid var(--lo-gray-100); font-size: .8125rem; outline: none; min-width: 0; }
.lo-chat__send-row input:focus { box-shadow: 0 0 0 2px rgba(22,163,74,.2); border-color: var(--lo-primary); }
.lo-chat__send-row button { width: 2.25rem; height: 2.25rem; border-radius: var(--lo-radius-full); background: var(--lo-primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.lo-chat__send-row button:hover { background: var(--lo-primary-dark); }

/* Slightly taller chat popup so the extra fields fit on small screens */
.lo-chat__popup { height: min(480px, calc(100vh - 6.5rem)); }

/* ── MOBILE RESPONSIVE FIXES (additional) ──────────────────────────────── */
@media (max-width: 639px) {
  /* Chat: keep within viewport */
  .lo-chat__popup {
    width: calc(100vw - 1.5rem);
    right: -.5rem;
    height: min(480px, calc(100vh - 7rem));
  }
  .lo-chat__field { font-size: .85rem; padding: .55rem .75rem; }
  .lo-chat__send-row input { font-size: .85rem; }

  /* Founder section on mobile: video first under the headline, full width */
  .lo-founder__video-box { border-radius: 1rem; }
  .lo-founder__video-el { border-radius: 1rem; }
  .lo-founder__video-overlay-play { border-radius: 1rem; }
  .lo-founder__play-icon-btn { width: 3.75rem; height: 3.75rem; }
  .lo-founder__play-label { font-size: .85rem; }
  .lo-founder__name { font-size: 1.65rem; }
  .lo-founder__btns { flex-direction: column; align-items: stretch; gap: .5rem; }
  .lo-founder__btns .lo-btn { justify-content: center; width: 100%; }

  /* Packages CAD label fits on narrow screens */
  .lo-pkg__period { font-size: .8125rem; word-wrap: break-word; }
  .lo-pkg__amount { font-size: 2rem; }

  /* Static hero phone+email side by side wraps cleanly */
  .lo-static-hero__field-row { grid-template-columns: 1fr; gap: .75rem; }

  /* Promo banner mobile fixes — prevent overflow */
  .lo-promo__mobile { font-size: .65rem; gap: .3rem; padding: .35rem .5rem; }
  .lo-promo__msg-sm { font-size: .65rem; }

  /* Ensure mobile menu has Meet our Founder visible */
  .lo-nav__mobile-link { font-size: .95rem; padding: .65rem .5rem; }

  /* Topbar email might overflow on tiny screens — hide it on <380px */
}
@media (max-width: 380px) {
  .lo-topbar__email { display: none; }
  .lo-topbar__inner { gap: .5rem; }
  .lo-static-hero__title { font-size: 1.35rem; }
  .lo-pkg__amount { font-size: 1.75rem; }
}

/* ── PERFORMANCE: prefer reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── PERFORMANCE: hint to GPU for transformed elements ─────────────────── */
.lo-video-el,
.lo-founder__video-el,
.lo-cases__track,
.lo-reviews__track {
  will-change: transform;
  transform: translateZ(0);
}

/* ── ASPECT-RATIO box for founder video (prevents CLS) ─────────────────── */
.lo-founder__video-box--has-video {
  aspect-ratio: 16 / 9;
  position: relative;
}
