@import url("colors_and_type.css");

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--lvb-page);
  color: var(--lvb-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--lvb-cyan-700); text-decoration: none; }
a:hover { color: var(--lvb-cyan-900); }

/* ============ HEADER ============ */
.lvb-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--lvb-border-soft);
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 1.05rem; font-weight: 900; color: var(--lvb-ink); letter-spacing: -0.3px; }
.brand-tagline { font-size: 0.7rem; color: var(--lvb-mid-2); font-weight: 500; letter-spacing: 0.3px; }
.header-nav { display: flex; gap: 22px; align-items: center; }
.header-nav a {
  font-size: 0.88rem; font-weight: 600; color: var(--lvb-mid);
  transition: color .15s;
}
.header-nav a:hover { color: var(--lvb-ink); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lvb-orange); color: white !important;
  font-size: 0.88rem; font-weight: 700; padding: 10px 18px;
  border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: 0.2s;
  box-shadow: 0 2px 10px rgba(249,115,22,0.25);
  white-space: nowrap;
}
.header-cta:hover { background: var(--lvb-orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.35); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 88px 32px 96px;
  background:
    radial-gradient(1100px 600px at 75% -10%, rgba(34,211,238,0.18), transparent 60%),
    radial-gradient(800px 500px at 5% 20%, rgba(37,99,235,0.10), transparent 60%),
    linear-gradient(180deg, #FCFEFF 0%, #F2F8FB 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 56px; align-items: center;
}
@media (max-width: 820px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-mascot-wrap { margin: 0 auto; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--lvb-border);
  color: var(--lvb-ink);
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px 7px 8px; border-radius: 99px; margin-bottom: 26px;
  box-shadow: 0 2px 12px rgba(11,18,32,0.04);
  white-space: nowrap;
  max-width: 100%;
}
.hero-pill > span { white-space: nowrap; }
@media (max-width: 540px) {
  .hero-pill { white-space: normal; text-align: left; }
}
.hero-pill .avatar {
  width: 22px; height: 22px; border-radius: 99px;
  background: linear-gradient(135deg, var(--lvb-cyan), var(--lvb-blue));
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.7rem;
  flex-shrink: 0;
}
.hero-pill .green-dot {
  width: 7px; height: 7px; background: var(--lvb-green); border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 900;
  color: var(--lvb-ink); letter-spacing: -1.5px; line-height: 1.05;
  margin: 0 0 22px;
}
.hero-h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--lvb-cyan-700), var(--lvb-blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-hook {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: var(--lvb-mid); max-width: 560px; margin: 0 0 36px; line-height: 1.7;
}
@media (max-width: 820px) { .hero-hook { margin-left: auto; margin-right: auto; } }
.hero-hook strong { color: var(--lvb-ink); font-weight: 700; }

.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 820px) { .hero-cta-wrap { justify-content: center; } }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lvb-orange); color: white;
  font-size: 1.02rem; font-weight: 800; padding: 16px 28px;
  border-radius: 12px; border: none; cursor: pointer;
  text-decoration: none; transition: 0.2s; letter-spacing: -0.2px;
  box-shadow: var(--shadow-cta-orange);
}
.cta-btn:hover { background: var(--lvb-orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-cta-orange-h); }
.cta-btn:active { transform: scale(0.98); }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--lvb-ink);
  font-size: 0.98rem; font-weight: 700; padding: 15px 22px;
  border-radius: 12px; border: 1px solid var(--lvb-border);
  text-decoration: none; transition: 0.2s;
}
.cta-ghost:hover { border-color: var(--lvb-cyan-700); color: var(--lvb-cyan-900); transform: translateY(-1px); }

.hero-trust {
  margin-top: 22px; display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--lvb-mid-2);
}
@media (max-width: 820px) { .hero-trust { justify-content: center; } }
.hero-trust .check {
  width: 18px; height: 18px; border-radius: 99px;
  background: var(--tint-green-soft); color: var(--lvb-green-dark);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900;
  border: 1px solid var(--tint-green-border);
}

/* MASCOT */
.hero-mascot-wrap { position: relative; width: 280px; display: flex; flex-direction: column; align-items: center; }
.mascot-glow { position: absolute; inset: -30px; background: radial-gradient(ellipse, rgba(34,211,238,0.28) 0%, transparent 70%); border-radius: 50%; }
.mascot-svg { width: 220px; height: 260px; filter: drop-shadow(0 14px 40px rgba(34,211,238,0.30)); animation: botFloat 4s ease-in-out infinite; }
@keyframes botFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.bot-eye, .bot-eye-right { animation: eyeBlink 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.bot-eye-right { animation-delay: 0.08s; }
@keyframes eyeBlink { 0%,92%,100%{transform:scaleY(1)} 95%{transform:scaleY(0.08)} }
.bot-antenna-tip { animation: antennaPulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes antennaPulse { 0%,100%{opacity:1} 50%{opacity:0.55} }
.bot-chest-light { animation: chestPulse 2.5s ease-in-out infinite; }
@keyframes chestPulse { 0%,100%{opacity:0.9} 50%{opacity:0.4} }

.mascot-bubble {
  position: relative;
  background: white; border-radius: 14px 14px 14px 4px;
  padding: 12px 16px; font-size: 0.82rem; font-weight: 600;
  color: var(--lvb-ink); text-align: left; max-width: 240px;
  box-shadow: 0 10px 28px rgba(11,18,32,0.10);
  border: 1px solid var(--lvb-border-soft);
  margin-top: 14px; animation: bubblePop 0.5s ease 0.5s both;
}
.mascot-bubble .greet { color: var(--lvb-cyan-900); font-weight: 800; display: block; margin-bottom: 2px; }
@keyframes bubblePop { from { opacity: 0; transform: scale(0.85) translateY(6px); } to { opacity: 1; transform: scale(1) translateY(0); } }

@keyframes livePulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(16,185,129,0.6);} 50%{opacity:0.7;box-shadow:0 0 0 5px rgba(16,185,129,0);} }

/* ============ SECTIONS — shared ============ */
.section { padding: 96px 32px; }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-inner.narrow { max-width: 920px; }
.sec-inner.center { text-align: center; }
.sec-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-title {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem); font-weight: 900;
  color: var(--lvb-ink); letter-spacing: -0.6px; line-height: 1.15;
  margin: 0 0 14px;
  text-wrap: balance;
}
.sec-title .accent {
  background: linear-gradient(90deg, var(--lvb-cyan-700), var(--lvb-blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  font-size: 1.05rem; color: var(--lvb-mid); line-height: 1.7; margin: 0 auto;
  max-width: 580px; text-wrap: pretty;
}
.lvb-eyebrow.on-light {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--lvb-cyan-700);
  margin-bottom: 12px;
}

/* ============ SECTION: WORK TOGETHER (replaces problem) ============ */
.sec-work { background: var(--lvb-surface-1); border-top: 1px solid var(--lvb-border-soft); border-bottom: 1px solid var(--lvb-border-soft); }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.work-card {
  background: white; border: 1px solid var(--lvb-border-soft);
  border-radius: 16px; padding: 28px 26px; transition: 0.25s;
  position: relative;
}
.work-card:hover { border-color: var(--tint-cyan-border); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,211,238,0.10); }
.work-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--tint-cyan-soft); border: 1px solid var(--tint-cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.work-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--lvb-ink);
  margin: 0 0 8px; letter-spacing: -0.2px;
}
.work-card p { font-size: 0.92rem; color: var(--lvb-mid); line-height: 1.65; margin: 0 0 14px; }
.work-examples { display: flex; flex-direction: column; gap: 6px; }
.work-examples li {
  list-style: none;
  font-size: 0.84rem; color: var(--lvb-mid-2);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.work-examples li::before {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--lvb-cyan);
}

/* ============ SECTION: HOW WE'LL WORK TOGETHER (approach) ============ */
.sec-approach { background: var(--lvb-page); }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.approach-card {
  background: var(--lvb-surface-1); border: 1px solid var(--lvb-border-soft);
  border-radius: 16px; padding: 32px 28px; transition: 0.25s;
}
.approach-card:hover { background: white; border-color: var(--tint-cyan-border); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,211,238,0.08); }
.approach-num {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--lvb-cyan-700), var(--lvb-cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: white; margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(34,211,238,0.32);
}
.approach-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--lvb-ink);
  margin: 0 0 10px; letter-spacing: -0.2px;
}
.approach-card p { font-size: 0.92rem; color: var(--lvb-mid); line-height: 1.7; margin: 0; }
.approach-time {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--lvb-cyan-900);
  background: var(--tint-cyan-soft);
  border: 1px solid var(--tint-cyan-border);
  padding: 3px 10px; border-radius: 99px; margin-top: 14px;
}

/* ============ SECTION: WHY LOCAL ============ */
.sec-who { background: var(--lvb-surface-1); border-top: 1px solid var(--lvb-border-soft); }
.local-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
@media (min-width: 720px) { .local-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .local-grid { grid-template-columns: repeat(3, 1fr); } }
.local-card {
  background: white; border: 1px solid var(--lvb-border-soft);
  border-radius: 16px; padding: 28px 26px; transition: 0.25s;
}
.local-card:hover { border-color: var(--tint-cyan-border); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,211,238,0.10); }
.local-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--tint-cyan-soft); border: 1px solid var(--tint-cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.local-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--lvb-ink);
  margin: 0 0 8px; letter-spacing: -0.2px;
}
.local-card p { font-size: 0.92rem; color: var(--lvb-mid); line-height: 1.65; margin: 0; }

.local-map {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  background: white; border: 1px solid var(--lvb-border);
  border-radius: 16px; padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(11,18,32,0.04);
}
.local-map-pin {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lvb-cyan-700), var(--lvb-cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 8px 24px rgba(34,211,238,0.35);
}
.local-map-label {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--lvb-cyan-700); margin-bottom: 4px;
}
.local-map-cities {
  font-size: 1rem; font-weight: 700; color: var(--lvb-ink); line-height: 1.5;
  text-wrap: pretty;
}
@media (max-width: 540px) {
  .local-map { flex-direction: column; align-items: flex-start; }
}

/* ============ SECTION: WHY ME ============ */
.sec-why { background: var(--lvb-page); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.why-pillar {
  background: white; border: 1px solid var(--lvb-border-soft);
  border-radius: 16px; padding: 28px 24px; transition: 0.2s;
}
.why-pillar:hover { border-color: var(--tint-cyan-border); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,211,238,0.08); }
.why-pillar .why-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--tint-cyan-soft); border: 1px solid var(--tint-cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.why-pillar h3 { font-size: 1rem; font-weight: 800; color: var(--lvb-ink); margin: 0 0 8px; letter-spacing: -0.2px; }
.why-pillar p { font-size: 0.9rem; color: var(--lvb-mid); line-height: 1.65; margin: 0; }

/* ============ SECTION: FAQ ============ */
.sec-faq { background: var(--lvb-surface-1); border-top: 1px solid var(--lvb-border-soft); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--lvb-border-soft); border-radius: 14px;
  overflow: hidden; transition: 0.2s;
}
.faq-item.open { border-color: var(--tint-cyan-border); box-shadow: 0 8px 24px rgba(34,211,238,0.08); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-size: 1rem; font-weight: 700; color: var(--lvb-ink);
  cursor: pointer; text-align: left; font-family: inherit;
}
.faq-q .chev {
  width: 24px; height: 24px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 99px; background: var(--lvb-surface-1);
  color: var(--lvb-mid); transition: 0.25s;
}
.faq-item.open .chev { background: var(--lvb-cyan); color: white; transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .25s ease;
  padding: 0 24px;
  color: var(--lvb-mid); font-size: 0.95rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ============ FINAL CTA / BOOK A CALL ============ */
.sec-cta {
  position: relative; overflow: hidden;
  padding: 96px 32px;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(34,211,238,0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(37,99,235,0.10), transparent 60%),
    linear-gradient(180deg, #F2F8FB 0%, #E6F3F7 100%);
}
.cta-card {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
  background: white;
  border: 1px solid var(--lvb-border);
  border-radius: 24px;
  padding: 48px 44px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(11,18,32,0.08);
}
@media (max-width: 600px) { .cta-card { padding: 36px 24px; } }
.cta-form-card { text-align: left; }
.cta-form-card > p.lvb-eyebrow { text-align: center; }
.cta-form-card > h2 { text-align: center; }
.cta-form-card > p { text-align: center; }
.cta-card h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.2rem); font-weight: 900;
  color: var(--lvb-ink); letter-spacing: -0.6px; line-height: 1.15;
  margin: 14px 0 14px;
  text-wrap: balance;
}
.cta-card > p:not(.lvb-eyebrow) {
  font-size: 1.02rem; color: var(--lvb-mid); line-height: 1.65;
  max-width: 540px; margin: 0 auto 28px;
}

.lead-form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .lf-row { grid-template-columns: 1fr; } }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field label {
  font-size: 0.84rem; font-weight: 600; color: var(--lvb-ink);
}
.lf-field .opt { color: var(--lvb-mid-2); font-weight: 400; }
.lf-field input,
.lf-field textarea,
.lf-field select {
  font-family: inherit; font-size: 0.95rem; color: var(--lvb-ink);
  background: var(--lvb-input-bg);
  border: 1px solid var(--lvb-border); border-radius: 10px;
  padding: 12px 14px; transition: 0.18s;
  width: 100%;
}
.lf-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.lf-field input:focus,
.lf-field textarea:focus,
.lf-field select:focus {
  outline: none; background: white;
  border-color: var(--lvb-cyan-700);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.15);
}
.lf-field.has-error input,
.lf-field.has-error textarea,
.lf-field.has-error select { border-color: var(--lvb-error); background: rgba(239,68,68,0.04); }

.lf-submit {
  align-self: center; margin-top: 6px;
  font-size: 1.02rem; padding: 16px 32px;
}
.lf-submit:disabled { opacity: 0.7; cursor: wait; }

.cta-thanks { text-align: center; }
.success-circle {
  width: 72px; height: 72px; border-radius: 99px;
  background: linear-gradient(135deg, var(--lvb-green), var(--lvb-cyan));
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(16,185,129,0.35);
}
.success-circle svg { width: 36px; height: 36px; }
.cta-fineprint {
  margin-top: 22px; font-size: 0.85rem; color: var(--lvb-mid-2);
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.cta-fineprint span { display: inline-flex; align-items: center; gap: 6px; }

/* ============ FOOTER ============ */
.lvb-footer {
  background: var(--lvb-ink);
  color: rgba(255,255,255,0.6);
  padding: 44px 32px;
  font-size: 0.88rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
.footer-brand .name { font-weight: 900; color: white; }
.footer-meta { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--lvb-cyan); }
