:root {
  color-scheme: light;
  --ink: #12314a;
  --ink-2: #2e536d;
  --muted: #6f8291;
  --paper: #f7fbff;
  --white: #ffffff;
  --mist: #e9f7ff;
  --rose: #eef8ff;
  --aqua: #2d9de0;
  --teal: #72cdf5;
  --coral: #4bb6ee;
  --baby: #dff4ff;
  --glass: rgba(255, 255, 255, 0.78);
  --gold: #efb84a;
  --line: #d6e9f5;
  --shadow: 0 14px 32px rgba(30, 91, 130, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(115deg, #ffffff, #eef9ff 58%, #f7fbff);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0.7rem;
  font-size: 5.4rem;
}

h2 {
  margin-bottom: 0.95rem;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.17rem;
}

p {
  color: var(--muted);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.72rem 1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(214, 233, 245, 0.9);
  background: rgba(247, 251, 255, 0.88);
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  width: 112px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-left: auto;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding-block: 0.65rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--aqua);
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button [data-lucide],
.menu-toggle [data-lucide],
.mobile-cta [data-lucide],
.floating-whatsapp [data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

[data-lucide] {
  display: inline-grid;
  place-items: center;
  font-style: normal;
  line-height: 1;
}

[data-lucide]::before {
  content: "•";
  font-weight: 900;
}

[data-lucide="menu"]::before {
  content: "☰";
}

[data-lucide="star"]::before {
  content: "★";
}

[data-lucide="check"],
[data-lucide="clipboard-check"],
[data-lucide="calendar-check"],
[data-lucide="shield-check"],
[data-lucide="badge-check"] {
  font-weight: 900;
}

[data-lucide="check"]::before,
[data-lucide="clipboard-check"]::before,
[data-lucide="calendar-check"]::before,
[data-lucide="shield-check"]::before,
[data-lucide="badge-check"]::before {
  content: "✓";
}

[data-lucide="message-circle"]::before,
[data-lucide="send"]::before {
  content: "→";
}

[data-lucide="sparkles"]::before {
  content: "✦";
}

[data-lucide="images"]::before {
  content: "▣";
}

[data-lucide="trophy"]::before {
  content: "★";
}

[data-lucide="map-pin"]::before {
  content: "•";
}

[data-lucide="target"]::before {
  content: "◎";
}

[data-lucide="sun-medium"]::before {
  content: "☼";
}

[data-lucide="ruler"]::before {
  content: "▱";
}

[data-lucide="hand-heart"]::before {
  content: "♡";
}

[data-lucide="help-circle"]::before {
  content: "?";
}

.button:hover {
  transform: translateY(-1px);
}

.button--header {
  background: linear-gradient(135deg, #1e9ada, #83d8ff);
  color: var(--white);
}

.button--primary {
  background: linear-gradient(135deg, #1f9bdd, #70c9f4 58%, #aee8ff);
  color: var(--white);
}

.button--primary:hover {
  background: linear-gradient(135deg, #178fce, #5fc5f4 58%, #a9e9ff);
}

.button--secondary {
  margin-top: 1.6rem;
  background: var(--ink);
  color: var(--white);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button--outline {
  border-color: rgba(45, 157, 224, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button--outline:hover {
  border-color: rgba(45, 157, 224, 0.48);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #ffffff, #e9f7ff 72%, #dff4ff);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding-block: 3.4rem 5.2rem;
}

.hero__content {
  max-width: 720px;
}

.hero h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(3.1rem, 4.8vw, 4.72rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.final-cta .eyebrow {
  color: #baf3ec;
}

.hero__headline {
  max-width: 720px;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero__text {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.rating-banner {
  max-width: 610px;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(239, 184, 74, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(30, 91, 130, 0.08);
}

.rating-banner__stars {
  display: flex;
  gap: 0.14rem;
  color: var(--gold);
  flex: 0 0 auto;
}

.rating-banner__stars [data-lucide] {
  width: 1rem;
  height: 1rem;
}

.rating-banner strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.rating-banner span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 38px;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(45, 157, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__trust strong {
  color: var(--ink);
}

.hero__visual {
  position: relative;
  min-height: 490px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 7% -4% -5% 10%;
  border-radius: 38% 8px 8px 8px;
  background: rgba(174, 232, 255, 0.36);
}

.hero__visual img {
  position: relative;
  width: 100%;
  height: 490px;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero__visual-card {
  position: absolute;
  left: -34px;
  bottom: 54px;
  max-width: 250px;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(214, 233, 245, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(30, 91, 130, 0.12);
}

.hero__visual-card strong {
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
}

.hero__visual-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #ffffff, #e9f7ff 72%, #dff4ff);
}

.page-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.74fr);
  gap: 4rem;
  align-items: center;
  padding-block: 5.2rem;
}

.page-hero__content {
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 4.8vw, 4.35rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.page-hero__media {
  position: relative;
}

.page-hero__media::before {
  content: "";
  position: absolute;
  inset: 8% -4% -7% 12%;
  border-radius: 38% 8px 8px 8px;
  background: rgba(174, 232, 255, 0.36);
}

.page-hero__media img {
  position: relative;
  width: 100%;
  height: 390px;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.lead-strip {
  position: relative;
  z-index: 2;
  margin-top: -128px;
  padding-bottom: 4.6rem;
}

.lead-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.55fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-copy {
  padding: 0.5rem 0.6rem;
}

.lead-copy h2 {
  margin-bottom: 0.55rem;
  font-size: 1.85rem;
}

.lead-copy p {
  margin-bottom: 0;
}

.lead-form {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr 0.78fr auto;
  gap: 0.7rem;
  align-items: end;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
}

.lead-form span {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0.74rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.lead-strip--page {
  margin-top: 0;
  padding-block: 4.6rem;
  background: var(--paper);
}

.section {
  padding-block: 6rem;
}

main > section:not(.hero):not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section--soft {
  background: linear-gradient(180deg, #e9f7ff, #ffffff);
}

.section--ink {
  background:
    linear-gradient(135deg, rgba(18, 49, 74, 0.98), rgba(45, 157, 224, 0.92)),
    var(--ink);
  color: var(--white);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 2.35rem;
}

.section__heading p {
  max-width: 650px;
}

.google-proof-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #e9f7ff);
}

.google-proof-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: center;
}

.google-score-card {
  padding: 1.45rem;
  border: 1px solid rgba(214, 233, 245, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.google-score-card strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 4.2rem;
  line-height: 0.95;
}

.google-score-card > span {
  display: block;
  margin: 0.85rem 0 1.25rem;
  color: var(--ink-2);
  font-weight: 800;
  line-height: 1.45;
}

.google-proof-copy h2 {
  max-width: 780px;
}

.google-proof-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.45rem;
}

.google-review-grid article {
  min-height: 178px;
  padding: 1.18rem;
  border: 1px solid rgba(214, 233, 245, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(30, 91, 130, 0.07);
}

.google-review-grid p {
  margin-bottom: 0.8rem;
  color: var(--ink-2);
  font-weight: 700;
}

.google-review-grid strong {
  color: var(--ink);
}

.pathway-section {
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pathway-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.35rem;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(30, 91, 130, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 157, 224, 0.52);
  box-shadow: 0 12px 28px rgba(30, 91, 130, 0.1);
}

.pathway-card [data-lucide] {
  width: 2rem;
  height: 2rem;
  color: var(--coral);
}

.pathway-card span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-card strong {
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
}

.assessment-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 3.5rem;
  align-items: start;
}

.assessment-copy > p:not(.eyebrow) {
  max-width: 700px;
  font-size: 1.05rem;
}

.assessment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.assessment-steps article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.15rem;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(30, 91, 130, 0.05);
}

.assessment-steps [data-lucide],
.assessment-card [data-lucide],
.objection-grid [data-lucide] {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--teal);
}

.assessment-steps strong,
.assessment-card h3,
.objection-grid h3 {
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
}

.assessment-steps span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.assessment-card {
  padding: 1.45rem;
  border: 1px solid rgba(214, 233, 245, 0.96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.assessment-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.assessment-card ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0 0 1.35rem;
  list-style: none;
}

.assessment-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-2);
  font-weight: 800;
}

.assessment-card li [data-lucide] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  color: var(--coral);
  flex: 0 0 auto;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.concern-card {
  min-height: 228px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.35rem;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(30, 91, 130, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.concern-card:hover,
.concern-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 157, 224, 0.56);
  box-shadow: 0 12px 28px rgba(30, 91, 130, 0.09);
}

.concern-card [data-lucide] {
  width: 2rem;
  height: 2rem;
  color: var(--coral);
}

.concern-card span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concern-card strong {
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.split-heading p {
  margin-bottom: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 1rem;
}

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

.offer-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(30, 91, 130, 0.07);
}

.offer-card--large {
  grid-row: span 2;
}

.offer-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.offer-card--large img {
  height: 412px;
}

.offer-card div {
  padding: 1.18rem;
}

.offer-card span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card p {
  margin-bottom: 0.95rem;
}

.offer-card a {
  color: var(--aqua);
  font-weight: 900;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.35rem;
  padding: 1.4rem;
  border: 1px solid rgba(214, 233, 245, 0.96);
  border-radius: var(--radius);
  background: #eef9ff;
}

.conversion-band .eyebrow {
  margin-bottom: 0.45rem;
}

.conversion-band h3 {
  max-width: 740px;
  margin-bottom: 0.45rem;
  font-size: 1.65rem;
}

.conversion-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.proof-layout h2,
.final-cta h2 {
  color: var(--white);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-points article {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.proof-points [data-lucide] {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.proof-points strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--white);
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.15;
}

.proof-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.result-section {
  background: var(--white);
}

.result-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 4rem;
  align-items: center;
}

.result-copy p {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-2);
  font-weight: 800;
}

.check-list [data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.22rem;
  color: var(--teal);
  flex: 0 0 auto;
}

.result-figure {
  margin: 0;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.result-figure img {
  width: 100%;
  max-height: 590px;
  border-radius: 6px;
  object-fit: cover;
}

.result-figure figcaption {
  padding: 0.72rem 0.2rem 0.1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.process-heading {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-grid article {
  min-height: 230px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
}

.process-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--coral);
  font-weight: 900;
}

.process-grid p {
  margin-bottom: 0;
}

.testimonials {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  min-height: 252px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(30, 91, 130, 0.05);
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.stars [data-lucide] {
  width: 1.05rem;
  height: 1.05rem;
}

.testimonial-card strong {
  color: var(--ink);
}

.objection-section {
  background: linear-gradient(180deg, #ffffff, #e9f7ff);
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.objection-grid article {
  min-height: 224px;
  padding: 1.35rem;
  border: 1px solid rgba(214, 233, 245, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(30, 91, 130, 0.05);
}

.objection-grid [data-lucide] {
  margin-bottom: 0.95rem;
  color: var(--coral);
}

.objection-grid p {
  margin-bottom: 0;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
}

.final-cta {
  padding-block: 5.4rem;
  background:
    linear-gradient(135deg, rgba(18, 49, 74, 0.82), rgba(45, 157, 224, 0.7)),
    url("assets/lavieen.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  text-align: center;
}

.final-cta__content {
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding-block: 3.2rem 4rem;
  background: #12314a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer img {
  width: 154px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  overflow: hidden;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f9bdd, #83d8ff);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(45, 157, 224, 0.28);
}

.floating-whatsapp [data-lucide] {
  width: 1.46rem;
  height: 1.46rem;
}

.mobile-cta {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(45, 157, 224, 0.48);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .button--header {
    display: none;
  }

  .lead-layout,
  .lead-form,
  .page-hero__layout,
  .assessment-layout,
  .split-heading,
  .conversion-band,
  .proof-layout,
  .result-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
    gap: 2rem;
    min-height: auto;
    padding-block: 4.8rem 7.4rem;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__visual img {
    height: 420px;
  }

  .hero__visual-card {
    left: 18px;
    bottom: 18px;
  }

  .lead-form {
    align-items: stretch;
  }

  .google-proof-layout {
    grid-template-columns: 1fr;
  }

  .concern-grid,
  .google-review-grid,
  .objection-grid,
  .pathway-grid,
  .proof-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid,
  .offer-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card--large {
    grid-row: auto;
  }

  .offer-card--large img,
  .offer-card img {
    height: 240px;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--mist);
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 940px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .hero__visual {
    max-width: 620px;
  }

  .page-hero__media {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 3.4rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .nav-shell {
    min-height: 66px;
    justify-content: space-between;
  }

  .brand {
    width: 104px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--mist);
  }

  .site-nav a::after {
    display: none;
  }

  .hero__layout {
    padding-block: 3.6rem 6.5rem;
  }

  .hero__headline {
    font-size: 1.3rem;
  }

  .hero__visual img {
    height: 360px;
  }

  .page-hero__layout {
    padding-block: 4rem;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .page-hero__media img {
    height: 340px;
  }

  .lead-strip {
    margin-top: -64px;
  }

  .lead-strip--page {
    margin-top: 0;
  }

  .lead-layout {
    padding: 1rem;
  }

  .process-grid,
  .assessment-steps,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: 2.82rem;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .hero__layout {
    gap: 1.6rem;
    padding-block: 2.8rem 5.8rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__actions,
  .rating-banner,
  .hero__trust,
  .lead-form {
    display: grid;
  }

  .rating-banner {
    gap: 0.65rem;
  }

  .hero__trust span,
  .button,
  .lead-form button {
    width: 100%;
  }

  .hero__trust span:nth-child(3) {
    display: none;
  }

  .hero__visual img {
    height: 292px;
  }

  .page-hero h1 {
    font-size: 2.52rem;
  }

  .page-hero__media img {
    height: 278px;
  }

  .hero__visual-card {
    display: none;
  }

  .lead-copy h2 {
    font-size: 1.52rem;
  }

  .concern-grid,
  .offer-grid,
  .offer-grid--compact,
  .google-review-grid,
  .objection-grid,
  .pathway-grid,
  .proof-points {
    grid-template-columns: 1fr;
  }

  .concern-card,
  .assessment-steps article,
  .objection-grid article,
  .pathway-card,
  .process-grid article,
  .proof-points article,
  .testimonial-card {
    min-height: auto;
  }

  .offer-card img,
  .offer-card--large img {
    height: 230px;
  }

  .result-figure img {
    max-height: 470px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: block;
    padding: 0.7rem 0.85rem;
    background: rgba(251, 252, 251, 0.92);
    border-top: 1px solid var(--line);
  }

  .mobile-cta a {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #1f9bdd, #83d8ff);
    color: var(--white);
    font-weight: 900;
  }

  .site-footer {
    padding-bottom: 5.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
