@font-face {
    font-family: "Sora";
    src: url("../../../../fonts/sora.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Guthen";
    src: url("../../../../fonts/guthen.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Libre Baskerville";
    src: url("../../../../fonts/libre-baskerville-italic.ttf") format("truetype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Libre Baskerville";
    src: url("../../../../fonts/libre-baskerville-bolditalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg: #f7f2e9;
    --bg-soft: #efe4d2;
    --paper: #fffdf9;
    --paper-strong: #ffffff;
    --text: #37291f;
    --muted: #76685d;
    --line: rgba(96, 73, 55, 0.14);
    --accent: #b89568;
    --accent-deep: #8f6f45;
    --accent-soft: rgba(184, 149, 104, 0.16);
    --brown-dark: #2b2119;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(53, 37, 24, 0.11);
    --container: 1240px;
    --radius: 28px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Sora", Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(221, 198, 164, 0.3), transparent 28%),
        linear-gradient(180deg, #f9f3eb 0%, #f7f2e9 48%, #fffaf3 100%);
    color: var(--text);
}

body,
button,
input,
select,
textarea {
    font-family: "Sora", Arial, sans-serif;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

main {
    overflow: hidden;
}

#results,
#reviews,
#doctor,
#why-atlantic,
#journey,
#faq,
#consultation {
    scroll-margin-top: 120px;
}

.smile-header {
    position: fixed;
    inset: 18px 24px auto;
    z-index: 30;
    height: 76px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 18px 0 22px;
    border: 1px solid rgba(96, 73, 55, 0.13);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(53, 37, 24, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.smile-brand {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.smile-brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: left center;
}

.brand-wordmark {
    display: grid;
    gap: 2px;
    line-height: 1;
    color: var(--text);
}

.brand-wordmark strong {
    font-size: 13px;
    font-weight: 800;
}

.brand-wordmark em {
    color: var(--accent-deep);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.smile-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.smile-nav a {
    transition: color 0.2s ease;
}

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

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(139, 107, 70, 0.2);
}

.button-secondary {
    color: var(--white);
    background: var(--brown-dark);
}

.button-ghost {
    color: var(--text);
    border-color: rgba(96, 73, 55, 0.18);
    background: rgba(255, 253, 249, 0.72);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.hero-section {
    width: min(calc(100% - 48px), 1360px);
    min-height: 920px;
    margin: 0 auto;
    padding: 132px 0 74px;
}

.hero-grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
    gap: 42px;
    align-items: center;
}

.hero-copy {
    max-width: 820px;
}

.script-label {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.25;
    font-weight: 400;
    text-transform: none;
    color: var(--accent-deep);
}

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

h1 {
    margin-bottom: 22px;
    font-size: clamp(50px, 3.95vw, 54px);
    line-height: 1.03;
    letter-spacing: 0;
    color: var(--text);
}

h1 span {
    display: block;
}

.hero-copy > p {
    max-width: 560px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(96, 73, 55, 0.13);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.72);
    color: #54463a;
    font-size: 13px;
    font-weight: 700;
}

.hero-proof i,
.credential-list i,
.contact-stack i {
    color: var(--accent-deep);
}

.hero-form,
.consultation-form {
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(96, 73, 55, 0.11);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-form {
    max-width: 640px;
    padding: 22px;
}

.form-title {
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}

.form-intro {
    margin: -6px 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

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

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(96, 73, 55, 0.15);
    border-radius: 14px;
    background: var(--paper-strong);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
    height: 48px;
    padding: 0 14px;
}

textarea {
    min-height: 84px;
    margin: 12px 0;
    padding: 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-deep);
    box-shadow: 0 0 0 4px rgba(184, 149, 104, 0.16);
}

.hero-form .button,
.consultation-form .button {
    width: 100%;
}

.form-confidential {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.form-response {
    min-height: 20px;
    margin-top: 8px;
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 700;
}

.form-response.is-error {
    color: #a23b2d;
}

.hero-media {
    position: relative;
    min-height: 660px;
}

.hero-photo {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
    background: var(--bg-soft);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 74%;
    height: 590px;
}

.hero-photo-secondary {
    position: absolute;
    left: 0;
    bottom: 58px;
    width: 48%;
    height: 330px;
    border: 10px solid var(--bg);
}

.hero-quote {
    position: absolute;
    right: 32px;
    bottom: 0;
    width: 338px;
    padding: 22px;
    border-radius: 24px;
    background: #2e231b;
    color: var(--white);
    box-shadow: var(--shadow);
}

.hero-quote b,
.hero-quote span {
    display: block;
}

.hero-quote b {
    margin-bottom: 8px;
    font-size: 17px;
}

.hero-quote span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.section-pad {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
    padding: 88px 0;
}

section[id] {
    scroll-margin-top: 120px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.align-left {
    text-align: left;
}

.section-head.wide {
    max-width: 900px;
}

h2 {
    margin-bottom: 18px;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: 0;
}

.section-head p,
.doctor-copy > p,
.consultation-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.compare-before,
.compare-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-after-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: inset(0 0 0 var(--compare-position));
}

.compare-range {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    z-index: 5;
    width: 2px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.compare-arrows {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(96, 73, 55, 0.14);
    box-shadow: 0 16px 36px rgba(53, 37, 24, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.compare-arrows::before,
.compare-arrows::after {
    position: absolute;
    top: 50%;
    color: var(--accent-deep);
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.compare-arrows::before {
    content: "\2039";
    left: 16px;
    transform: translateY(-54%);
}

.compare-arrows::after {
    content: "\203A";
    right: 16px;
    transform: translateY(-54%);
}

.compare-badge {
    position: absolute;
    bottom: 10px;
    z-index: 4;
    min-width: auto;
    min-height: 26px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(96, 73, 55, 0.14);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.9);
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.compare-badge-before {
    left: 10px;
}

.compare-badge-after {
    right: 10px;
}

.result-slider {
    margin: 0 auto;
    max-width: 1180px;
}

.result-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 12px;
    transform: translateY(-8px);
}

.result-slider-controls span {
    display: none;
}

.result-slider-controls > div {
    display: flex;
    gap: 10px;
}

.slider-button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(96, 73, 55, 0.14);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.82);
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-button:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.result-thumbs {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 20px;
    scrollbar-width: none;
}

.result-thumbs::-webkit-scrollbar {
    display: none;
}

.mini-compare {
    position: relative;
    flex: 0 0 calc((100% - 66px) / 4);
    scroll-snap-align: start;
    overflow: hidden;
    aspect-ratio: 0.84;
    border-radius: 28px;
    background: var(--bg-soft);
    box-shadow: 0 16px 42px rgba(53, 37, 24, 0.08);
}

.compare-treatment {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 4;
    width: fit-content;
    max-width: calc(100% - 32px);
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.88);
    color: var(--text);
    display: none;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.compare-handle.mini::after {
    content: none;
}

.compare-handle.mini .compare-arrows {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.compare-handle.mini .compare-arrows::before {
    left: 12px;
    font-size: 22px;
}

.compare-handle.mini .compare-arrows::after {
    right: 12px;
    font-size: 22px;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.social-proof {
    width: min(calc(100% - 48px), 1320px);
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1fr);
    gap: 58px;
    align-items: center;
}

.proof-question {
    margin: 22px 0 24px;
    padding: 18px 22px;
    border: 1px solid rgba(143, 111, 69, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(239, 229, 212, 0.72));
    box-shadow: 0 16px 36px rgba(53, 37, 24, 0.06);
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
}

.result-subhead {
    margin-top: 34px;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
}

.story-card {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 32px;
    appearance: none;
    background: #d8c8b2;
    box-shadow: var(--shadow);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.story-card:nth-child(2) {
    transform: translateY(42px);
}

.story-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.story-card::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(37, 27, 20, 0.86));
}

.story-card:hover img {
    transform: scale(1.035);
}

.story-card:focus-visible {
    outline: 3px solid rgba(143, 111, 69, 0.5);
    outline-offset: 4px;
}

.story-card-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
    z-index: 2;
    color: var(--white);
}

.story-card b,
.story-card-copy span {
    display: block;
}

.story-card b {
    margin-bottom: 4px;
    font-size: 16px;
}

.story-card-copy span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.play-button {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(43, 33, 25, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    transform: translateX(2px);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid var(--accent-deep);
}

.story-card:hover .play-button {
    transform: scale(1.06);
    background: var(--white);
}

.reviews-row {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 88px;
}

.review-score,
.reviews-row blockquote {
    margin: 0;
    padding: 28px;
    border-radius: 24px;
    background: var(--paper-strong);
    border: 1px solid rgba(96, 73, 55, 0.1);
    box-shadow: 0 18px 46px rgba(53, 37, 24, 0.07);
}

.review-score {
    display: grid;
    gap: 8px;
    align-content: center;
}

.review-score strong {
    color: var(--text);
}

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

.review-score i {
    color: #f5b301;
    font-style: normal;
}

.reviews-row p {
    margin-bottom: 22px;
    color: #4a3c2f;
    font-size: 16px;
    line-height: 1.7;
}

.reviews-row cite {
    color: var(--accent-deep);
    font-style: normal;
    font-weight: 800;
}

body.video-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 28px;
}

.video-modal[hidden] {
    display: none;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(33, 24, 18, 0.78);
    cursor: pointer;
}

.video-dialog {
    position: relative;
    z-index: 1;
    width: min(430px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 28px;
    background: #17110d;
    box-shadow: 0 32px 90px rgba(20, 14, 10, 0.44);
}

.video-dialog video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.video-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.doctor-section {
    width: min(calc(100% - 48px), 1180px);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) 440px;
    gap: 68px;
    align-items: center;
}

.doctor-copy h3 {
    margin: 28px 0 20px;
    font-size: 28px;
}

.credential-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.credential-list li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 82px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(96, 73, 55, 0.11);
}

.credential-list i {
    width: 54px;
    height: 54px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    line-height: 1;
    font-size: 22px;
}

.doctor-photo {
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(180deg, #f4eadc, #d8c3a7);
    box-shadow: var(--shadow);
}

.doctor-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.why-item {
    min-height: 260px;
    padding: 30px 28px;
    border: 1px solid rgba(143, 111, 69, 0.16);
    border-top: 2px solid rgba(143, 111, 69, 0.24);
    border-radius: 26px;
    background: rgba(255, 253, 249, 0.66);
    box-shadow: 0 16px 42px rgba(53, 37, 24, 0.05);
}

.why-item i {
    width: 48px;
    height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 22px;
    line-height: 1;
}

.credential-list i::before,
.why-item i::before,
.journey-step i::before {
    line-height: 1;
}

.why-item h3,
.journey-step h3,
.doctor-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
}

.why-item p,
.journey-step p,
.doctor-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.journey-section {
    position: relative;
}

.journey-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.journey-step {
    position: relative;
    min-height: 270px;
    padding: 34px 28px 30px;
    border: 1px solid rgba(96, 73, 55, 0.12);
    border-radius: 26px;
    background: rgba(255, 253, 249, 0.68);
    box-shadow: 0 16px 42px rgba(53, 37, 24, 0.05);
}

.step-number {
    display: block;
    margin-bottom: 42px;
    color: rgba(143, 111, 69, 0.42);
    font-size: 38px;
    font-weight: 800;
}

.journey-step i {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-deep);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(139, 107, 70, 0.18);
    line-height: 1;
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.doctor-card {
    display: grid;
    grid-template-rows: 330px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 28px;
    background: var(--paper-strong);
    border: 1px solid rgba(96, 73, 55, 0.1);
    box-shadow: 0 18px 46px rgba(53, 37, 24, 0.08);
}

.doctor-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    background: linear-gradient(180deg, #f3e8d8, #d9c2a3);
}

.doctor-card div {
    padding: 24px;
}

.doctor-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--accent-deep);
    font-size: 14px;
}

.stats-section {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 30px;
    background: var(--brown-dark);
    color: var(--white);
}

.stat-item {
    min-height: 190px;
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    margin-bottom: 12px;
    font-size: 50px;
    line-height: 1;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.5;
}

.stats-note {
    width: min(calc(100% - 48px), 1180px);
    margin: 18px auto 0;
    color: var(--accent-deep);
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}

.implant-trust {
    margin-top: -24px;
}

.trust-signal-strip {
    width: min(calc(100% - 48px), 1180px);
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.trust-signal-strip span,
.implant-result-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid rgba(143, 111, 69, 0.14);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.76);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.trust-signal-strip i {
    color: var(--accent-deep);
    font-size: 18px;
}

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

.doctor-cta {
    margin-top: 28px;
}

.implant-result-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: -16px 0 28px;
}

.implant-result-points span {
    border-radius: 18px;
    min-height: 82px;
}

.final-cta {
    margin-bottom: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 54px;
    border: 1px solid rgba(143, 111, 69, 0.16);
    border-radius: 32px;
    background: rgba(255, 253, 249, 0.74);
    box-shadow: 0 18px 50px rgba(53, 37, 24, 0.08);
}

.final-cta h2 {
    margin-bottom: 14px;
}

.final-cta p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.faq-list {
    width: min(100%, 920px);
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid rgba(96, 73, 55, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.72);
}

summary {
    min-height: 72px;
    padding: 0 24px;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

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

details p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
}

details[open] summary i {
    transform: rotate(45deg);
}

summary i {
    transition: transform 0.2s ease;
    color: var(--accent-deep);
}

.consultation-section {
    position: relative;
    width: min(calc(100% - 48px), 1320px);
    margin: 0 auto 88px;
    overflow: hidden;
    border-radius: 36px;
    background: var(--brown-dark);
    color: var(--white);
}

.consultation-bg {
    position: absolute;
    inset: 0;
}

.consultation-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.consultation-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(40, 29, 21, 0.96), rgba(40, 29, 21, 0.66));
}

.consultation-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.74fr);
    gap: 46px;
    padding: 64px;
}

.consultation-copy h2 {
    color: var(--white);
}

.consultation-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-stack {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-stack a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 42px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

.consultation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 24px;
    color: var(--text);
}

.consultation-form .full,
.consultation-form .button,
.consultation-form .form-confidential,
.consultation-form .form-response {
    grid-column: 1 / -1;
}

.map-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-card iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 18px;
}

.map-card strong,
.map-card span {
    display: block;
}

.map-card strong {
    margin-bottom: 8px;
    font-size: 20px;
}

.map-card span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.thank-you-page {
    min-height: 100vh;
}

.thank-you-main {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 128px 24px 54px;
}

.thank-you-shell {
    width: min(100%, 1160px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
    gap: 56px;
    align-items: center;
}

.thank-you-visual {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.78);
    box-shadow: var(--shadow);
}

.thank-you-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 0;
}

.thank-you-copy h1 {
    max-width: 720px;
    margin: 10px 0 22px;
    color: var(--text);
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 0.94;
    letter-spacing: 0;
}

.thank-you-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.thank-you-actions .button {
    gap: 10px;
}

.thank-you-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    color: var(--muted);
    font-weight: 800;
}

.thank-you-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thank-you-contact i {
    color: var(--accent-deep);
}

.thank-you-visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

.thank-you-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank-you-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(43, 33, 25, 0.78));
}

.thank-you-visual div {
    position: absolute;
    z-index: 1;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 22px;
    color: var(--white);
    background: rgba(43, 33, 25, 0.72);
    backdrop-filter: blur(12px);
}

.thank-you-visual strong,
.thank-you-visual span {
    display: block;
}

.thank-you-visual strong {
    margin-bottom: 6px;
    font-size: 18px;
}

.thank-you-visual span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
}

.smile-footer {
    background: #2b2119;
    color: var(--white);
    padding: 64px 24px 24px;
}

.footer-main {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 42px;
}

.footer-logo {
    width: 170px;
    height: auto;
    margin-bottom: 18px;
}

.footer-main p {
    margin: 0;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.footer-main h3 {
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-main a,
.footer-main span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.footer-bottom {
    width: min(100%, var(--container));
    margin: 46px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a,
.floating-whatsapp {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 25;
    width: 58px;
    height: 58px;
    background: #25d366;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
    font-size: 25px;
}

@media (max-width: 1180px) {
    .smile-header {
        inset: 14px 16px auto;
    }

    .smile-nav {
        display: none;
    }

    .hero-section {
        min-height: 0;
        padding-top: 120px;
    }

    .hero-grid,
    .proof-grid,
    .doctor-section,
    .consultation-content {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 540px;
    }

    .hero-copy {
        max-width: none;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 46px;
    }

    .reviews-row,
    .result-thumbs,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mini-compare {
        flex-basis: calc((100% - 18px) / 2);
    }

    .journey-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .stats-section,
    .why-grid,
    .doctor-grid,
    .trust-signal-strip,
    .implant-result-points,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .final-cta {
        grid-template-columns: 1fr;
    }

    .thank-you-shell {
        grid-template-columns: 1fr;
    }

    .thank-you-copy,
    .thank-you-visual {
        min-height: 0;
    }

    .thank-you-visual {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 760px) {
    .smile-header {
        height: 68px;
        padding: 0 12px 0 16px;
    }

    .smile-brand {
        min-width: 154px;
        gap: 8px;
    }

    .smile-brand img {
        width: 40px;
        height: 40px;
    }

    .brand-wordmark strong {
        font-size: 12px;
    }

    .brand-wordmark em {
        font-size: 11px;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero-section,
    .section-pad,
    .social-proof,
    .doctor-section,
    .stats-section,
    .stats-note,
    .trust-signal-strip,
    .consultation-section {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-media {
        min-height: 430px;
    }

    .hero-photo-main {
        width: 82%;
        height: 382px;
    }

    .hero-photo-secondary {
        width: 50%;
        height: 220px;
        bottom: 28px;
        border-width: 6px;
    }

    .hero-quote {
        right: 12px;
        bottom: 0;
        width: 252px;
        padding: 16px;
    }

    .script-label {
        font-size: 16px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-copy > p,
    .section-head p,
    .doctor-copy > p,
    .consultation-copy p {
        font-size: 16px;
    }

    .form-grid,
    .result-thumbs,
    .story-cards,
    .reviews-row,
    .why-grid,
    .journey-track,
    .doctor-grid,
    .stats-section,
    .trust-signal-strip,
    .implant-result-points,
    .consultation-form,
    .map-card,
    .footer-main,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .mini-compare {
        flex-basis: 100%;
    }

    .story-card:nth-child(2) {
        transform: none;
    }

    .story-card,
    .story-card img {
        min-height: 390px;
    }

    .video-modal {
        padding: 14px;
    }

    .video-dialog {
        border-radius: 20px;
    }

    .video-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .reviews-row {
        margin-top: 34px;
    }

    .doctor-photo {
        min-height: 460px;
    }

    .journey-track {
        border-top: 0;
        gap: 12px;
    }

    .journey-step,
    .journey-step:nth-child(3n) {
        min-height: 0;
        padding: 30px 22px 24px;
        border: 1px solid rgba(96, 73, 55, 0.12);
        border-radius: 22px;
        background: rgba(255, 253, 249, 0.66);
    }

    .journey-step i {
        top: 22px;
        left: auto;
        right: 22px;
    }

    .step-number {
        margin-bottom: 28px;
    }

    .stat-item {
        min-height: 148px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .consultation-content {
        padding: 32px 20px;
    }

    .implant-trust {
        margin-top: 0;
    }

    .trust-signal-strip span,
    .implant-result-points span {
        border-radius: 18px;
    }

    .final-cta {
        padding: 32px 22px;
        margin-bottom: 48px;
    }

    .thank-you-main {
        padding: 104px 14px 34px;
    }

    .thank-you-copy {
        padding: 32px 22px;
    }

    .thank-you-copy h1 {
        font-size: 42px;
    }

    .thank-you-copy p {
        font-size: 16px;
    }

    .thank-you-actions .button {
        width: 100%;
    }

    .thank-you-contact {
        display: grid;
        gap: 12px;
    }

    .thank-you-visual {
        aspect-ratio: 4 / 5;
    }

    .thank-you-visual div {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 18px;
    }

    .map-card iframe {
        height: 180px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
