:root {
  --bg: #edf6ff;
  --bg-soft: #f6fbff;
  --surface: rgba(247, 251, 255, 0.84);
  --surface-strong: #f9fcff;
  --surface-dark: #071d33;
  --text: #0d2238;
  --muted: #52687d;
  --line: rgba(28, 96, 155, 0.14);
  --line-strong: rgba(34, 119, 196, 0.24);
  --accent: #1d7ed0;
  --accent-strong: #0b4f96;
  --accent-soft: #cfe8ff;
  --dark-accent: #09243f;
  --white: #fafdff;
  --success: #1b7a9c;
  --shadow: 0 24px 70px rgba(8, 36, 66, 0.12);
  --shadow-soft: 0 16px 40px rgba(8, 36, 66, 0.08);
  --radius: 28px;
  --radius-sm: 20px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(29, 126, 208, 0.16), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(153, 211, 255, 0.3), transparent 22%),
    linear-gradient(180deg, #f6fbff 0%, #eaf5ff 45%, #f2f8ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%);
  opacity: 0.45;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1787d8, #075b9d);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 20px 36px rgba(7, 91, 157, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(7, 91, 157, 0.3);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(8, 36, 66, 0.08);
}

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

.brand-logo {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  color: var(--accent-strong);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topnav {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--muted);
}

.topnav a,
.button,
.faq-question,
.tag-button {
  font-size: 0.95rem;
  font-weight: 700;
}

.topnav a {
  position: relative;
  transition: color 180ms ease;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(29, 126, 208, 0.42);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.topnav a:hover {
  color: var(--text);
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(11, 79, 150, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(11, 79, 150, 0.28);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(28, 96, 155, 0.18);
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.hero,
.proof-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
}

.hero {
  align-items: stretch;
  padding: 28px 0 18px;
}

.hero-copy,
.product-card,
.trust-strip,
.panel,
.objection-card,
.step,
.faq-item,
.lead-form,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(239, 248, 255, 0.72)),
    var(--surface);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.product-card h2,
.panel h3,
.step h3,
.cta-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 16ch;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.05;
}

.hero-text,
.section-heading p,
.panel p,
.objection-card p,
.step p,
.contact-copy p,
.faq-answer p,
.form-note,
.mini-grid span,
.hero-proof span,
.trust-strip span,
.contact-note span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.04rem;
}

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

.hero-points,
.check-list,
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #31546f;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-proof article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
}

.hero-proof strong,
.trust-strip strong,
.objection-card strong,
.contact-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-badge {
  align-self: flex-end;
  margin: 0 0 10px;
  padding: 11px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7, 29, 51, 0.96), rgba(11, 79, 150, 0.94));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(8, 36, 66, 0.22);
}

.product-card {
  padding: 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(72, 166, 238, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(7, 29, 51, 0.98), rgba(8, 44, 81, 0.96));
  color: var(--white);
}

.product-label,
.card-kicker {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card h2,
.section-heading h2,
.contact-copy h2,
.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.35vw, 1.5rem);
  line-height: 1.12;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-grid strong {
  display: block;
  margin-bottom: 6px;
}

.mini-grid span {
  color: rgba(236, 247, 255, 0.72);
  line-height: 1.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 54px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(242, 249, 255, 0.66);
}

.trust-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  max-width: 70ch;
  margin-top: 16px;
}

.solution-grid,
.steps,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel,
.step,
.objection-card,
.cta-panel {
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 248, 255, 0.7)),
    var(--surface);
}

.solution-feature {
  min-height: 220px;
}

.panel h3,
.step h3 {
  margin: 0 0 12px;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.18;
}

.highlighted-panel {
  background:
    radial-gradient(circle at top right, rgba(29, 126, 208, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(237, 247, 255, 0.74));
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29, 126, 208, 0.12);
}

.objection-grid {
  display: grid;
  gap: 18px;
}

.objection-card {
  min-height: 132px;
}

.process-section {
  position: relative;
}

.steps {
  align-items: stretch;
}

.step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 248, 255, 0.74)),
    var(--surface);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(29, 126, 208, 0.08);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(244, 250, 255, 0.74);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 28px 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 22px;
}

.cta-panel {
  text-align: center;
}

.cta-panel p {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.contact-copy {
  padding-top: 8px;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin: 28px 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(242, 249, 255, 0.62);
}

.contact-tags {
  gap: 10px;
}

.tag-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.tag-button:hover,
.tag-button.is-active {
  border-color: rgba(29, 126, 208, 0.34);
  background: rgba(228, 243, 255, 0.94);
  transform: translateY(-1px);
}

.lead-form {
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(72, 166, 238, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(7, 29, 51, 0.99), rgba(5, 22, 41, 0.98));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(236, 247, 255, 0.42);
}

.field textarea {
  resize: vertical;
  min-height: 136px;
}

.field:focus-within {
  border-color: rgba(207, 232, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(207, 232, 255, 0.1);
}

.lead-form .full,
.submit-button,
.form-note {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(236, 247, 255, 0.66);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero,
  .proof-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: 13ch;
  }
}

@media (max-width: 900px) {
  .topbar,
  .solution-grid,
  .steps,
  .audience-grid,
  .lead-form,
  .trust-strip,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
    border-radius: 28px;
    justify-items: start;
  }

  .topnav {
    justify-content: flex-start;
    gap: 18px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, var(--content-width));
    padding-top: 10px;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .brand-logo {
    height: 38px;
  }

  .topbar {
    gap: 14px;
    margin-bottom: 18px;
    padding: 14px 16px 16px;
  }

  .topnav a,
  .button,
  .faq-question,
  .tag-button {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-copy,
  .product-card,
  .panel,
  .objection-card,
  .step,
  .cta-panel,
  .lead-form {
    padding: 22px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }

  .product-card h2,
  .section-heading h2,
  .contact-copy h2,
  .cta-panel h2,
  .panel h3,
  .step h3 {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 18px 22px;
  }

  .faq-answer p {
    padding-left: 22px;
    padding-right: 22px;
  }
}
