:root {
  --bg: #f7f4ee;
  --ink: #111827;
  --muted: #647084;
  --navy: #0b1020;
  --navy-2: #141b33;
  --orange: #ff7a1a;
  --orange-dark: #e85d04;
  --cream: #fff8ef;
  --line: rgba(17, 24, 39, .12);
  --white: #ffffff;
  --green: #25d366;
  --shadow: 0 24px 70px rgba(15, 23, 42, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  padding-bottom: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 122, 26, .16), transparent 26rem),
    radial-gradient(circle at 80% 0%, rgba(13, 22, 52, .13), transparent 24rem);
  z-index: -1;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #111;
  padding: 12px 16px;
  z-index: 20;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 238, .86);
  border-bottom: 1px solid rgba(17, 24, 39, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 13px;
  color: #2f3a4f;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 999px;
}

.desktop-nav a:hover {
  background: rgba(17, 24, 39, .06);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding-inline: 18px !important;
}

.hero {
  padding: 86px 0 46px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.075em;
  margin-bottom: 24px;
  max-width: 800px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.15rem;
  color: #394456;
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), #ffb703);
  color: #151515;
  box-shadow: 0 16px 32px rgba(255, 122, 26, .28);
}

.btn.ghost {
  background: rgba(255,255,255,.55);
  border-color: rgba(17, 24, 39, .16);
  color: var(--navy);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
}

.btn.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.trust-row span,
.seo-strip span,
.area-list span {
  border: 1px solid rgba(17, 24, 39, .1);
  background: rgba(255,255,255,.6);
  padding: 9px 12px;
  border-radius: 999px;
  color: #3c4658;
  font-weight: 800;
  font-size: .88rem;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 32px 22px 12px 72px;
  border-radius: 52px;
  background: var(--navy);
  transform: rotate(-5deg);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "LGS";
  position: absolute;
  right: 6px;
  top: 8px;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 1000;
  line-height: .8;
  letter-spacing: -.1em;
  color: rgba(255, 122, 26, .18);
}

.score-card,
.mini-cards {
  position: relative;
  z-index: 1;
}

.main-card {
  background: linear-gradient(160deg, #121a34, #070b16);
  color: var(--white);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 44px;
  margin: 0 44px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 70px rgba(3, 7, 18, .34);
}

.card-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 26, .16);
  color: #ffb703;
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 24px;
}

.main-card strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .9;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}

.main-card p {
  color: rgba(255,255,255,.74);
  margin-bottom: 0;
  font-size: 1.04rem;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: -20px 0 0 auto;
  width: min(370px, 86%);
}

.mini-cards div {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .14);
}

.mini-cards b {
  display: block;
  color: var(--orange-dark);
  font-size: .86rem;
  margin-bottom: 4px;
}

.mini-cards span {
  font-weight: 900;
  line-height: 1.25;
  display: block;
}

.seo-strip {
  padding: 10px 0 30px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.strip-grid span {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section {
  padding: 86px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.split-grid > div:first-child p:last-child,
.center-heading p,
.city-card p,
.form-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lesson-grid article,
.proof-grid article,
.lead-form,
.city-card,
.faq-list details {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 42px rgba(15, 23, 42, .07);
}

.lesson-grid span {
  display: block;
  font-size: 1.1rem;
  font-weight: 1000;
  margin-bottom: 8px;
}

.lesson-grid p,
.proof-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 122, 26, .3), transparent 62%);
  right: -160px;
  top: -160px;
}

.center-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
  position: relative;
  z-index: 1;
}

.center-heading .section-kicker::before {
  display: none;
}

.dark-section .center-heading p {
  color: rgba(255,255,255,.68);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  z-index: 1;
}

.timeline-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 24px;
}

.timeline-item strong {
  display: block;
  color: #ffb703;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

.city-section {
  padding-bottom: 50px;
}

.city-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.city-card.featured {
  background: linear-gradient(140deg, #fff, #fff1df);
}

.text-link {
  color: var(--orange-dark);
  font-weight: 1000;
  border-bottom: 2px solid currentColor;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
  padding: 10px 0;
}

.proof-section {
  padding-top: 28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 1000;
}

.form-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.48));
}

.form-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border-radius: 26px;
  padding: 24px;
  margin-top: 24px;
}

.contact-box a {
  font-size: 1.45rem;
  font-weight: 1000;
  color: #ffb703;
}

.contact-box address {
  color: rgba(255,255,255,.72);
  font-style: normal;
}

.lead-form {
  display: grid;
  gap: 16px;
  background: var(--white);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #1f2937;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, .14);
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, .14);
}

.form-note {
  font-size: .86rem !important;
  margin: -4px 0 0;
}

.faq-section {
  padding-top: 30px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 1000;
}

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

.faq-list p {
  padding: 0 24px 22px;
}

.final-cta {
  padding: 38px 0 90px;
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, var(--orange), #ffba3a);
  border-radius: 38px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.final-card h2 {
  margin: 0;
  max-width: 780px;
}

.final-card .section-kicker {
  color: rgba(17, 24, 39, .72);
}

.site-footer {
  background: #070b16;
  color: var(--white);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p,
.footer-grid span {
  color: rgba(255,255,255,.62);
  margin-bottom: 0;
}

.footer-grid > div:last-child {
  display: grid;
  text-align: right;
  gap: 4px;
}

.footer-grid a {
  color: #ffb703;
  font-weight: 1000;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #062315;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(37, 211, 102, .34);
  font-weight: 1000;
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .city-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-panel {
    min-height: 460px;
  }

  .strip-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding: 42px 0 28px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: auto;
    padding: 24px 0;
  }

  .hero-panel::before {
    inset: 18px 8px 18px 32px;
    border-radius: 36px;
  }

  .hero-panel::after {
    right: 8px;
    top: -10px;
  }

  .main-card {
    margin: 0 12px;
    border-radius: 34px;
  }

  .mini-cards {
    grid-template-columns: 1fr 1fr;
    width: 96%;
    margin: -10px auto 0;
  }

  .section {
    padding: 58px 0;
  }

  .lesson-grid,
  .strip-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid span {
    justify-content: flex-start;
  }

  .final-card,
  .footer-grid {
    display: grid;
  }

  .footer-grid > div:last-child {
    text-align: left;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 96px;
    padding: 11px 14px;
  }

  .floating-whatsapp b {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 13;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    background: rgba(7, 11, 22, .94);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,.26);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    color: rgba(255,255,255,.72);
    font-weight: 800;
    font-size: .72rem;
    padding: 7px 4px;
    border-radius: 18px;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a:focus {
    background: rgba(255,255,255,.09);
    color: var(--white);
  }

  .mobile-bottom-nav span {
    font-size: 1.2rem;
    line-height: 1;
  }
}
