:root {
  --ink: #f8fff8;
  --muted: #aab7af;
  --deep: #030705;
  --panel: #09110d;
  --panel-2: #0d1712;
  --line: rgba(255, 255, 255, 0.1);
  --lime: #2ee6a6;
  --cyan: #61e7ff;
  --gold: #8ac7ff;
  --orange: #1687ff;
  --pink: #0d6efd;
  --magenta: #1238b8;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  background: #063c52;
  box-shadow: 0 12px 30px rgba(6, 47, 67, 0.22);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #12a86f;
  outline-offset: 4px;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

main {
  position: relative;
  overflow: hidden;
}

.aurora {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
}

.aurora-one {
  top: -230px;
  right: -180px;
  background: var(--magenta);
}

.aurora-two {
  top: 550px;
  left: -350px;
  background: var(--lime);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 40px), var(--max));
  height: 88px;
  margin: 18px auto 0;
  padding: 10px 14px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 12, 9, 0.78);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.brand {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 28px rgba(159, 226, 26, 0.13);
}

.brand img,
.footer-brand img,
.authority-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #c8d3cc;
  font-size: 0.86rem;
}

nav a {
  position: relative;
  transition: color 0.25s ease;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

nav a:hover {
  color: white;
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: white;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.button span {
  font-size: 1.2rem;
}

.button-small {
  min-height: 58px;
  padding-inline: 24px;
  background: linear-gradient(110deg, rgba(159, 226, 26, 0.16), rgba(122, 223, 217, 0.08));
}

.button-primary {
  min-height: 68px;
  padding-inline: 32px;
  background: linear-gradient(105deg, #11996d 0%, #18c796 42%, #1677ff 100%);
  box-shadow: 0 10px 34px rgba(46, 230, 166, 0.22), 0 0 70px rgba(22, 119, 255, 0.12);
}

.glow-button::before {
  position: absolute;
  z-index: -2;
  inset: -45%;
  content: "";
  background: conic-gradient(from 0deg, var(--lime), var(--cyan), var(--magenta), var(--pink), var(--gold), var(--lime));
  animation: spinGlow 4s linear infinite;
}

.glow-button::after {
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(105deg, rgba(6, 104, 73, 0.98), rgba(11, 77, 158, 0.98));
}

.glow-button:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 12px 40px rgba(159, 226, 26, 0.34), 0 0 80px rgba(122, 223, 217, 0.18);
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 790px;
  margin: 0 auto;
  padding: 80px 0 70px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 46px;
}

.eyebrow,
.section-kicker {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(159, 226, 26, 0.18);
  border-radius: 999px;
  background: rgba(159, 226, 26, 0.05);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(159, 226, 26, 0.65);
  animation: dotPulse 1.8s ease-out infinite;
}

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

.hero h1 {
  max-width: 720px;
  margin: 24px 0;
  font-size: clamp(3.45rem, 5.65vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: -0.066em;
  font-weight: 520;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--lime), var(--cyan) 43%, var(--gold) 72%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  padding: 14px 0;
  color: #d7e1db;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.text-link span {
  margin-left: 8px;
  color: var(--cyan);
}

.trust-row {
  margin-top: 42px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: grid;
  gap: 4px;
}

.trust-row strong {
  color: #f2f8f4;
  font-size: 0.82rem;
}

.trust-row span {
  color: #75847b;
  font-size: 0.74rem;
}

.trust-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.image-shell {
  position: absolute;
  inset: 24px 0 24px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 46px;
  background: var(--panel);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.48), 0 0 90px rgba(122, 223, 217, 0.09);
}

.image-shell::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 7, 5, 0.26), transparent 46%), linear-gradient(to top, rgba(3, 7, 5, 0.48), transparent 34%);
}

.image-shell::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(159, 226, 26, 0.1), inset 0 -60px 90px rgba(159, 226, 26, 0.06);
}

.image-shell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.02);
}

.scan-line {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  opacity: 0.62;
  background: linear-gradient(90deg, transparent, var(--lime), var(--cyan), transparent);
  box-shadow: 0 0 22px var(--cyan);
  animation: scan 5.5s ease-in-out infinite;
}

.float-card {
  position: absolute;
  z-index: 8;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 19px;
  background: rgba(8, 15, 11, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.float-card-top {
  top: 0;
  right: -18px;
}

.float-card-bottom {
  bottom: 4px;
  left: 0;
}

.float-card strong,
.float-card small {
  display: block;
}

.float-card strong {
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.float-card small {
  color: #839087;
  font-size: 0.68rem;
}

.float-icon,
.mini-orbit {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: rgba(159, 226, 26, 0.1);
  box-shadow: inset 0 0 0 1px rgba(159, 226, 26, 0.2), 0 0 24px rgba(159, 226, 26, 0.12);
}

.mini-orbit {
  color: var(--cyan);
  background: rgba(122, 223, 217, 0.1);
}

.social-proof {
  width: min(calc(100% - 40px), var(--max));
  min-height: 154px;
  margin: 0 auto 80px;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(110deg, rgba(159, 226, 26, 0.055), rgba(122, 223, 217, 0.025) 52%, rgba(242, 24, 115, 0.04));
}

.proof-orb {
  width: 98px;
  height: 98px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(159, 226, 26, 0.23);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(159, 226, 26, 0.18), rgba(159, 226, 26, 0.02) 68%);
  box-shadow: 0 0 42px rgba(159, 226, 26, 0.08);
}

.proof-orb strong {
  font-size: 1.4rem;
}

.proof-orb small {
  margin-top: 2px;
  color: #829087;
  font-size: 0.67rem;
}

.social-proof p {
  max-width: 620px;
  margin: 0;
  color: #aebbb2;
  line-height: 1.6;
}

.social-proof p strong {
  color: white;
}

.social-proof > a {
  padding-bottom: 8px;
  color: var(--cyan);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(122, 223, 217, 0.35);
}

.pain-section,
.services-section,
.results-section,
.journey-section,
.authority-section,
.faq-section {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.pain-section {
  position: relative;
  padding: 120px 0 130px;
  border-top: 1px solid var(--line);
}

.pain-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.12fr 0.62fr;
  gap: 90px;
  align-items: end;
}

.pain-grid h2,
.section-heading h2,
.journey-intro h2,
.authority-card h2,
.faq-title h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.057em;
  font-weight: 510;
}

.pain-grid h2 span {
  color: #7d8982;
}

.pain-copy {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.pain-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.pain-copy a,
.service-card a {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
}

.pain-copy a {
  margin-top: 12px;
  color: var(--lime);
}

.signal-line {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.44;
}

.signal-line::before,
.signal-line::after {
  height: 1px;
  content: "";
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--lime));
}

.signal-line::after {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.signal-line span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.signal-line span:nth-child(2) { background: var(--cyan); }
.signal-line span:nth-child(3) { background: var(--pink); }

.services-section {
  padding: 110px 0 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.37fr;
  gap: 78px;
  align-items: end;
}

.section-heading h2 {
  max-width: 880px;
  margin-top: 22px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.72;
}

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 480px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -100px;
  left: -60px;
  height: 190px;
  content: "";
  filter: blur(35px);
  opacity: 0.52;
  background: var(--card-accent);
}

.service-lime { --card-accent: var(--lime); }
.service-cyan { --card-accent: var(--cyan); }
.service-gold { --card-accent: linear-gradient(90deg, var(--gold), var(--pink)); }

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7f8d84;
  font-size: 0.78rem;
}

.service-top i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  font-style: normal;
}

.tooth-line {
  height: 140px;
  display: grid;
  place-items: center;
  color: var(--card-accent);
  font-family: Georgia, serif;
  font-size: 8rem;
  font-weight: 100;
  line-height: 1;
  transform: rotate(180deg) scaleX(0.72);
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.12);
}

.service-card h3 {
  margin: auto 0 12px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.service-card p {
  min-height: 72px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.66;
}

.service-card a {
  position: relative;
  z-index: 3;
}

.results-section {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 116px 0 122px;
  border-top: 1px solid var(--line);
}

.results-heading {
  display: grid;
  grid-template-columns: 1fr 0.36fr;
  gap: 70px;
  align-items: end;
}

.results-heading h2 {
  max-width: 890px;
  margin: 20px 0 0;
  color: #071c25;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.057em;
  font-weight: 510;
}

.results-note {
  padding: 21px 0 4px 22px;
  border-left: 2px solid var(--lime);
}

.results-note strong { display: block; margin-bottom: 8px; color: #183943; }
.results-note p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.65; }

.results-track {
  margin: 54px calc((100vw - min(calc(100vw - 40px), var(--max))) / -2) 0;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(8, 127, 196, 0.38) transparent;
}

.result-card {
  width: min(370px, 80vw);
  min-width: min(370px, 80vw);
  margin: 0;
  padding: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(6, 69, 91, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(6, 47, 67, 0.1);
}

.result-card img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  background: #eef5f6;
  transform: none;
}

.result-card figcaption {
  padding: 16px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #76909a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card figcaption a { color: var(--cyan); }

.results-footer {
  margin-top: 32px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(6, 69, 91, 0.1);
  border-radius: 28px;
  background: linear-gradient(120deg, #f4fbfd, #ffffff, #f1fbf7);
}

.results-footer div { display: grid; gap: 4px; }
.results-footer strong { color: #143742; font-size: 1.08rem; }
.results-footer div span { color: var(--muted); font-size: 0.76rem; }
.results-footer .button { min-height: 58px; }

.journey-section {
  margin-top: 40px;
  padding: 90px;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 80px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 48px;
  background:
    radial-gradient(circle at 0% 0%, rgba(159, 226, 26, 0.11), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(194, 11, 214, 0.08), transparent 40%),
    #09100c;
}

.journey-intro h2 {
  margin: 22px 0 24px;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.journey-intro p {
  color: var(--muted);
  line-height: 1.72;
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  padding: 29px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.journey-list li:first-child { padding-top: 0; }
.journey-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.journey-list > li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: rgba(159, 226, 26, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
}

.journey-list strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 1.06rem;
}

.journey-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.authority-section {
  padding: 130px 0 80px;
}

.authority-card {
  position: relative;
  padding: 70px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 54px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.authority-card::before {
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  filter: blur(60px);
  opacity: 0.18;
  background: linear-gradient(120deg, var(--pink), var(--gold));
}

.authority-logo {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.03), 0 0 56px rgba(159, 226, 26, 0.1);
}

.authority-card h2 {
  max-width: 700px;
  margin: 18px 0 16px;
  font-size: clamp(2.1rem, 3.4vw, 3.5rem);
}

.authority-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.authority-card .button {
  position: relative;
  z-index: 4;
  white-space: nowrap;
}

.faq-section {
  padding: 100px 0 130px;
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 95px;
}

.faq-title h2 {
  margin: 20px 0 22px;
  font-size: clamp(2.7rem, 4vw, 4.3rem);
}

.faq-title p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: #edf5ef;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

summary::-webkit-details-marker { display: none; }

summary i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  font-style: normal;
  font-size: 1.15rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

details[open] summary i {
  transform: rotate(45deg);
  background: rgba(159, 226, 26, 0.1);
}

details p {
  max-width: 660px;
  padding: 0 54px 26px 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  min-height: 590px;
  margin: 0 auto 48px;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 52px;
  text-align: center;
  background:
    linear-gradient(rgba(4, 9, 6, 0.64), rgba(4, 9, 6, 0.94)),
    radial-gradient(circle at center, rgba(122, 223, 217, 0.18), transparent 52%),
    #07100b;
}

.final-cta::after {
  position: absolute;
  right: 10%;
  bottom: -190px;
  left: 10%;
  height: 230px;
  content: "";
  filter: blur(40px);
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--magenta), var(--cyan), var(--lime));
  opacity: 0.58;
}

.final-glow {
  position: absolute;
  top: -160px;
  width: 620px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 226, 26, 0.18), transparent 70%);
  filter: blur(22px);
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p,
.final-cta .button,
.final-cta small {
  position: relative;
  z-index: 4;
}

.final-cta h2 {
  max-width: 880px;
  margin: 22px 0;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.final-cta small {
  margin-top: 20px;
  color: #7d8b82;
  font-size: 0.75rem;
}

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 40px 0 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  color: #849188;
  font-size: 0.78rem;
}

.footer-brand {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  background: white;
}

footer p { margin: 0; }

footer > div {
  display: flex;
  gap: 22px;
  color: #c9d2cc;
}

.legal {
  grid-column: 2 / -1;
  max-width: 800px;
  color: #5e6b62;
  line-height: 1.6;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  min-height: 58px;
  padding: 0 22px;
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: linear-gradient(105deg, #6fa900, #168e7f);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36), 0 0 38px rgba(159, 226, 26, 0.18);
  font-size: 0.83rem;
  font-weight: 800;
}

.mobile-whatsapp b {
  margin-left: 8px;
  font-size: 1.15rem;
}

.whatsapp-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b6a41;
  background: white;
}

.reveal {
  animation: revealUp 0.9s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-delay {
  animation-delay: 0.16s;
}

@keyframes spinGlow {
  to { transform: rotate(1turn); }
}

@keyframes dotPulse {
  70% { box-shadow: 0 0 0 9px rgba(159, 226, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(159, 226, 26, 0); }
}

@keyframes scan {
  0%, 100% { transform: translateY(50px); opacity: 0; }
  15%, 85% { opacity: 0.62; }
  50% { transform: translateY(510px); opacity: 0.8; }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .site-header { width: min(calc(100% - 28px), var(--max)); }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 700px; }
  .image-shell { inset-inline: 0; }
  .pain-grid, .section-heading { grid-template-columns: 1fr; gap: 38px; }
  .pain-copy { max-width: 620px; }
  .journey-section { padding: 64px; grid-template-columns: 1fr; gap: 48px; }
  .authority-card { grid-template-columns: 130px 1fr; }
  .authority-logo { width: 130px; height: 130px; }
  .authority-card .button { grid-column: 2; justify-self: start; }
  .faq-section { grid-template-columns: 0.78fr 1fr; gap: 50px; }
  .results-heading { grid-template-columns: 1fr; gap: 30px; }
  .results-note { max-width: 520px; }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    margin-top: 10px;
    padding: 7px 8px 7px 9px;
  }

  .brand { width: 56px; height: 56px; }
  .site-header .button { min-height: 52px; padding-inline: 18px; font-size: 0.76rem; }
  .hero, .social-proof, .pain-section, .services-section, .results-section, .journey-section, .authority-section, .faq-section, .final-cta, footer {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero { min-height: auto; padding: 62px 0 40px; gap: 36px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .eyebrow { font-size: 0.64rem; letter-spacing: 0.11em; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-row i { display: none; }
  .hero-visual { min-height: 510px; }
  .image-shell { inset: 0; border-radius: 32px; }
  .float-card-top { top: -12px; right: -6px; }
  .float-card-bottom { bottom: -10px; left: -6px; }
  .float-card { max-width: 228px; padding: 12px; }
  .float-card strong { font-size: 0.72rem; }
  .float-icon, .mini-orbit { width: 36px; height: 36px; }
  .social-proof { margin-top: 34px; margin-bottom: 30px; grid-template-columns: auto 1fr; padding: 22px; gap: 18px; }
  .proof-orb { width: 82px; height: 82px; }
  .social-proof p { font-size: 0.83rem; }
  .social-proof > a { grid-column: 1 / -1; justify-self: start; }
  .pain-section { padding: 90px 0 100px; }
  .pain-grid h2, .section-heading h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .pain-copy { padding-left: 20px; }
  .services-section { padding: 78px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 420px; }
  .results-section { padding: 82px 0 92px; }
  .results-heading h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .results-track { margin-inline: -14px; padding-inline: 14px; gap: 14px; }
  .result-card { min-width: 82vw; }
  .result-card img { height: 500px; }
  .results-footer { grid-template-columns: 1fr 1fr; padding: 22px; }
  .results-footer .button { grid-column: 1 / -1; width: 100%; }
  .journey-section { margin-top: 10px; padding: 42px 24px; border-radius: 34px; }
  .journey-list li { grid-template-columns: 54px 1fr; }
  .authority-section { padding: 80px 0 50px; }
  .authority-card { padding: 38px 24px; grid-template-columns: 84px 1fr; gap: 24px 18px; border-radius: 32px; }
  .authority-logo { width: 84px; height: 84px; }
  .authority-card > div:nth-child(2) { grid-column: 1 / -1; }
  .authority-card h2 { font-size: 2.5rem; }
  .authority-card .button { grid-column: 1 / -1; width: 100%; }
  .faq-section { padding: 70px 0 90px; grid-template-columns: 1fr; gap: 36px; }
  .faq-title h2 { font-size: 3rem; }
  summary { font-size: 0.88rem; }
  .final-cta { min-height: 560px; margin-bottom: 24px; padding: 74px 20px; border-radius: 36px; }
  .final-cta h2 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .final-cta .button { width: 100%; }
  footer { padding-bottom: 120px; grid-template-columns: auto 1fr; }
  footer > div { grid-column: 1 / -1; }
  .legal { grid-column: 1 / -1; }
  .mobile-whatsapp { display: flex; left: 14px; right: 14px; bottom: 14px; justify-content: center; animation: mobilePulse 2.2s ease-in-out infinite; }
  @keyframes scan { 50% { transform: translateY(420px); opacity: 0.8; } }
  @keyframes mobilePulse { 50% { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36), 0 0 52px rgba(159, 226, 26, 0.3); } }
}

@media (max-width: 420px) {
  .site-header .button span { display: none; }
  .site-header .button { padding-inline: 15px; }
  .hero h1 { font-size: 2.9rem; }
  .trust-row { grid-template-columns: 1fr; }
  .hero-visual { min-height: 450px; }
  .social-proof { grid-template-columns: 1fr; }
  .social-proof p { font-size: 0.86rem; }
  .journey-intro h2, .faq-title h2 { font-size: 2.6rem; }
  .results-footer { grid-template-columns: 1fr; }
  .results-footer .button { grid-column: 1; }
  .result-card img { height: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Conversão v6 — copy centrada no paciente e paleta clínica azul/verde */
.clinical-scan {
  z-index: 6;
  opacity: 0.88;
  animation-duration: 6.4s;
}

.clinical-scan span {
  top: 12px;
  color: white;
  background: rgba(3, 24, 39, 0.82);
  border-color: rgba(97, 231, 255, 0.28);
}

.clinical-focus {
  position: absolute;
  z-index: 7;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr auto auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: white;
  background: rgba(3, 24, 39, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.clinical-focus span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #031913;
  background: var(--lime);
  font-size: 0.62rem;
  font-weight: 900;
}

.clinical-focus strong {
  font-size: 0.68rem;
  line-height: 1.25;
}

.clinical-focus i {
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.pain-signals {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pain-signals span {
  min-height: 76px;
  padding: 18px 18px 18px 46px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(97, 231, 255, 0.12);
  border-radius: 18px;
  color: #d8e8ee;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.79rem;
  line-height: 1.4;
}

.pain-signals span::before {
  position: absolute;
  margin-left: -28px;
  content: "✓";
  color: var(--lime);
  font-weight: 900;
  text-shadow: 0 0 16px rgba(46, 230, 166, 0.55);
}

.decision-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 34px auto 78px;
  padding: 74px;
  border: 1px solid rgba(30, 144, 255, 0.13);
  border-radius: 48px;
  color: #071722;
  background:
    radial-gradient(circle at 92% 12%, rgba(97, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 6% 88%, rgba(46, 230, 166, 0.14), transparent 32%),
    #f9fdff;
  box-shadow: 0 34px 90px rgba(0, 70, 110, 0.12);
}

.decision-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.decision-heading .section-kicker {
  color: #0b8c68;
}

.decision-heading h2 {
  max-width: 820px;
  margin: 15px 0 18px;
  color: #071722;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 560;
}

.decision-heading .gradient-text {
  background-image: linear-gradient(90deg, #0a9e73, #0c7fe8);
}

.decision-heading > p {
  max-width: 680px;
  margin: 0;
  color: #536772;
  font-size: 1rem;
  line-height: 1.7;
}

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

.decision-grid article {
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(9, 99, 147, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(7, 67, 98, 0.07);
}

.decision-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #046a50;
  background: rgba(46, 230, 166, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
}

.decision-grid h3 {
  margin: 34px 0 12px;
  color: #081d2a;
  font-size: 1.15rem;
}

.decision-grid p {
  margin: 0;
  color: #61727b;
  font-size: 0.86rem;
  line-height: 1.62;
}

.proof-rail {
  margin-top: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(10, 126, 181, 0.12);
  border-radius: 26px;
  background: #061b28;
}

.proof-rail > div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-rail strong,
.proof-rail span {
  display: block;
}

.proof-rail strong {
  margin-bottom: 4px;
  color: white;
  font-size: 0.92rem;
}

.proof-rail span {
  color: #92aebc;
  font-size: 0.67rem;
  line-height: 1.4;
}

.proof-rail .button {
  min-height: 58px;
  padding-inline: 24px;
  color: white;
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .clinical-focus { grid-template-columns: auto 1fr; }
  .clinical-focus i { display: none; }
  .pain-signals { grid-template-columns: repeat(2, 1fr); }
  .decision-section { padding: 54px 40px; }
  .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-rail { grid-template-columns: repeat(3, 1fr); }
  .proof-rail .button { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .clinical-focus { right: 14px; bottom: 14px; left: 14px; padding: 12px; }
  .clinical-focus span { width: 23px; height: 23px; }
  .clinical-focus strong { font-size: 0.62rem; }
  .pain-signals { margin-top: 28px; grid-template-columns: 1fr; }
  .pain-signals span { min-height: 62px; }
  .decision-section { width: calc(100% - 24px); margin-bottom: 34px; padding: 52px 20px; border-radius: 34px; }
  .decision-heading h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid article { min-height: 0; }
  .decision-grid h3 { margin-top: 24px; }
  .proof-rail { grid-template-columns: 1fr; padding: 16px; }
  .proof-rail .button { grid-column: auto; width: 100%; }
}

/* Clínica premium — identidade azul, verde, preto e branco */
:root {
  --ink: #0a1d27;
  --muted: #627680;
  --deep: #ffffff;
  --panel: #ffffff;
  --panel-2: #eff8fa;
  --line: rgba(5, 62, 82, 0.12);
  --lime: #12a86f;
  --cyan: #087fc4;
  --gold: #57c9a5;
  --orange: #086eaa;
  --pink: #08649a;
  --magenta: #075a89;
  --navy: #062f43;
  --blue: #087fc4;
}

body {
  background: #ffffff;
  color: var(--ink);
}

body::before {
  background:
    linear-gradient(rgba(8, 127, 196, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 168, 111, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

.aurora { opacity: 0.09; filter: blur(130px); }
.aurora-one { background: var(--cyan); }
.aurora-two { background: var(--lime); }

.site-header {
  border-color: rgba(6, 69, 91, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(6, 47, 67, 0.09);
}

.brand {
  box-shadow: 0 0 0 1px rgba(6, 69, 91, 0.09), 0 10px 28px rgba(8, 127, 196, 0.1);
}

nav { gap: 23px; color: #365763; }
nav a:hover { color: var(--cyan); }

.button { border-color: rgba(255, 255, 255, 0.3); }
.button-small,
.button-primary {
  color: #ffffff;
  background: linear-gradient(105deg, #087fc4 0%, #0877ad 42%, #12a86f 100%);
  box-shadow: 0 12px 32px rgba(8, 127, 196, 0.18), 0 0 42px rgba(18, 168, 111, 0.08);
}

.glow-button::before {
  background: conic-gradient(from 0deg, #087fc4, #12a86f, #e7fffa, #087fc4);
}

.glow-button::after {
  background: linear-gradient(105deg, #087fc4, #0b957f 60%, #12a86f);
}

.glow-button:hover {
  box-shadow: 0 14px 38px rgba(8, 127, 196, 0.25), 0 0 58px rgba(18, 168, 111, 0.16);
}

.hero {
  min-height: 760px;
  margin-top: 24px;
  padding: 68px 58px 72px;
  border: 1px solid rgba(6, 69, 91, 0.09);
  border-radius: 48px;
  background:
    radial-gradient(circle at 8% 12%, rgba(8, 127, 196, 0.08), transparent 31%),
    radial-gradient(circle at 62% 90%, rgba(18, 168, 111, 0.07), transparent 34%),
    linear-gradient(135deg, #ffffff, #f5fbfc 62%, #ecf8f6);
  box-shadow: 0 35px 90px rgba(6, 47, 67, 0.09);
}

.eyebrow,
.section-kicker { color: #0879b5; }

.eyebrow {
  border-color: rgba(8, 127, 196, 0.16);
  background: rgba(8, 127, 196, 0.05);
}

.live-dot {
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(18, 168, 111, 0.5);
}

.hero h1 { color: #071c25; }
.gradient-text {
  background: linear-gradient(90deg, #087fc4 0%, #08939e 47%, #12a86f 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.text-link { color: #274c59; border-color: rgba(6, 69, 91, 0.2); }
.trust-row strong { color: #173943; }
.trust-row span { color: #70858d; }
.trust-row i { background: var(--cyan); }

.image-shell {
  border-color: rgba(6, 69, 91, 0.13);
  background: #f4fbfc;
  box-shadow: 0 35px 80px rgba(6, 47, 67, 0.17), 0 0 70px rgba(18, 168, 111, 0.08);
}

.image-shell::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 40%), linear-gradient(to top, rgba(6, 47, 67, 0.2), transparent 30%);
}

.image-shell::after {
  box-shadow: inset 0 0 0 1px rgba(8, 127, 196, 0.06), inset 0 -60px 90px rgba(8, 127, 196, 0.04);
}

.scan-line { background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent); }

.float-card {
  border-color: rgba(6, 69, 91, 0.1);
  color: #102f39;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(6, 47, 67, 0.15);
}

.float-card small { color: #71858d; }
.float-icon,
.mini-orbit { color: var(--cyan); background: rgba(8, 127, 196, 0.08); box-shadow: inset 0 0 0 1px rgba(8, 127, 196, 0.14); }
.mini-orbit { color: var(--lime); background: rgba(18, 168, 111, 0.08); }

.social-proof {
  margin-top: 42px;
  border-color: rgba(6, 69, 91, 0.1);
  background: linear-gradient(110deg, rgba(8, 127, 196, 0.055), rgba(255, 255, 255, 0.9) 52%, rgba(18, 168, 111, 0.055));
  box-shadow: 0 20px 60px rgba(6, 47, 67, 0.06);
}

.proof-orb { border-color: rgba(18, 168, 111, 0.22); background: radial-gradient(circle at 40% 35%, rgba(18, 168, 111, 0.16), rgba(255, 255, 255, 0.8) 68%); }
.proof-orb small { color: #70838a; }
.social-proof p { color: #5c7179; }
.social-proof p strong { color: #173943; }
.social-proof > a { color: var(--cyan); border-color: rgba(8, 127, 196, 0.25); }

.pain-section { border-color: var(--line); }
.pain-grid h2 span { color: #76909a; }
.pain-copy { border-color: rgba(6, 69, 91, 0.16); }
.pain-copy a,
.service-card a { color: #087fc4; }
.signal-line span:nth-child(3) { background: var(--blue); }

.services-section { position: relative; }
.service-card {
  border-color: rgba(6, 69, 91, 0.11);
  background: linear-gradient(160deg, #ffffff, #f5fafb);
  box-shadow: 0 22px 58px rgba(6, 47, 67, 0.07);
}
.service-card:hover { border-color: rgba(8, 127, 196, 0.24); box-shadow: 0 28px 65px rgba(6, 47, 67, 0.12); }
.service-lime { --card-accent: #12a86f; }
.service-cyan { --card-accent: #17a6bf; }
.service-blue { --card-accent: #087fc4; }
.service-top { color: #76909a; }
.service-top i { color: #087fc4; background: #ffffff; }

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

.journey-section {
  border-color: rgba(6, 69, 91, 0.1);
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 127, 196, 0.09), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(18, 168, 111, 0.09), transparent 40%),
    #f7fbfc;
  box-shadow: 0 24px 70px rgba(6, 47, 67, 0.07);
}
.journey-list > li > span { color: var(--cyan); background: rgba(8, 127, 196, 0.08); }

.authority-card {
  border-color: rgba(8, 127, 196, 0.22);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 110%, rgba(18, 168, 111, 0.3), transparent 36%),
    linear-gradient(115deg, #051d28, #06364a 54%, #075d66);
  box-shadow: 0 30px 80px rgba(6, 47, 67, 0.2);
}
.authority-card::before { background: linear-gradient(120deg, var(--cyan), var(--lime)); }
.authority-card .section-kicker { color: #6cdec5; }
.authority-card p { color: #b9d0d7; }

.location-section {
  padding: 48px 0 120px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: stretch;
  gap: 52px;
}

.location-copy {
  padding: 58px 0;
}
.location-copy h2 {
  margin: 20px 0 22px;
  font-size: clamp(2.7rem, 4.3vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.057em;
  font-weight: 510;
}
.location-copy > p { max-width: 520px; color: var(--muted); line-height: 1.72; }
.location-details { margin: 30px 0; border-top: 1px solid var(--line); }
.location-details > div { padding: 18px 0; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.location-details > div > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(8, 127, 196, 0.08); font-size: 0.68rem; font-weight: 800; }
.location-details p { margin: 0; display: grid; gap: 3px; color: var(--muted); font-size: 0.8rem; }
.location-details strong { color: #173943; font-size: 0.88rem; }

.map-shell {
  position: relative;
  min-height: 560px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(6, 69, 91, 0.12);
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(6, 47, 67, 0.12);
}
.map-shell iframe { width: 100%; height: 100%; min-height: 540px; display: block; border: 0; border-radius: 29px; filter: saturate(0.78) contrast(1.03); }
.map-badge { position: absolute; left: 30px; bottom: 30px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(6, 69, 91, 0.1); border-radius: 18px; color: #173943; background: rgba(255, 255, 255, 0.92); box-shadow: 0 16px 42px rgba(6, 47, 67, 0.16); backdrop-filter: blur(16px); }
.map-badge > span { color: var(--lime); }
.map-badge strong,
.map-badge small { display: block; }
.map-badge strong { margin-bottom: 3px; font-size: 0.84rem; }
.map-badge small { color: var(--muted); font-size: 0.7rem; }

summary { color: #173943; }
summary i { color: var(--cyan); }
details[open] summary i { background: rgba(8, 127, 196, 0.08); }

.final-cta {
  border-color: rgba(8, 127, 196, 0.2);
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(8, 127, 196, 0.23), transparent 52%),
    linear-gradient(135deg, #041a24, #06384b 66%, #075964);
  box-shadow: 0 32px 90px rgba(6, 47, 67, 0.22);
}
.final-cta::after { background: linear-gradient(90deg, var(--cyan), var(--lime), var(--cyan)); }
.final-glow { background: radial-gradient(circle, rgba(18, 168, 111, 0.2), transparent 70%); }
.final-cta .section-kicker { color: #69dec3; }
.final-cta p { color: #bfd1d7; }
.final-cta small { color: #91adb6; }

footer { color: #71858d; }
footer > div { color: #365763; }
.legal { color: #7a8d94; }
.mobile-whatsapp { background: linear-gradient(105deg, #087fc4, #12a86f); box-shadow: 0 12px 34px rgba(6, 47, 67, 0.28), 0 0 38px rgba(8, 127, 196, 0.14); }

@media (max-width: 1080px) {
  .hero { padding-inline: 42px; }
  .location-section { grid-template-columns: 1fr; gap: 10px; }
  .location-copy { max-width: 700px; padding-bottom: 20px; }
}

@media (max-width: 760px) {
  .hero { width: min(calc(100% - 20px), var(--max)); margin-top: 14px; padding: 54px 18px 30px; border-radius: 34px; }
  .social-proof,
  .location-section { width: min(calc(100% - 28px), var(--max)); }
  .location-section { padding-bottom: 88px; }
  .location-copy { padding-top: 30px; }
  .location-copy .button { width: 100%; }
  .map-shell { min-height: 480px; border-radius: 30px; }
  .map-shell iframe { min-height: 460px; border-radius: 23px; }
  .map-badge { right: 22px; left: 22px; bottom: 22px; }
}

/* Scanner visual de planejamento — atualização ultra */
.image-shell {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(15, 179, 213, 0.24), transparent 36%),
    linear-gradient(145deg, #061c27, #082f40 56%, #075a59);
  box-shadow:
    0 38px 90px rgba(6, 47, 67, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.55),
    0 0 75px rgba(8, 127, 196, 0.12);
}

.image-shell::before {
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 29, 40, 0.18), transparent 18%, transparent 82%, rgba(4, 29, 40, 0.18)),
    linear-gradient(to top, rgba(4, 29, 40, 0.48), transparent 31%);
}

.image-shell::after {
  z-index: 10;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 0 58px rgba(7, 113, 145, 0.18);
}

.scan-line {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  opacity: 1;
  background: linear-gradient(90deg, transparent 2%, #08b7df 20%, #71ffcf 50%, #08b7df 80%, transparent 98%);
  box-shadow: 0 0 8px #08b7df, 0 0 24px rgba(45, 241, 203, 0.92), 0 0 55px rgba(8, 183, 223, 0.55);
  animation: clinicScanner 7.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.scan-line::before {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 68px;
  content: "";
  opacity: 0.4;
  background: linear-gradient(to top, rgba(57, 233, 213, 0.22), transparent);
}

.scan-line span {
  position: absolute;
  top: 12px;
  left: 50%;
  padding: 6px 11px;
  border: 1px solid rgba(113, 255, 207, 0.36);
  border-radius: 999px;
  color: #d9fff6;
  background: rgba(4, 42, 55, 0.78);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(50px);
  pointer-events: none;
}

.hero-visual::before {
  top: 2%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: rgba(8, 127, 196, 0.14);
}

.hero-visual::after {
  bottom: 2%;
  left: -3%;
  width: 230px;
  height: 230px;
  background: rgba(18, 168, 111, 0.14);
}

.location-details > div {
  grid-template-columns: 44px 1fr;
}

.location-details p {
  line-height: 1.48;
}

.map-shell {
  box-shadow:
    0 32px 85px rgba(6, 47, 67, 0.14),
    0 0 0 7px rgba(8, 127, 196, 0.035);
}

.map-badge {
  border-color: rgba(18, 168, 111, 0.2);
  box-shadow: 0 18px 48px rgba(6, 47, 67, 0.19), 0 0 28px rgba(18, 168, 111, 0.08);
}

@keyframes clinicScanner {
  0%, 10% { top: 0; }
  48%, 62% { top: calc(100% - 3px); }
  100% { top: 0; }
}

@media (max-width: 760px) {
  .scan-line span { top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .scan-line {
    top: 53%;
    animation: none !important;
  }
}

.pain-signals span {
  position: relative;
  color: #284b58;
  border-color: rgba(8, 127, 196, 0.12);
  background: linear-gradient(145deg, #ffffff, #f2f9fb);
  box-shadow: 0 14px 34px rgba(6, 47, 67, 0.055);
}

.pain-signals span::before {
  color: #12a86f;
}

/* Scanner clínico antes/depois */
.smile-comparison {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #071d27;
}

.smile-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.045) brightness(1.025);
  transform: scale(1.012);
}

.smile-before { z-index: 1; }
.smile-after {
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  animation: smileAfterReveal 7.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.smile-comparison .scan-line {
  z-index: 8;
  height: 3px;
  opacity: 1;
  background: linear-gradient(90deg, transparent 2%, #08b7df 20%, #71ffcf 50%, #08b7df 80%, transparent 98%);
  box-shadow: 0 0 8px #08b7df, 0 0 24px rgba(45, 241, 203, 0.92), 0 0 55px rgba(8, 183, 223, 0.55);
  animation: smileScanner 7.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.smile-comparison .scan-line::before {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 68px;
  content: "";
  opacity: 0.4;
  background: linear-gradient(to top, rgba(57, 233, 213, 0.22), transparent);
}

.smile-comparison .scan-line span {
  position: absolute;
  top: 12px;
  left: 50%;
  padding: 6px 11px;
  border: 1px solid rgba(113, 255, 207, 0.36);
  border-radius: 999px;
  color: #d9fff6;
  background: rgba(4, 42, 55, 0.78);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.comparison-label {
  position: absolute;
  z-index: 9;
  top: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(4, 34, 46, 0.66);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.comparison-before { left: 24px; }
.comparison-after { right: 24px; color: #d9fff3; border-color: rgba(113, 255, 207, 0.48); background: rgba(4, 94, 83, 0.7); }

.comparison-note {
  position: absolute;
  z-index: 9;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(3, 28, 38, 0.7);
  backdrop-filter: blur(14px);
  font-size: 0.65rem;
  font-weight: 680;
  text-align: center;
}

.comparison-note i { color: #43edb4; font-style: normal; text-shadow: 0 0 14px rgba(67, 237, 180, 0.85); }

@keyframes smileAfterReveal {
  0%, 10% { clip-path: inset(0 0 100% 0); }
  48%, 62% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

@keyframes smileScanner {
  0%, 10% { top: 0; }
  48%, 62% { top: calc(100% - 3px); }
  100% { top: 0; }
}

@media (max-width: 760px) {
  .comparison-label { top: 18px; }
  .comparison-before { left: 18px; }
  .comparison-after { right: 18px; }
  .comparison-note { right: 15px; bottom: 15px; left: 15px; font-size: 0.59rem; }
  .smile-comparison .scan-line span { top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .smile-after { clip-path: inset(0 0 47% 0); animation: none !important; }
  .smile-comparison .scan-line { top: 53%; animation: none !important; }
}
