:root {
  color-scheme: dark;
  --bg: #070808;
  --panel: #101010;
  --panel-2: #181818;
  --text: #f7f4ea;
  --muted: #d8d3c7;
  --line: rgba(255, 255, 255, 0.14);
  --brand-blue: #014bae;
  --brand-blue-2: #0a5fd2;
  --brand-blue-3: #063a83;
  --brand-gray: #5a5a5c;
  --brand-silver: #e6e9ef;
  --green: #25d366;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(1, 75, 174, 0.34);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.top-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 40px;
  max-width: 190px;
  object-fit: contain;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: #ffffff;
}

.top-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: linear-gradient(180deg, var(--brand-blue-2), var(--brand-blue));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(1, 75, 174, 0.28);
}

.top-cta .desktop-label {
  margin-right: 0.25em;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 72px) 46px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% bottom;
  filter: saturate(0.98) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(1, 28, 66, 0.78) 42%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(7, 8, 8, 0.16) 56%, rgba(0, 0, 0, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #f3f7ff;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.google-word {
  display: inline;
  white-space: nowrap;
}

.google-word span:nth-child(1),
.google-word span:nth-child(4) {
  color: #4285f4;
}

.google-word span:nth-child(2),
.google-word span:nth-child(6) {
  color: #ea4335;
}

.google-word span:nth-child(3) {
  color: #fbbc04;
}

.google-word span:nth-child(5) {
  color: #34a853;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: #fff8e5;
  font-size: clamp(1.18rem, 2.3vw, 1.65rem);
  line-height: 1.35;
}

.hero-actions {
  max-width: 760px;
}

.primary-cta {
  display: inline-flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--brand-blue-2) 0%, var(--brand-blue) 58%, var(--brand-blue-3) 100%);
  box-shadow: 0 12px 34px rgba(1, 75, 174, 0.36);
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.primary-cta span {
  font-size: 1.6em;
  line-height: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(1, 75, 174, 0.46);
  border-radius: 7px;
  background: rgba(17, 19, 21, 0.76);
  color: #fff;
  font-weight: 800;
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.cards,
.steps {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.step,
.investment-card,
.google-rating-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card {
  padding: 26px;
}

.card p,
.step p,
.investment-card p {
  color: var(--muted);
  line-height: 1.55;
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 7px;
  background: rgba(1, 75, 174, 0.18);
  color: #dbeafe;
  font-weight: 950;
}

.method-section {
  background: #0c0f10;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.step span {
  display: inline-block;
  margin-bottom: 28px;
  color: #dbeafe;
  font-weight: 950;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 32px;
  align-items: center;
  padding: 78px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(1, 75, 174, 0.26), rgba(90, 90, 92, 0.12)),
    #101313;
}

.google-rating-card {
  display: grid;
  align-content: start;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(1, 75, 174, 0.12)),
    var(--panel);
}

.google-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 7px;
  background: #ffffff;
  color: #202124;
  font-weight: 900;
}

.google-rating-card strong {
  display: block;
  color: #ffffff;
  font-size: 4.8rem;
  line-height: 0.9;
}

.stars {
  margin: 12px 0 14px;
  color: #fbbc04;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: #ffffff;
  color: #0d1117;
  font-weight: 900;
}

.secondary-cta .google-word {
  margin-left: 0.25em;
}

.proof-content {
  max-width: 820px;
}

.proof-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.google-rating-card > span,
.google-rating-card small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.google-rating-card > span {
  margin: 8px 0 12px;
  color: #ffffff;
  font-weight: 850;
}

.google-rating-card .secondary-cta {
  width: 100%;
}

.investment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(1, 75, 174, 0.22), var(--panel) 46%);
}

.check-list {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #fff8e5;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 92px clamp(18px, 5vw, 72px);
  text-align: center;
}

.final-cta h2 {
  max-width: 940px;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  align-items: center;
  padding-bottom: 98px;
}

.footer-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #25d366;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
  color: #07130b;
  font-weight: 950;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 auto;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.3);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 8, 8, 0.98) 0%, rgba(7, 8, 8, 0.56) 58%, rgba(7, 8, 8, 0.82) 100%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.88), rgba(7, 8, 8, 0.24));
  }

  .section-grid,
  .proof-band,
  .investment-card {
    grid-template-columns: 1fr;
  }

  .three,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-rating-card {
    max-width: 420px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    height: 36px;
    max-width: 138px;
  }

  .top-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .desktop-label {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 98px 16px 32px;
  }

  .hero-bg img {
    object-position: 32% bottom;
  }

  .primary-cta {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
  }

  .trust-strip span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .section {
    padding: 64px 16px;
  }

  .three,
  .steps {
    grid-template-columns: 1fr;
  }

  .card,
  .step {
    padding: 22px;
  }

  .proof-band,
  .final-cta {
    padding: 64px 16px;
  }

  .google-rating-card {
    max-width: none;
    width: 100%;
  }

  .footer {
    padding: 22px 16px;
    padding-bottom: 92px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px 0 14px;
  }

  .floating-whatsapp span {
    display: none;
  }
}
