:root {
	--bg: #eef1f6;
	--white: #ffffff;
	--dark: #33454b;
	--dark-2: #3d525a;
	--text: #1f2b2e;
	--muted: #626f78;
	--accent: #5f8f87;
	--accent-soft: #e3ede9;
	--line: rgba(15, 23, 25, 0.08);
	--line-dark: rgba(255, 255, 255, 0.14);
	--radius-lg: 24px;
	--radius-md: 16px;
	--max: 1200px;
	font-family: "Inter", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

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

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

button {
	color: inherit;
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

h1, h2, h3 {
	margin: 0 0 16px;
	font-family: "Poppins", "Inter", Arial, sans-serif;
	font-weight: 300;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

h1 strong, h2 strong, .accent-text {
	font-weight: 600;
	color: inherit;
}

.accent {
	color: var(--accent);
}

p {
	margin: 0 0 12px;
	color: var(--muted);
}

.max {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 8px 6px 24px;
	min-height: 56px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	font-family: "Inter", Arial, sans-serif;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.btn:active {
	transform: scale(0.97);
}

.btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

.btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 16px;
	flex-shrink: 0;
}

.btn--dark {
	background: var(--dark);
	color: var(--white);
}

.btn--dark .btn__icon {
	background: var(--accent);
	color: var(--white);
}

.btn--dark:hover {
	box-shadow: 0 14px 30px rgba(51, 69, 75, 0.28);
}

.btn--white {
	background: var(--white);
	color: var(--text);
}

.btn--white .btn__icon {
	background: var(--accent-soft);
	color: var(--accent);
}

.btn--white:hover {
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn--ghost-dark {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border: 1px solid var(--line-dark);
	padding-right: 24px;
}

.btn--ghost-dark .btn__icon {
	background: rgba(255, 255, 255, 0.14);
	color: var(--white);
}

.btn--outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--line);
	padding: 0 22px;
	min-height: 50px;
}

.btn--outline:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn--nopad {
	padding: 6px 6px 6px 22px;
}

/* ---------- Topbar ---------- */
.topbar {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px clamp(20px, 4vw, 48px);
	background: var(--dark);
	backdrop-filter: blur(14px);
}

.brand img {
	width: 168px;
	height: auto;
	filter: brightness(0) invert(1);
}

.nav {
	display: flex;
	gap: 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 500;
}

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

/* ---------- Notice bar ---------- */
.notice-bar {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 10px 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding: 64px clamp(20px, 4vw, 48px) 96px;
	overflow: hidden;
	color: var(--white);
}

.hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(30, 42, 46, 0.96) 0%, rgba(30, 42, 46, 0.85) 42%, rgba(30, 42, 46, 0.55) 75%, rgba(30, 42, 46, 0.4) 100%),
		url("/wp-content/uploads/2025/06/Dr-Guilherme.png") center right / cover no-repeat;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding-top: 40px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
}

.eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
}

.hero__content .eyebrow {
	color: #a9c9c2;
}

.hero__content .eyebrow::before {
	background: #a9c9c2;
}

h1 {
	font-size: clamp(36px, 5vw, 54px);
}

.lead {
	max-width: 540px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
}

.hero__actions {
	margin-top: 32px;
}

.trust-inline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 22px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
}

.trust-inline span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ---------- Stats bar ---------- */
.stats-bar {
	position: relative;
	z-index: 2;
	max-width: var(--max);
	margin: -56px auto 0;
	padding: 28px clamp(20px, 4vw, 40px);
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 60px rgba(20, 30, 33, 0.14);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.stats-bar__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.stats-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent);
	flex-shrink: 0;
	font-size: 16px;
}

.stats-bar__item strong {
	display: block;
	color: var(--text);
	font-weight: 600;
}

.stats-bar__item span {
	color: var(--muted);
	font-size: 13px;
}

/* ---------- Section shell ---------- */
.section {
	padding: 96px clamp(20px, 4vw, 40px);
}

.section--tint {
	background: linear-gradient(180deg, #e2ecf5 0%, #eef1f6 100%);
}

.section__header {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}

.section__header h2 {
	font-size: clamp(28px, 3.6vw, 40px);
}

.section__header p {
	font-size: 16px;
}

/* ---------- Two-column benefits ---------- */
.split {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.split__eyebrow-block h2 {
	font-size: clamp(28px, 3.4vw, 38px);
}

.split__quote {
	margin-top: 24px;
	padding: 28px;
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: 0 20px 40px rgba(20, 30, 33, 0.06);
}

.split__quote p {
	color: var(--text);
	font-size: 15px;
	margin-bottom: 20px;
}

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

.benefit-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 22px;
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: 0 16px 32px rgba(20, 30, 33, 0.05);
}

.benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 18px;
	flex-shrink: 0;
}

.benefit-card h3 {
	margin: 0 0 4px;
	font-family: "Inter", Arial, sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--text);
}

.benefit-card p {
	margin: 0;
	font-size: 14px;
}

.benefit-card--accent {
	border: 1px solid var(--accent);
}

/* ---------- Card grids (indications / differentials / how it works) ---------- */
.card-grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

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

.grid-card {
	position: relative;
	padding: 26px;
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: 0 16px 32px rgba(20, 30, 33, 0.05);
}

.grid-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 18px;
	margin-bottom: 22px;
}

.grid-card__number {
	position: absolute;
	top: 22px;
	right: 24px;
	font-family: "Poppins", Arial, sans-serif;
	font-weight: 300;
	font-size: 30px;
	color: rgba(31, 43, 46, 0.14);
}

.grid-card h3 {
	font-family: "Inter", Arial, sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--text);
}

.grid-card p {
	font-size: 14px;
	margin: 0;
}

.grid-card--cta {
	background: var(--dark);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.grid-card--cta h3 {
	color: var(--white);
	font-size: 18px;
}

.grid-card--cta p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.grid-card--cta .btn-link {
	margin-top: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
}

/* ---------- Callout bar ---------- */
.callout {
	max-width: var(--max);
	margin: 32px auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px 34px;
	background: var(--dark);
	color: rgba(255, 255, 255, 0.85);
	border-radius: var(--radius-lg);
}

.callout p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	max-width: 640px;
}

.callout__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #a9c9c2;
	margin-right: 8px;
	flex-shrink: 0;
}

/* ---------- Doctor split ---------- */
.doctor {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: stretch;
	background: var(--dark-2);
}

.doctor__photo {
	position: relative;
	min-height: 560px;
}

.doctor__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor__content {
	padding: 72px clamp(24px, 5vw, 64px);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.doctor__content .eyebrow {
	color: #a9c9c2;
}

.doctor__content .eyebrow::before {
	background: #a9c9c2;
}

.doctor__content h2 {
	color: var(--white);
	font-size: clamp(32px, 4vw, 44px);
	margin-bottom: 4px;
}

.doctor__subtitle {
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
	margin-bottom: 24px;
}

.doctor__content p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
}

.doctor__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--line-dark);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--white);
}

.badge-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	font-size: 13px;
}

.doctor__foot {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid var(--line-dark);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
}

.doctor__foot strong {
	color: var(--white);
	font-size: 15px;
}

/* ---------- Trust bar (honest, no fabricated stats) ---------- */
.trust-bar {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 32px;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: 0 16px 32px rgba(20, 30, 33, 0.05);
	flex-wrap: wrap;
}

.trust-bar__left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.trust-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 20px;
}

.trust-bar p {
	margin: 0;
	font-size: 14px;
	color: var(--text);
	max-width: 480px;
}

/* ---------- FAQ ---------- */
.faq-layout {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 48px;
}

.faq-layout .section__header {
	text-align: left;
	margin: 0;
}

.faq-list details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin-bottom: 12px;
}

.faq-list summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-weight: 600;
	font-size: 15px;
	color: var(--text);
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--white);
	font-size: 16px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
	content: "\2212";
}

.faq-list p {
	margin: 14px 0 0;
	font-size: 14px;
}

/* ---------- Final CTA ---------- */
.final-cta {
	background: var(--dark);
	color: var(--white);
	padding: 96px clamp(20px, 4vw, 48px);
}

.final-cta__wrap {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
	gap: 48px;
	align-items: center;
}

.final-cta h2 {
	color: var(--white);
	font-size: clamp(30px, 4vw, 42px);
}

.final-cta p {
	color: rgba(255, 255, 255, 0.78);
	max-width: 460px;
}

.final-cta__note {
	margin-top: 16px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.info-cards {
	display: grid;
	gap: 12px;
}

.info-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-md);
}

.info-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
}

.info-card span {
	display: block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 2px;
}

.info-card strong {
	font-size: 14px;
	color: var(--white);
	font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
	position: relative;
	background: var(--dark-2);
	color: rgba(255, 255, 255, 0.6);
	padding: 64px clamp(20px, 4vw, 48px) 0;
	overflow: hidden;
}

.footer__grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}

.footer__brand img {
	width: 150px;
	filter: brightness(0) invert(1);
	margin-bottom: 14px;
}

.footer__grid h4 {
	margin: 0 0 12px;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 600;
}

.footer__grid p, .footer__grid a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 6px;
	display: block;
}

.footer__grid .footer__link {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 10px;
	transition: color 0.2s ease;
}

.footer__grid a.footer__link:hover {
	color: #fff;
}

.footer__icon {
	flex: 0 0 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 16px;
	margin-top: 2px;
	color: var(--accent);
}

.footer__icon svg {
	width: 16px;
	height: 16px;
}

.footer__disclaimer {
	max-width: var(--max);
	margin: 0 auto;
	padding: 20px 0 32px;
	border-top: 1px solid var(--line-dark);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

.footer__watermark {
	text-align: center;
	font-family: "Poppins", Arial, sans-serif;
	font-weight: 700;
	font-size: clamp(60px, 14vw, 160px);
	color: rgba(255, 255, 255, 0.04);
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	line-height: 1;
	margin-top: -10px;
}

.footer__copy {
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	border-top: 1px solid var(--line-dark);
}

/* ---------- Ticker (kept for consistency, teal-tinted) ---------- */
.ticker {
	overflow: hidden;
	padding: 11px 0;
	background: var(--accent-soft);
	color: var(--dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.ticker__track {
	display: flex;
	width: max-content;
	animation: ticker-scroll 24s linear infinite;
}

.ticker:hover .ticker__track {
	animation-play-state: paused;
}

.ticker__group {
	display: flex;
	gap: 34px;
	padding-right: 34px;
}

@keyframes ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 30;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 56px;
	padding: 0 22px;
	border-radius: 999px;
	background: #25d366;
	color: #06170b;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
	animation: wa-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
	transform: translateY(-2px);
}

.whatsapp-float:active {
	transform: scale(0.96);
}

@keyframes wa-pulse {
	0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.45); }
	50% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- Scroll reveal ---------- */
.reveal-item.js-armed {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.js-armed.is-visible {
	opacity: 1;
	transform: none;
}

.stagger > .reveal-item:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal-item:nth-child(2) { transition-delay: 90ms; }
.stagger > .reveal-item:nth-child(3) { transition-delay: 180ms; }
.stagger > .reveal-item:nth-child(4) { transition-delay: 270ms; }
.stagger > .reveal-item:nth-child(5) { transition-delay: 360ms; }
.stagger > .reveal-item:nth-child(6) { transition-delay: 450ms; }
.stagger > .reveal-item:nth-child(7) { transition-delay: 540ms; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal-item, .whatsapp-float, .ticker__track {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ---------- Lead form modal (same mechanics, new palette) ---------- */
.lf-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(20, 28, 30, 0.65);
	backdrop-filter: blur(6px);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.lf-overlay[hidden] {
	display: none;
}

.lf-overlay.is-open {
	opacity: 1;
}

.lf-dialog {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: min(640px, 90vh);
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 80px rgba(20, 30, 33, 0.35);
	transform: translateY(16px) scale(0.98);
	opacity: 0;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.lf-overlay.is-open .lf-dialog {
	transform: none;
	opacity: 1;
}

.lf-progress {
	display: flex;
	gap: 6px;
	padding: 24px 28px 0;
}

.lf-progress span {
	flex: 1;
	height: 3px;
	background: var(--line);
	border-radius: 2px;
	overflow: hidden;
}

.lf-progress span::after {
	content: "";
	display: block;
	height: 100%;
	width: 0%;
	background: var(--accent);
	transition: width 0.3s ease;
}

.lf-progress span.is-done::after, .lf-progress span.is-current::after {
	width: 100%;
}

.lf-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--muted);
	line-height: 1;
}

.lf-close:hover {
	color: var(--text);
}

.lf-body {
	padding: 40px clamp(20px, 5vw, 40px) 32px;
	overflow-y: auto;
}

.lf-eyebrow {
	margin: 0 0 10px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lf-question {
	margin: 0 0 24px;
	font-family: "Poppins", Arial, sans-serif;
	font-weight: 500;
	font-size: clamp(19px, 3vw, 24px);
	line-height: 1.3;
	color: var(--text);
}

.lf-input {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--text);
	font-size: 16px;
	font-family: inherit;
}

.lf-input:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.lf-options {
	display: grid;
	gap: 10px;
}

.lf-option {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0 18px;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.lf-option:hover {
	border-color: var(--accent);
	background: var(--accent-soft);
}

.lf-option:active {
	transform: scale(0.98);
}

.lf-option.is-selected {
	border-color: var(--accent);
	background: var(--accent-soft);
	color: var(--dark);
}

.lf-error {
	margin: 10px 0 0;
	color: #c0504a;
	font-size: 13px;
	min-height: 16px;
}

.lf-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 28px;
}

.lf-back {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 10px 4px;
}

.lf-back:hover {
	color: var(--text);
}

.lf-final-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 22px;
}

.lf-summary {
	margin: 18px 0 0;
	padding: 14px 16px;
	background: var(--bg);
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--muted);
}

.lf-summary strong {
	color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.nav { display: none; }
	.stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.split, .card-grid, .card-grid--4, .doctor, .faq-layout, .final-cta__wrap {
		grid-template-columns: 1fr;
	}
	.doctor__photo { min-height: 360px; }
	.callout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
	.topbar { padding: 14px 16px; }
	.brand img { width: 130px; }
	.hero { padding-top: 32px; padding-bottom: 140px; }
	.stats-bar { margin-top: -96px; grid-template-columns: 1fr; }
	.section { padding: 64px 20px; }
	.btn { padding-left: 20px; font-size: 14px; }
}
