/* =====================================================
   LocalOrbit360 — Main Stylesheet
   Light theme | Blue/Purple/Teal accents
===================================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Container --- */
.lo-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Typography helpers --- */
.lo-text-blue  { color: #2563eb; }
.lo-text-red   { color: #dc2626; }
.lo-text-left  { text-align: left; }
.lo-text-center { text-align: center; }
.lo-mt-8 { margin-top: 2rem; }

/* --- Section headers --- */
.lo-section-header { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.lo-section-title  { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: #0f172a; line-height: 1.15; margin-bottom: 1rem; }
.lo-section-subtitle { font-size: 1.1rem; color: #64748b; line-height: 1.7; }

/* --- Buttons --- */
.lo-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; font-weight: 600; font-size: 1rem;
  transition: all .2s ease; white-space: nowrap; border: 2px solid transparent;
  padding: .7rem 1.4rem;
}
.lo-btn-lg   { padding: .9rem 2rem; font-size: 1.05rem; }
.lo-btn-full { width: 100%; }
.lo-btn-primary {
  background: #2563eb; color: #fff; border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37,99,235,.25);
}
.lo-btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
.lo-btn-outline { background: #fff; color: #1e293b; border-color: #cbd5e1; }
.lo-btn-outline:hover { background: #f8fafc; border-color: #94a3b8; }
.lo-btn-outline-blue { background: #fff; color: #2563eb; border-color: #2563eb; }
.lo-btn-outline-blue:hover { background: #eff6ff; }
.lo-btn-white { background: #fff; color: #1e293b; border-color: #fff; font-weight: 700; }
.lo-btn-white:hover { background: #f1f5f9; }

/* --- Tags / Badges --- */
.lo-tag { display: inline-flex; align-items: center; padding: .2rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.lo-tag-blue  { background: #dbeafe; color: #1d4ed8; }
.lo-tag-green { background: #dcfce7; color: #15803d; }
.lo-tag-teal  { background: #ccfbf1; color: #0f766e; }

/* --- Scroll Reveal --- */
.lo-reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.lo-revealed { opacity: 1; transform: translateY(0); }

/* =====================================================
   ANNOUNCEMENT BAR
===================================================== */
.lo-announcement-bar {
  background: linear-gradient(90deg, #1d4ed8, #0891b2);
  padding: .65rem 1rem; text-align: center;
}
.lo-announcement-inner {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; flex-wrap: wrap;
}
.lo-announcement-icon { font-size: 1.1rem; }
.lo-announcement-text { color: #fff; font-size: .9rem; }
.lo-announcement-cta {
  background: #fff; color: #1d4ed8; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px; font-size: .82rem;
  transition: all .2s; white-space: nowrap;
  animation: lo-pulse 2s infinite;
}
.lo-announcement-cta:hover { background: #f0f9ff; transform: scale(1.04); }
@keyframes lo-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* =====================================================
   HEADER
===================================================== */
.lo-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent; z-index: 1000;
  transition: background .3s, box-shadow .3s;
  padding: 1rem 0;
  /* Offset for announcement bar — adjust if bar height changes */
  margin-top: 44px;
}
.lo-header-sticky { background: #fff; box-shadow: 0 1px 12px rgba(0,0,0,.08); }
.lo-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

/* Logo */
.lo-logo { display: flex; align-items: center; gap: .5rem; }
.lo-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.lo-logo-text { font-size: 1.2rem; font-weight: 800; color: #0f172a; }
.lo-logo-text span { color: #2563eb; }

/* Nav */
.lo-nav { flex: 1; display: flex; justify-content: center; }
.lo-nav-list { display: flex; gap: .25rem; align-items: center; }
.lo-nav-list li a {
  padding: .4rem .85rem; border-radius: 6px; font-size: .92rem;
  font-weight: 500; color: #475569; transition: color .2s, background .2s;
}
.lo-nav-list li a:hover { color: #2563eb; background: #eff6ff; }

/* Header Actions */
.lo-header-actions { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.lo-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none; border: none; padding: 4px;
}
.lo-hamburger span {
  display: block; height: 2px; background: #1e293b; border-radius: 2px;
  transition: all .3s;
}
.lo-hamburger.lo-hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lo-hamburger.lo-hamburger-open span:nth-child(2) { opacity: 0; }
.lo-hamburger.lo-hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.lo-mobile-nav {
  display: none; background: #fff; border-top: 1px solid #e2e8f0;
  padding: 1.5rem;
}
.lo-mobile-nav.lo-mobile-nav-open { display: block; }
.lo-mobile-nav-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.lo-mobile-nav-list a { display: block; padding: .7rem 1rem; border-radius: 8px; font-weight: 500; color: #475569; }
.lo-mobile-nav-list a:hover { background: #f1f5f9; color: #2563eb; }
.lo-mobile-cta { width: 100%; text-align: center; margin-top: .5rem; }

/* =====================================================
   HERO
===================================================== */
.lo-hero {
  position: relative; overflow: hidden;
  background: #f8fafc;
  padding: 10rem 0 6rem;
  /* account for fixed header + announcement bar */
}
.lo-hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(120px);
  animation: lo-float 8s ease-in-out infinite;
}
.lo-hero-orb-1 { width: 50%; height: 60%; top: -15%; left: -10%; background: rgba(37,99,235,.06); }
.lo-hero-orb-2 { width: 40%; height: 50%; top: 20%; right: -10%; background: rgba(124,58,237,.05); animation-delay: 2s; animation-duration: 10s; }
@keyframes lo-float { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.lo-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Fade-up / fade-right animations (fire on load) */
.lo-fade-up   { animation: lo-anim-up .7s ease forwards; }
.lo-fade-right{ animation: lo-anim-right .8s .2s ease both; }
@keyframes lo-anim-up    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes lo-anim-right { from { opacity:0; transform:translateX(36px); } to { opacity:1; transform:translateX(0); } }

/* Badge */
.lo-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 999px;
  padding: .35rem .9rem; font-size: .85rem; font-weight: 600; color: #475569;
  margin-bottom: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.lo-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: lo-pulse 2s infinite; }

/* Hero headline */
.lo-hero-headline {
  display: flex; flex-direction: column;
  font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 900;
  line-height: 1.08; color: #0f172a; margin-bottom: 1rem;
}
.lo-hero-sub { font-size: 1.15rem; color: #475569; font-weight: 500; margin-bottom: 1.5rem; }

/* Price-outcome pill */
.lo-price-outcome {
  display: inline-flex; align-items: center;
  background: linear-gradient(90deg,#2563eb,#1d4ed8);
  border-radius: 999px; padding: .75rem 1.5rem;
  gap: .75rem; margin-bottom: 2rem;
  box-shadow: 0 4px 18px rgba(37,99,235,.3);
}
.lo-price-badge, .lo-outcome-badge { color: #fff; font-weight: 700; font-size: 1.05rem; }
.lo-price-arrow { color: rgba(255,255,255,.75); font-size: 1.2rem; }

/* Hero buttons */
.lo-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

/* Micro trust */
.lo-trust-micro { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .88rem; color: #64748b; font-weight: 500; }
.lo-check { color: #22c55e; font-weight: 800; margin-right: .2rem; }

/* --- Hero Dashboard --- */
.lo-hero-dashboard { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }

.lo-dash-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.07);
  overflow: hidden;
}

/* Map card */
.lo-map-card { grid-column: 1; }
.lo-map-area {
  height: 90px; background: #dbeafe;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lo-map-pin { font-size: 2rem; }
.lo-map-grid {
  position: absolute; inset: 0; opacity: .2;
  background-image: linear-gradient(rgba(100,116,139,.4) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(100,116,139,.4) 1px, transparent 1px);
  background-size: 14px 14px;
}
.lo-map-listings { padding: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.lo-map-listing { display: flex; align-items: center; justify-content: space-between; }
.lo-map-listing-top { background: #f8fafc; border-radius: 8px; padding: .5rem .6rem; }
.lo-map-listing-other { padding: .2rem .6rem; opacity: .65; }
.lo-stars { color: #f59e0b; font-size: .85rem; }
.lo-stars-sm { color: #f59e0b; font-size: .72rem; }
.lo-listing-name { font-weight: 700; font-size: .82rem; color: #0f172a; }
.lo-listing-name-sm { font-size: .78rem; color: #64748b; }
.lo-listing-meta { display: flex; align-items: center; gap: .4rem; margin-top: .25rem; }
.lo-calls-label { font-size: .72rem; color: #64748b; font-weight: 500; }

/* Jobs card */
.lo-jobs-card { grid-column: 2; padding: 1rem; }
.lo-jobs-header { display: flex; align-items: center; gap: .4rem; margin-bottom: .75rem; }
.lo-jobs-icon { font-size: 1rem; }
.lo-jobs-title { font-weight: 700; font-size: .9rem; color: #0f172a; }
.lo-jobs-list { display: flex; flex-direction: column; gap: .65rem; }
.lo-job-item {
  display: flex; align-items: flex-start; gap: .5rem;
  transition: opacity .5s;
}
.lo-job-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; margin-top: 4px; }
.lo-job-text { font-size: .78rem; font-weight: 600; color: #0f172a; }
.lo-job-time { font-size: .7rem; color: #94a3b8; }

/* Chart card */
.lo-chart-card { grid-column: 1 / -1; padding: 1rem; }
.lo-chart-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: .75rem; }
.lo-chart-title { font-weight: 700; font-size: .9rem; color: #0f172a; }
.lo-chart-value { font-size: 1.6rem; font-weight: 900; color: #0f172a; }
.lo-chart-bars { display: flex; align-items: flex-end; gap: .35rem; height: 60px; }
.lo-bar {
  flex: 1; background: #bfdbfe; border-radius: 4px 4px 0 0;
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  transition: height .6s ease;
}
.lo-bar-active { background: #2563eb; }
.lo-bar span { font-size: .65rem; color: #64748b; padding-bottom: 2px; position: absolute; bottom: -18px; }

/* =====================================================
   FOUNDER VIDEO SECTION
===================================================== */
.lo-video-section { background: #0f172a; padding: 6rem 0; }
.lo-video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Review stack */
.lo-review-stack { display: flex; flex-direction: column; gap: 1rem; }
.lo-review-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 1.25rem; backdrop-filter: blur(8px);
}
.lo-review-card-2 { transform: translateX(16px); }
.lo-review-card-3 { transform: translateX(8px); }
.lo-review-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.lo-reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%; color: #fff;
  font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lo-reviewer-name { font-weight: 700; font-size: .88rem; color: #fff; }
.lo-review-source { font-size: .72rem; color: #64748b; }
.lo-review-stars { color: #f59e0b; font-size: .82rem; margin-bottom: .4rem; }
.lo-review-text { font-size: .82rem; color: #94a3b8; line-height: 1.5; }

/* Stat grid */
.lo-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1rem; }
.lo-stat-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: .9rem 1rem; }
.lo-stat-number { font-size: 1.4rem; font-weight: 900; color: #60a5fa; }
.lo-stat-label  { font-size: .75rem; color: #94a3b8; margin-top: .15rem; }

/* Video wrap */
.lo-video-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.lo-video-headline { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; line-height: 1.2; }

.lo-video-player {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/9; background: #1e293b;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lo-video-thumb {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  position: relative; cursor: pointer;
}
.lo-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: #2563eb; display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 20px rgba(37,99,235,.5);
}
.lo-play-btn:hover { transform: scale(1.08); background: #1d4ed8; }
.lo-video-label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 1rem; }

.lo-video-caption { display: flex; align-items: center; gap: .75rem; }
.lo-video-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lo-video-name { font-weight: 700; font-size: .9rem; color: #fff; }
.lo-video-desc { font-size: .78rem; color: #64748b; }

/* =====================================================
   FREE OFFER SECTION
===================================================== */
.lo-free-offer { background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%); padding: 6rem 0; }
.lo-offer-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.lo-offer-card {
  background: #fff; border-radius: 14px; border: 1px solid #e2e8f0;
  padding: 1.5rem; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.lo-offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(37,99,235,.12); }
.lo-offer-icon { font-size: 2rem; margin-bottom: .75rem; }
.lo-offer-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
.lo-offer-card p { font-size: .85rem; color: #64748b; }

/* =====================================================
   SOCIAL PROOF STRIP
===================================================== */
.lo-social-proof { padding: 2.5rem 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; overflow: hidden; }
.lo-proof-label { text-align: center; font-size: .82rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.lo-proof-track {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: lo-scroll 30s linear infinite;
}
.lo-proof-pill {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 999px;
  padding: .45rem 1.1rem; font-size: .85rem; font-weight: 600; color: #475569; white-space: nowrap;
}
@keyframes lo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================
   TRUST STATS
===================================================== */
.lo-trust-stats { padding: 6rem 0; background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }
.lo-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.lo-stat-card {
  background: #fff; border-radius: 18px; border: 1px solid #e2e8f0;
  padding: 2.5rem 1.5rem; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.lo-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.lo-stat-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1.25rem;
}
.lo-icon-blue   { background: #dbeafe; }
.lo-icon-purple { background: #ede9fe; }
.lo-icon-teal   { background: #ccfbf1; }
.lo-icon-green  { background: #dcfce7; }
.lo-stat-card-number { font-size: 2.75rem; font-weight: 900; color: #0f172a; margin-bottom: .25rem; }
.lo-stat-card-label  { font-size: 1rem; font-weight: 700; color: #334155; margin-bottom: .25rem; }
.lo-stat-card-desc   { font-size: .82rem; color: #94a3b8; }

/* =====================================================
   SERVICES
===================================================== */
.lo-services { padding: 6rem 0; background: #fff; }
.lo-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }
.lo-service-card {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 2rem 1.5rem; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.lo-service-card:hover {
  transform: translateY(-4px); background: #fff;
  box-shadow: 0 8px 28px rgba(37,99,235,.1); border-color: #93c5fd;
}
.lo-service-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.lo-service-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: .35rem; }
.lo-service-card p { font-size: .85rem; color: #64748b; }

/* =====================================================
   PROBLEM VS SOLUTION
===================================================== */
.lo-pvs { padding: 6rem 0; background: #f8fafc; }
.lo-pvs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.lo-pvs-col { border-radius: 16px; padding: 2.5rem; }
.lo-pvs-before { background: #fff1f2; border: 1px solid #fecdd3; }
.lo-pvs-after  { background: #f0fdf4; border: 1px solid #bbf7d0; }
.lo-pvs-col h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 1.5rem; color: #0f172a; }
.lo-pvs-col ul { display: flex; flex-direction: column; gap: .85rem; }
.lo-pvs-col li { display: flex; align-items: center; gap: .65rem; font-size: .95rem; color: #334155; font-weight: 500; }
.lo-x-icon { color: #dc2626; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.lo-v-icon { color: #16a34a; font-weight: 800; font-size: 1rem; flex-shrink: 0; }

/* =====================================================
   PACKAGES
===================================================== */
.lo-packages { padding: 6rem 0; position: relative; overflow: hidden; background: #fff; }
.lo-packages-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px);
  animation: lo-float 10s ease-in-out infinite;
}
.lo-packages-bg-orb-1 { width: 500px; height: 500px; top: -15%; left: -10%; background: rgba(37,99,235,.06); }
.lo-packages-bg-orb-2 { width: 400px; height: 400px; bottom: -10%; right: -8%;  background: rgba(124,58,237,.05); animation-delay: 3s; }

.lo-billing-toggle {
  display: flex; justify-content: center; gap: .25rem;
  background: #f1f5f9; border-radius: 999px; padding: .25rem; width: fit-content;
  margin: 0 auto 3rem;
}
.lo-toggle-btn {
  padding: .5rem 1.4rem; border-radius: 999px; border: none;
  font-size: .9rem; font-weight: 600; color: #64748b; background: none; transition: all .2s;
}
.lo-toggle-active { background: #fff; color: #1d4ed8; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.lo-save-badge {
  display: inline-block; background: #dcfce7; color: #15803d;
  font-size: .68rem; font-weight: 700; padding: .1rem .4rem; border-radius: 999px; margin-left: .4rem;
}

.lo-packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1050px; margin: 0 auto; }
.lo-pkg-card {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 20px;
  padding: 2rem; display: flex; flex-direction: column; position: relative;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.lo-pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.lo-pkg-popular {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.15), 0 8px 30px rgba(37,99,235,.15);
}
.lo-pkg-ribbon {
  position: absolute; top: -1px; right: -1px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff; font-size: .72rem; font-weight: 800;
  padding: .3rem .9rem .3rem 1.2rem; border-radius: 0 20px 0 20px;
  letter-spacing: .04em; text-transform: uppercase;
}
.lo-pkg-header { margin-bottom: 1.5rem; }
.lo-pkg-header h3 { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: .25rem; }
.lo-pkg-best { font-size: .82rem; color: #64748b; margin-bottom: 1rem; }
.lo-pkg-from { display: block; font-size: .72rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; }
.lo-pkg-amount { display: block; font-size: 2.25rem; font-weight: 900; color: #0f172a; line-height: 1.1; }
.lo-pkg-mo { font-size: 1rem; font-weight: 600; color: #94a3b8; }
.lo-pkg-outcome {
  display: inline-block; margin-top: .75rem;
  background: #dcfce7; color: #15803d; font-size: .78rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 999px; border: 1px solid #bbf7d0;
}
.lo-pkg-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; flex: 1; margin-bottom: 1.75rem; }
.lo-pkg-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: #334155; }
.lo-pkg-check { color: #2563eb; font-weight: 800; flex-shrink: 0; }
.lo-pkg-cta { width: 100%; text-align: center; margin-top: auto; }

/* =====================================================
   RESULTS
===================================================== */
.lo-results { padding: 6rem 0; background: #f8fafc; }
.lo-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lo-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.lo-metric-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1.5rem; }
.lo-metric-label { font-size: .82rem; color: #64748b; margin-bottom: .4rem; font-weight: 500; }
.lo-metric-value { font-size: 2.25rem; font-weight: 900; color: #0f172a; }

.lo-chart-wrap { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.lo-chart-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.lo-chart-title { font-size: 1rem; font-weight: 700; color: #0f172a; }
.lo-chart-subtitle { font-size: .78rem; color: #94a3b8; }
.lo-bar-chart { display: flex; align-items: flex-end; gap: .5rem; height: 200px; padding-bottom: 1.5rem; margin-top: 1rem; }
.lo-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: .25rem; height: 100%; }
.lo-bar-fill {
  width: 100%; background: #bfdbfe; border-radius: 6px 6px 0 0;
  display: flex; align-items: flex-start; justify-content: center;
  transition: height .6s ease;
}
.lo-bar-fill-active { background: #2563eb; }
.lo-bar-val { font-size: .68rem; font-weight: 700; color: #1d4ed8; padding-top: 4px; }
.lo-bar-fill-active .lo-bar-val { color: #fff; }
.lo-bar-month { font-size: .7rem; color: #94a3b8; }

/* =====================================================
   INDUSTRIES
===================================================== */
.lo-industries { padding: 6rem 0; background: #fff; }
.lo-industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.lo-industry-card {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 1.5rem 1rem; text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.lo-industry-card:hover {
  transform: translateY(-3px); background: #eff6ff;
  border-color: #93c5fd; box-shadow: 0 4px 14px rgba(37,99,235,.1);
}
.lo-industry-icon { font-size: 2rem; margin-bottom: .5rem; }
.lo-industry-label { font-size: .82rem; font-weight: 600; color: #334155; }

/* =====================================================
   GOOGLE REVIEWS
===================================================== */
.lo-google-reviews { padding: 6rem 0; background: #f8fafc; }
.lo-rating-summary { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 1rem; }
.lo-rating-g {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.lo-rating-stars { color: #f59e0b; font-size: 1rem; }
.lo-rating-sub { font-size: .82rem; color: #64748b; }

.lo-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.lo-review-card-full {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid #2563eb;
}
.lo-review-card-full:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.lo-review-card-full .lo-review-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.lo-review-g-logo {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #4285f4 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75%);
  color: #fff; font-weight: 900; font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.lo-review-card-full .lo-reviewer-name { font-weight: 700; font-size: .9rem; color: #0f172a; }
.lo-review-card-full .lo-review-source { font-size: .72rem; color: #94a3b8; }
.lo-review-card-full .lo-review-stars { color: #f59e0b; font-size: .9rem; margin-bottom: .75rem; }
.lo-review-card-full .lo-review-text { font-size: .875rem; color: #475569; line-height: 1.6; }

/* =====================================================
   TESTIMONIALS
===================================================== */
.lo-testimonials { padding: 6rem 0; background: #fff; }
.lo-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.lo-testimonial-card {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 2rem; transition: transform .2s, box-shadow .2s;
}
.lo-testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.lo-testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; }
.lo-testimonial-text { font-size: .95rem; color: #334155; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.lo-testimonial-author { display: flex; align-items: center; gap: .75rem; }
.lo-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lo-testimonial-name { font-weight: 700; font-size: .9rem; color: #0f172a; }
.lo-testimonial-role { font-size: .78rem; color: #64748b; }

/* =====================================================
   FREE AUDIT CTA
===================================================== */
.lo-audit-cta { padding: 6rem 0; background: linear-gradient(135deg, #2563eb, #7c3aed); }
.lo-audit-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.lo-audit-inner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.lo-audit-inner p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* =====================================================
   CONTACT
===================================================== */
.lo-contact { padding: 6rem 0; background: #f8fafc; }
.lo-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.lo-contact-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.lo-step { display: flex; align-items: center; gap: 1rem; }
.lo-step-num {
  width: 38px; height: 38px; border-radius: 50%; background: #dbeafe;
  color: #2563eb; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lo-step span { font-size: .95rem; color: #334155; font-weight: 500; }
.lo-contact-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .82rem; color: #94a3b8; font-weight: 500; }
.lo-contact-form-wrap { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,.06); }

/* Form elements */
.lo-form { display: flex; flex-direction: column; gap: 1rem; }
.lo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lo-form-group { display: flex; flex-direction: column; gap: .35rem; }
.lo-form-group label { font-size: .82rem; font-weight: 600; color: #475569; }
.lo-form-group input,
.lo-form-group select,
.lo-form-group textarea {
  border: 1.5px solid #e2e8f0; border-radius: 8px; padding: .7rem .9rem;
  font-size: .92rem; font-family: inherit; color: #0f172a;
  background: #f8fafc; transition: border-color .2s;
  width: 100%;
}
.lo-form-group input:focus,
.lo-form-group select:focus,
.lo-form-group textarea:focus {
  outline: none; border-color: #2563eb;
  background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.lo-form-check { display: flex; align-items: flex-start; gap: .65rem; }
.lo-form-check input[type="checkbox"] { accent-color: #2563eb; width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.lo-form-check label { font-size: .88rem; color: #475569; cursor: pointer; line-height: 1.4; }

.lo-form-success { text-align: center; padding: 3rem 1rem; }
.lo-success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #dcfce7;
  color: #16a34a; font-size: 1.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.lo-form-success h3 { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin-bottom: .5rem; }
.lo-form-success p { color: #64748b; }

/* =====================================================
   FOOTER
===================================================== */
.lo-footer { background: #0f172a; padding: 5rem 0 2rem; }
.lo-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.lo-footer-brand {}
.lo-footer-tagline { color: #64748b; font-size: .88rem; margin: 1rem 0; line-height: 1.6; max-width: 260px; }
.lo-footer-contact p { color: #64748b; font-size: .88rem; margin-bottom: .4rem; }
.lo-footer-contact a { color: #60a5fa; transition: color .2s; }
.lo-footer-contact a:hover { color: #93c5fd; }
.lo-footer-col h4 { font-size: .88rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.25rem; }
.lo-footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.lo-footer-col ul li a { font-size: .88rem; color: #64748b; transition: color .2s; }
.lo-footer-col ul li a:hover { color: #60a5fa; }
.lo-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.lo-footer-bottom p { font-size: .8rem; color: #475569; }

/* =====================================================
   BLOG / PAGE LAYOUTS
===================================================== */
.lo-main { padding-top: 120px; }
.lo-blog { padding: 4rem 0; }
.lo-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lo-blog-card { border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.lo-blog-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
.lo-blog-content { padding: 1.5rem; }
.lo-blog-meta { font-size: .78rem; color: #94a3b8; margin-bottom: .5rem; }
.lo-blog-content h2 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: .75rem; line-height: 1.3; }
.lo-blog-content h2 a { color: #0f172a; }
.lo-blog-content h2 a:hover { color: #2563eb; }
.lo-blog-content p { font-size: .88rem; color: #64748b; margin-bottom: 1.25rem; }
.lo-page-content { max-width: 800px; margin: 2rem auto 4rem; }
.lo-page-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #0f172a; margin-bottom: 1.5rem; }
.lo-entry-content { color: #334155; font-size: 1.05rem; line-height: 1.8; }
.lo-entry-content p { margin-bottom: 1.25rem; }
.lo-entry-content h2,h3,h4 { color: #0f172a; margin: 2rem 0 1rem; font-weight: 700; }
.lo-single-thumbnail { margin-bottom: 2rem; border-radius: 14px; overflow: hidden; }
.lo-pagination { margin-top: 3rem; }
.lo-archive-header { margin-bottom: 3rem; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .lo-packages-grid { grid-template-columns: 1fr 1fr; }
  .lo-footer-grid    { grid-template-columns: 1fr 1fr; }
  .lo-hero-inner     { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .lo-nav, .lo-header-actions .lo-btn:not(.lo-hamburger) { display: none; }
  .lo-hamburger { display: flex; }

  .lo-hero { padding: 8rem 0 4rem; }
  .lo-hero-inner { grid-template-columns: 1fr; }
  .lo-hero-dashboard { grid-template-columns: 1fr; }
  .lo-map-card, .lo-jobs-card { grid-column: 1; }

  .lo-video-inner     { grid-template-columns: 1fr; }
  .lo-pvs-grid        { grid-template-columns: 1fr; }
  .lo-packages-grid   { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .lo-results-grid    { grid-template-columns: 1fr; }
  .lo-contact-grid    { grid-template-columns: 1fr; }
  .lo-footer-grid     { grid-template-columns: 1fr; gap: 2rem; }

  .lo-form-row        { grid-template-columns: 1fr; }
  .lo-hero-btns       { flex-direction: column; }
  .lo-price-outcome   { flex-direction: column; gap: .4rem; text-align: center; }

  .lo-review-card-2, .lo-review-card-3 { transform: none; }
}

@media (max-width: 480px) {
  .lo-announcement-text strong { display: none; }
  .lo-trust-micro { gap: 1rem; }
  .lo-stat-grid { grid-template-columns: 1fr 1fr; }
  .lo-metrics-grid { grid-template-columns: 1fr; }
  .lo-industries-grid { grid-template-columns: repeat(3, 1fr); }
}
