:root {
  --bg: #ffffff;
  --bg-soft: #f8fafd;
  --text: #202124;
  --muted: #5f6368;
  --line: #e8eaed;
  --blue: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc05;
  --green: #34a853;
  --dark: #202124;
  --shadow: 0 18px 45px rgba(60,64,67,.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
}

.google-word {
  font-size: 27px;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.blue { color: var(--blue); }
.red { color: var(--red); }
.yellow { color: var(--yellow); }
.green { color: var(--green); }

.blue-bg { background: var(--blue) !important; color: #fff !important; }
.red-bg { background: var(--red) !important; color: #fff !important; }
.yellow-bg { background: var(--yellow) !important; color: #202124 !important; }
.green-bg { background: var(--green) !important; color: #fff !important; }

.brand-text {
  color: var(--muted);
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(66,133,244,.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--bg-soft);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.hero {
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 15% 20%, rgba(66,133,244,.16), transparent 28%),
    radial-gradient(circle at 75% 22%, rgba(251,188,5,.18), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(52,168,83,.13), transparent 28%),
    #fff;
}

.hero-grid,
.two-columns,
.cta-grid,
.calc-card {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 0 0 14px;
}

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

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

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

.hero-subtitle,
.section-title p,
.text-block p,
.two-columns p {
  color: var(--muted);
  font-size: 18px;
}

.hero-subtitle {
  max-width: 680px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(66,133,244,.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(.96);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: #fff;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-full { width: 100%; }

.hero-checks,
.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.dashboard-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.metric {
  margin: 26px 0;
  padding: 26px;
  border-radius: 24px;
  background: var(--bg-soft);
}

.metric span,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--red);
  margin-top: 8px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.metric-grid strong {
  font-size: 28px;
  letter-spacing: -.04em;
}

.dash-note {
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0;
}

.section { padding: 84px 0; }
.alt, .pain, .calculator-section { background: var(--bg-soft); }

.logos-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.strip-grid span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
}

.section-title {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 44px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 12px 0;
  padding-left: 34px;
  position: relative;
}

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

.warning-list li::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  top: 2px;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.card,
.step,
.benefit,
.lead-form,
.compare-card,
.mini-calc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(60,64,67,.08);
}

.google-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 900;
  margin-bottom: 22px;
}

.card p,
.step p,
.quote p,
.compare-card li {
  color: var(--muted);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-card ul {
  margin: 0;
  padding-left: 18px;
}

.compare-card.before {
  border-top: 5px solid var(--red);
}

.compare-card.after {
  border-top: 5px solid var(--green);
}

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

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-weight: 900;
}

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

.benefit {
  font-weight: 800;
}

.benefit strong {
  color: var(--blue);
  margin-right: 6px;
}

.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.mini-calc {
  display: grid;
  gap: 16px;
  box-shadow: none;
}

.calc-result {
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 800;
}

.dark {
  background: #202124;
  color: #fff;
}

.dark p { color: rgba(255,255,255,.74); }

.stats {
  display: grid;
  gap: 16px;
}

.stats div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}

.stats strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -.06em;
}

.stats span { color: rgba(255,255,255,.76); }

.quote strong,
.quote span {
  display: block;
}

.quote span {
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(66,133,244,.12), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(52,168,83,.11), transparent 28%),
    #fff;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label,
.mini-calc label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.mini-calc input,
.mini-calc select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.lead-form input:focus,
.lead-form select:focus,
.mini-calc input:focus,
.mini-calc select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(66,133,244,.12);
}

.lead-form small {
  color: var(--muted);
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.footer {
  padding: 34px 0;
  background: #111;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.footer strong { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
}

.footer a { color: #fff; }

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }
  .menu-toggle { display: block; }

  .hero { padding: 72px 0 56px; }

  .hero-grid,
  .two-columns,
  .cta-grid,
  .calc-card,
  .footer-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

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

  .section { padding: 62px 0; }

  .metric strong {
    font-size: 44px;
  }

  .brand-text {
    display: none;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
