﻿:root {
    --navy: #123248;
    --navy-dark: #0b2434;
    --ink: #243b4a;
    --muted: #667987;
    --teal: #00afd7;
    --teal-dark: #0089ad;
    --green: #66c77b;
    --green-dark: #3fa85b;
    --gold: #ffc247;
    --soft-blue: #f1fbfd;
    --soft-green: #f3fbf5;
    --line: #dceef2;
    --shadow: 0 24px 58px rgba(18, 50, 72, 0.12);
    --shadow-soft: 0 12px 30px rgba(18, 50, 72, 0.07);
    --radius: 26px;
    --blue: #00b4dc;
    --header-height: 96px;
}

@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/fonts/bootstrap-icons.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/fonts/bootstrap-icons.woff") format("woff");
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
}

    a:hover {
        color: var(--green-dark);
    }

img {
    max-width: 100%;
    height: auto;
}

.section-pad {
    padding: 76px 0;
}

.section-title {
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(0, 175, 215, 0.1);
    border: 1px solid rgba(0, 175, 215, 0.16);
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.max-w-760 {
    max-width: 760px;
}

.fw-600 {
    font-weight: 600;
}

.text-navy {
    color: var(--navy);
}

.icon-teal-dark {
    color: var(--teal-dark);
}

.icon-green-dark {
    color: var(--green-dark);
}

.modal-subtitle {
    opacity: 0.9;
}

.btn-fresh,
.btn-fresh-dark,
.btn-fresh-outline {
    min-height: 54px;
    border-radius: 999px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid transparent;
    font-weight: 600;
    line-height: 1.1;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.btn-fresh {
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 175, 215, 0.25);
}

    .btn-fresh:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 20px 42px rgba(0, 175, 215, 0.32);
    }

.btn-fresh-dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 30px rgba(18, 50, 72, 0.16);
}

    .btn-fresh-dark:hover {
        background: var(--navy-dark);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-fresh-outline {
    background: #fff;
    color: var(--navy);
    border-color: rgba(0, 175, 215, 0.28);
}

    .btn-fresh-outline:hover {
        color: var(--teal-dark);
        border-color: var(--teal);
        box-shadow: var(--shadow-soft);
        transform: translateY(-2px);
    }

/* Top Bar + Header */
.top-bar {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .top-bar .container {
        min-height: 40px;
    }

    .top-bar strong, .top-bar a strong {
        color: #fff;
    }

    .top-bar a {
        color: rgba(255,255,255,0.82);
    }

.main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255,255,255,0.99);
    border-bottom: 1px solid rgba(18, 50, 72, 0.08);
    box-shadow: 0 8px 24px rgba(18, 50, 72, 0.06);
}

.header-grid {
    min-height: 96px;
    display: grid;
    grid-template-columns: 250px 1fr auto;
    gap: 20px;
    align-items: center;
}

.brand-logo img {
    width: 225px;
    display: block;
}

.doctor-header {
    text-align: right;
    justify-self: end;
}

    .doctor-header .doctor-name {
        margin: 0;
        color: var(--navy);
        font-size: clamp(1.35rem, 2vw, 2rem);
        line-height: 1.05;
        font-weight: 600;
        letter-spacing: -0.025em;
        text-transform: uppercase;
    }

        .doctor-header .doctor-name span {
            color: var(--muted);
            font-size: 0.72em;
        }

    .doctor-header p {
        margin: 8px 0 0;
        color: var(--muted);
        line-height: 1.35;
        font-size: 0.9rem;
        font-weight: 500;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-divider {
    width: 3px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--teal), var(--green));
    margin-right: 6px;
}

.header-call-scroll {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--green-dark);
    border: 2px solid rgba(0, 175, 215, 0.28);
    flex: 0 0 52px;
    transition: all 0.18s ease;
}

    .header-call-scroll:hover {
        border-color: var(--teal);
        box-shadow: var(--shadow-soft);
        transform: translateY(-1px);
    }
.header-call-block{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--green-dark);
    border: 2px solid rgba(0, 175, 215, 0.28);
    flex: 0 0 52px;
    transition: all 0.18s ease;
}

    .header-call-block:hover {
        border-color: var(--teal);
        box-shadow: var(--shadow-soft);
        transform: translateY(-1px);
    }

.main-header.is-scrolled .header-call-scroll {
    display: inline-flex;
}

.header-cta {
    min-width: 190px;
}

/* Hero */
.hero-conversion {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 136px);
    display: flex;
    align-items: center;
    padding: 46px 0 48px;
    background: radial-gradient(circle at 12% 18%, rgba(102,199,123,0.20), transparent 28%), radial-gradient(circle at 86% 14%, rgba(0,175,215,0.18), transparent 32%), linear-gradient(135deg, #f7fdff 0%, #ffffff 44%, #f1fbf4 100%);
}

    .hero-conversion::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(0,175,215,0.09);
        right: -180px;
        bottom: -180px;
        pointer-events: none;
    }

.hero-copy {
    position: relative;
    z-index: 3;
}

    .hero-copy .hero-heading {
        color: var(--navy);
        font-size: clamp(2.25rem, 5vw, 4.55rem);
        line-height: 1;
        font-weight: 600;
        letter-spacing: -0.052em;
        margin-bottom: 20px;
    }

.hero-subtitle {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.72;
    max-width: 650px;
    margin-bottom: 18px;
}

.hero-review-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 24px;
    color: var(--navy);
    font-weight: 600;
}

.stars {
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero-note {
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
}

    .hero-note i {
        color: var(--green-dark);
    }

.hero-visual {
    position: relative;
    min-height: 520px;
    z-index: 2;
}

.model-photo-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    margin-top: -50px;
    min-height: 500px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(0,175,215,0.14);
    box-shadow: var(--shadow);
    background: radial-gradient(circle at 18% 14%, rgba(102,199,123,0.18), transparent 30%), radial-gradient(circle at 82% 12%, rgba(0,175,215,0.16), transparent 32%), linear-gradient(135deg, #f7fdff, #effbf4);
}

.hero-photo-slider,
.hero-photo-slider .carousel-inner,
.hero-photo-slider .carousel-item {
    min-height: 500px;
    height: 100%;
}

.hero-photo-slide {
    min-height: 500px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
/*    padding: 26px 26px 0;*/
    background: radial-gradient(circle at 18% 14%, rgba(102,199,123,0.18), transparent 30%), radial-gradient(circle at 82% 12%, rgba(0,175,215,0.16), transparent 32%), linear-gradient(135deg, #f7fdff, #effbf4);
}

.hero-couple-photo {
/*    width: min(100%, 850px);*/
/*    max-height: 500px;*/
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 24px 38px rgba(18,50,72,0.18));
}

.hero-photo-slider.carousel-fade .carousel-item {
    opacity: 0;
    transform: none;
    transition: opacity 1.15s ease-in-out;
}

    .hero-photo-slider.carousel-fade .carousel-item.active,
    .hero-photo-slider.carousel-fade .carousel-item-next.carousel-item-start,
    .hero-photo-slider.carousel-fade .carousel-item-prev.carousel-item-end {
        opacity: 1;
    }

.hero-photo-slider.carousel-fade .active.carousel-item-start,
.hero-photo-slider.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.hero-photo-indicators {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

    .hero-photo-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.72);
        opacity: 1;
        margin: 0;
        box-shadow: 0 4px 12px rgba(18,50,72,0.18);
    }

    .hero-photo-indicators .active {
        width: 28px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--teal), var(--green));
    }
/* Forms */
.form-card {
    background: #fff;
    border: 1px solid rgba(0,175,215,0.16);
    border-radius: 28px;
    box-shadow: 0 28px 76px rgba(18, 50, 72, 0.13);
    overflow: hidden;
}

.form-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #fff;
    padding: 20px 24px;
}

    .form-head h3 {
        margin: 0;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .form-head p {
        margin: 4px 0 0;
        opacity: 0.88;
    }

.form-body {
    padding: 22px;
}

.form-label {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.84rem;
    margin-bottom: 7px;
}

.form-text {
    font-size: 0.68rem;
    color: rgba(102, 121, 135, 0.82);
    line-height: 1.35;
}

.form-control, .form-select {
    min-height: 50px;
    border-radius: 14px;
    border: 1.5px solid #d7e9ee;
    font-weight: 600;
    color: var(--ink);
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 0.18rem rgba(0,175,215,0.12) !important;
    }

textarea.form-control {
    min-height: 92px;
    padding-top: 14px;
}

.secure-note {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.eligibility-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8e8;
    border: 1.5px solid rgba(255,194,71,0.7);
    border-left: 5px solid var(--gold);
    border-radius: 15px;
    padding: 12px 14px;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 18px;
}

    .eligibility-note i {
        color: #c98400;
        font-size: 1.05rem;
        margin-top: 1px;
    }

.form-proof-clean {
    border-top: 1px solid var(--line);
    background: radial-gradient(circle at 12% 0%, rgba(102,199,123,0.11), transparent 30%), linear-gradient(180deg, #fff, #fbfeff);
    padding: 16px 18px 18px;
}

.form-proof-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 194, 71, 0.12);
    border: 1px solid rgba(255, 194, 71, 0.28);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 10px;
}

.form-proof-stars {
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 0.86rem;
}

.form-proof-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.form-proof-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0,175,215,0.13);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 6px 14px rgba(18,50,72,0.04);
}

    .form-proof-tag i {
        color: var(--green-dark);
        font-size: 0.78rem;
    }

/* Shared Cards */
.benefit-card,
.option-card,
.process-card,
.review-card {
    background: #fff;
    border: 1px solid rgba(0,175,215,0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: all 0.18s ease;
}

    .benefit-card:hover,
    .option-card:hover,
    .process-card:hover,
    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: rgba(0,175,215,0.28);
    }

#concerns {
    background: #dff6fe;
}

.concerns-form-column {
    position: relative;
    min-height: 760px;
}

.concerns-form-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    margin-top: -190px;
}

.concerns-section-title {
    text-align: left;
    margin-bottom: 30px;
}

.concern-carousel {
    background: #fff;
    border: 1px solid rgba(0,175,215,0.14);
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.concern-slide {
    min-height: 330px;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
}

.concern-slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 22% 20%, rgba(102,199,123,0.24), transparent 30%), radial-gradient(circle at 78% 18%, rgba(0,175,215,0.20), transparent 34%), linear-gradient(135deg, #f7fdff, #effbf4);
    border-right: 1px solid var(--line);
    overflow: hidden;
}

    .concern-slide-visual.has-photo {
        background: #eef8fb;
    }

        .concern-slide-visual.has-photo::after {
            display: none;
        }

.concern-slide-photo {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.concern-slide-visual::after {
    content: "";
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(255,255,255,0.74);
    box-shadow: 0 18px 40px rgba(18,50,72,0.09);
}

.concern-slide-visual i {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    font-size: 2.15rem;
    box-shadow: 0 16px 34px rgba(0,175,215,0.24);
}

.concern-slide-content {
    padding: clamp(28px, 5vw, 46px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concern-kicker {
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.concern-slide-content h3 {
    color: var(--navy);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
}

.concern-slide-content p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
    max-width: 520px;
}

.concern-carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #fbfeff);
}

.concern-indicators {
    position: static;
    margin: 0;
    justify-content: flex-start;
    gap: 8px;
}

    .concern-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 0;
        background: rgba(0,175,215,0.26);
        opacity: 1;
        margin: 0;
    }

    .concern-indicators .active {
        width: 28px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--teal), var(--green));
    }

.concern-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.concern-control-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0,175,215,0.20);
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
}

    .concern-control-btn:hover {
        color: #fff;
        background: linear-gradient(135deg, var(--teal), var(--green));
        border-color: transparent;
        transform: translateY(-1px);
    }

.benefit-card h3,
.option-card h3,
.process-card h3 {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.benefit-card p,
.option-card p,
.process-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
    margin: 0;
}

.benefits-section {
    background: radial-gradient(circle at 12% 20%, rgba(102,199,123,0.14), transparent 26%), radial-gradient(circle at 88% 12%, rgba(0,175,215,0.13), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
}

.benefit-card {
    padding: 24px;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,175,215,0.14), rgba(102,199,123,0.16));
    color: var(--teal-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.benefits-cta {
    background: linear-gradient(135deg, var(--navy), #0f5269);
    color: #fff;
    border-radius: 26px;
    padding: clamp(24px, 4vw, 34px);
    margin-top: 34px;
}

    .benefits-cta h3 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .benefits-cta p {
        color: rgba(255,255,255,0.78);
        line-height: 1.65;
        margin: 0;
    }

.options-section {
    background: radial-gradient(circle at 12% 18%, rgba(0,175,215,0.10), transparent 28%), radial-gradient(circle at 88% 14%, rgba(102,199,123,0.10), transparent 30%), linear-gradient(180deg, #ffffff 0%, var(--soft-blue) 100%);
}

.options-showcase {
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(0,175,215,0.14);
    box-shadow: var(--shadow);
}

.options-showcase-intro {
    height: 100%;
    padding: clamp(30px, 5vw, 48px);
    background: radial-gradient(circle at 16% 16%, rgba(102,199,123,0.24), transparent 30%), radial-gradient(circle at 88% 12%, rgba(0,175,215,0.22), transparent 34%), linear-gradient(135deg, var(--navy), #164b61 68%, var(--navy-dark));
    color: #fff;
}

    .options-showcase-intro .eyebrow {
        color: #82e2c3;
        background: rgba(255,255,255,0.09);
        border-color: rgba(255,255,255,0.14);
    }

    .options-showcase-intro h2 {
        color: #fff;
    }

    .options-showcase-intro p {
        color: rgba(255,255,255,0.72);
        line-height: 1.7;
        font-weight: 500;
        margin-bottom: 24px;
    }

.options-mini-proof {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.options-mini-proof-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.5;
}

    .options-mini-proof-item i {
        color: var(--green);
        margin-top: 2px;
        flex: 0 0 auto;
    }

.option-path-grid {
    padding: clamp(24px, 4vw, 38px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.option-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    min-height: 228px;
    border-radius: 24px;
}

    .option-card::after {
        content: "";
        position: absolute;
        right: -34px;
        top: -40px;
        width: 104px;
        height: 104px;
        border-radius: 50%;
        background: rgba(0,175,215,0.07);
        pointer-events: none;
    }

.option-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.option-number {
    color: rgba(18,50,72,0.34);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.option-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.option-card p {
    font-size: 0.9rem;
}

.option-card-badge {
    display: inline-flex;
    margin-top: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 600;
}

.option-showcase-cta {
    margin: 0 clamp(24px, 4vw, 38px) clamp(24px, 4vw, 38px);
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7fdff, #f3fbf5);
    border: 1px solid rgba(0,175,215,0.14);
    text-align: center;
}

    .option-showcase-cta p {
        margin-bottom: 18px;
    }

.inline-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.option-cta-copy {
    text-align: center;
    font-size: 1.08rem;
}

    .option-cta-copy strong {
        display: block;
        font-size: 1.22rem;
        margin-bottom: 6px;
        letter-spacing: -0.015em;
    }

/* Compare */
.compare-table-wrap {
    background: #fff;
    border-radius: 18px;
/*    overflow: hidden;*/
    box-shadow: 0 18px 44px rgba(18,50,72,0.08);
}

.compare-table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 820px;
}

    .compare-table th {
        background: var(--navy);
        color: #fff;
        padding: 20px 24px;
        font-weight: 600;
        border: 0;
        font-size: 1rem;
    }

        .compare-table th:first-child {
            text-align: left;
            border-top-left-radius: 18px;
            width: 38%;
        }

        .compare-table th:nth-child(2) {
            text-align: center;
            width: 29%;
            background: #1d988c;
        }

        .compare-table th:nth-child(3) {
            text-align: center;
            width: 33%;
            background: #657f9d;
            border-top-right-radius: 18px;
        }

    .compare-table td {
        padding: 18px 24px;
        border: 0;
        border-bottom: 1px solid #dceaf0;
        color: #50677c;
        font-weight: 600;
        font-size: 0.96rem;
        line-height: 1.45;
    }

    .compare-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .compare-table td:first-child {
        font-weight: 600;
        text-align: left;
    }

    .compare-table td:nth-child(2) {
        background: #e7f6f4;
        text-align: center;
    }

    .compare-table td:nth-child(3) {
        background: #f4f7f9;
        text-align: center;
    }

    .compare-table .yes {
        color: #118b81;
        font-weight: 600;
    }

    .compare-table .no {
        color: #d94c36;
        font-weight: 600;
    }

.compare-cta-copy {
    text-align: center;
    font-size: 1.08rem;
}

    .compare-cta-copy strong {
        display: block;
        font-size: 1.22rem;
        margin-bottom: 6px;
        letter-spacing: -0.015em;
    }

/* Process */
.process-section {
    background: radial-gradient(circle at 14% 18%, rgba(102,199,123,0.10), transparent 28%), radial-gradient(circle at 86% 18%, rgba(0,175,215,0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f7fdf9 100%);
}

.process-intro {
    position: sticky;
    top: 140px;
}

.process-card {
    padding: 30px;
    min-height: 250px;
}

.process-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,175,215,0.14), rgba(102,199,123,0.16));
    color: var(--teal-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.finance-section {
    background: #fff;
}

.finance-feature-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(28px, 4vw, 42px);
    background: radial-gradient(circle at 12% 20%, rgba(0,175,215,0.16), transparent 30%), radial-gradient(circle at 92% 16%, rgba(102,199,123,0.16), transparent 32%), linear-gradient(135deg, #eefbff 0%, #ffffff 48%, #effbf4 100%);
    border: 1px solid rgba(0,175,215,0.13);
    box-shadow: 0 20px 48px rgba(18,50,72,0.08);
}

    .finance-feature-panel::after {
        content: "";
        position: absolute;
        right: -80px;
        bottom: -90px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(0,175,215,0.08);
        pointer-events: none;
    }

.finance-feature-title {
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 18px;
}

.finance-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

    .finance-check-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--navy);
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.45;
    }

    .finance-check-list i {
        color: var(--green-dark);
        font-size: 1.05rem;
        margin-top: 2px;
        flex: 0 0 auto;
    }

.finance-helper-card {
    position: relative;
    z-index: 2;
    min-height: 260px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--navy), #164b61);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 50px rgba(18,50,72,0.16);
    padding: 28px 24px;
    color: #fff;
    overflow: hidden;
}

    .finance-helper-card::after {
        content: "";
        position: absolute;
        right: -52px;
        bottom: -58px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(255,255,255,0.07);
        pointer-events: none;
    }

.finance-helper-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    color: var(--green);
    font-size: 1.55rem;
    margin-bottom: 16px;
}

.finance-helper-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.finance-helper-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 16px;
}

.finance-helper-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

    .finance-helper-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        font-size: 0.82rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .finance-helper-list i {
        color: var(--green);
        font-size: 0.95rem;
        flex: 0 0 auto;
    }

.carecredit-box {
    position: relative;
    z-index: 2;
    height: 100%;
    border-left: 1px solid rgba(18,50,72,0.10);
    padding-left: clamp(24px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carecredit-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-dark);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    margin-bottom: 2px;
}

    .carecredit-logo-text i {
        color: var(--green);
        font-size: 0.9em;
    }

.carecredit-tagline {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.carecredit-note {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.5;
    max-width: 250px;
    margin: 14px auto 0;
}

@media (max-width: 991.98px) {
    .carecredit-box {
        border-left: 0;
        border-top: 1px solid rgba(18,50,72,0.10);
        padding-left: 0;
        padding-top: 26px;
    }

    body {
        padding-bottom: 70px;
    }

    .hero-couple-photo {
        max-height: 320px;
    }
}
/* Doctor */
.doctor-section {
    background: radial-gradient(circle at 12% 16%, rgba(0,175,215,0.10), transparent 28%), radial-gradient(circle at 88% 18%, rgba(102,199,123,0.11), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f6fcfe 100%);
}

.doctor-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,175,215,0.14);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

    .doctor-card::after {
        content: "";
        position: absolute;
        right: -92px;
        top: -92px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(0,175,215,0.08);
        pointer-events: none;
    }

.doctor-photo-wrap {
    position: relative;
    height: 100%;
    min-height: 460px;
    background: linear-gradient(135deg, var(--soft-blue), var(--soft-green));
    overflow: hidden;
}

.doctor-photo {
    width: 100%;
    min-height: 460px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.doctor-photo-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
}

.doctor-highlight-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(0,175,215,0.16);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(18,50,72,0.14);
    backdrop-filter: blur(10px);
}

    .doctor-highlight-card strong {
        display: block;
        color: var(--navy);
        font-size: 0.86rem;
        font-weight: 600;
        line-height: 1.55;
        font-style: italic;
        margin-bottom: 6px;
    }

    .doctor-highlight-card span {
        display: block;
        color: var(--teal-dark);
        font-size: 0.74rem;
        font-weight: 600;
        line-height: 1.4;
    }

.doctor-name-main {
    font-weight: 600;
}

.doctor-name-degree {
    color: var(--muted);
    font-size: 0.72em;
    font-weight: 500;
}

.doctor-content {
    position: relative;
    z-index: 2;
    padding: clamp(28px, 4vw, 42px);
}

.cred-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

    .cred-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 11px 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-weight: 600;
        line-height: 1.55;
    }

        .cred-list li:last-child {
            border-bottom: 0;
        }

    .cred-list i {
        color: var(--green-dark);
        margin-top: 3px;
    }

.association-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
}

    .association-badges span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--soft-blue);
        border: 1px solid rgba(0,175,215,0.16);
        color: var(--navy);
        font-size: 0.76rem;
        font-weight: 600;
    }

    .association-badges i {
        color: var(--green-dark);
    }

@media (max-width: 991.98px) {
    .doctor-photo-wrap {
        min-height: 360px;
    }

/*    .doctor-photo {
        min-height: 360px;
    }*/
}

/* Stories / reviews */
.stories-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 16%, rgba(102,199,123,0.18), transparent 30%), radial-gradient(circle at 86% 12%, rgba(0,175,215,0.18), transparent 34%), linear-gradient(135deg, var(--navy), #123c54 58%, var(--navy-dark));
    color: #fff;
}

    .stories-section::before {
        content: "";
        position: absolute;
        left: -140px;
        bottom: -180px;
        width: 430px;
        height: 430px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        pointer-events: none;
    }

    .stories-section .container {
        position: relative;
        z-index: 2;
    }

    .stories-section .eyebrow {
        background: rgba(255,255,255,0.09);
        border-color: rgba(255,255,255,0.14);
        color: #82e2c3;
    }

    .stories-section .section-title {
        color: #fff;
    }

    .stories-section .section-sub {
        color: rgba(255,255,255,0.72);
    }

    .stories-section .video-card {
        background: rgba(255,255,255,0.94);
        border-color: rgba(255,255,255,0.16);
        box-shadow: 0 20px 46px rgba(0,0,0,0.16);
    }

.reviews-section {
    background: radial-gradient(circle at 12% 14%, rgba(0,175,215,0.09), transparent 28%), radial-gradient(circle at 88% 16%, rgba(102,199,123,0.10), transparent 30%), linear-gradient(180deg, #ffffff 0%, var(--soft-blue) 100%);
}

    .reviews-section .review-card {
        background: #fff;
    }

.video-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
/*    border: 1px solid rgba(0,175,215,0.14);*/
    height: 100%;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    background: var(--navy);
}

    .video-frame iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.video-caption {
    padding: 13px 14px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

    .video-caption i {
        color: var(--teal-dark);
    }

.review-card {
    padding: 22px;
}

    .review-card p {
        color: var(--ink);
        line-height: 1.65;
        font-style: italic;
        font-weight: 500;
        margin: 10px 0 14px;
    }

.review-name {
    color: var(--navy);
    font-weight: 600;
}

/* FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 18%, rgba(102,199,123,0.12), transparent 28%), radial-gradient(circle at 86% 14%, rgba(0,175,215,0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, var(--soft-green) 100%);
    border-top: 1px solid rgba(18,50,72,0.06);
}

    .faq-section::before {
        content: "";
        position: absolute;
        left: -120px;
        top: -130px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(102,199,123,0.08);
        pointer-events: none;
    }

    .faq-section .container {
        position: relative;
        z-index: 2;
    }

.accordion-item {
    border: 1px solid rgba(0,175,215,0.14) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(18,50,72,0.05);
}

.accordion-button {
    color: var(--navy);
    font-weight: 600;
    padding: 20px 22px;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: var(--soft-blue);
        color: var(--teal-dark);
    }

.accordion-body {
    color: var(--muted);
    line-height: 1.72;
    font-weight: 500;
}

/* Final Contact */
.final-contact-section {
    background: radial-gradient(circle at 16% 16%, rgba(102,199,123,0.16), transparent 26%), radial-gradient(circle at 82% 18%, rgba(0,175,215,0.16), transparent 28%), linear-gradient(135deg, var(--navy), #164b61 68%, #1e6375);
    color: #fff;
    padding: clamp(58px, 7vw, 92px) 0 0;
}

.final-contact-eyebrow {
    color: #82e2c3;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}

.final-contact-title {
    color: #fff;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.final-contact-copy {
    color: rgba(255,255,255,0.74);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
}

.contact-detail {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.92);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
}

.contact-detail-label {
    display: block;
    color: rgba(255,255,255,0.52);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail a, .contact-detail strong {
    color: #fff;
    font-weight: 600;
    font-size: 1.03rem;
    line-height: 1.55;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 330px;
}

    .hours-list li {
        display: grid;
        grid-template-columns: 88px 1fr;
        gap: 12px;
        color: rgba(255,255,255,0.70);
        line-height: 1.85;
        font-size: 0.93rem;
    }

    .hours-list strong {
        color: #fff;
        font-size: 0.93rem;
    }

    .hours-list .closed {
        color: rgba(255,255,255,0.38);
    }

        .hours-list .closed strong {
            color: rgba(255,255,255,0.52);
            font-weight: 500;
        }

.final-form-panel {
    background: #fff;
    border-radius: 22px;
    padding: clamp(24px, 4vw, 34px);
    box-shadow: 0 28px 80px rgba(5,20,31,0.28);
    color: var(--ink);
}

    .final-form-panel h2 {
        color: var(--navy);
        font-weight: 600;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
    }

    .final-form-panel .form-intro {
        color: var(--muted);
        margin-bottom: 18px;
        line-height: 1.55;
    }

.footer-smile-tagline {
    margin-top: 42px;
    padding: 34px 20px 76px;
    text-align: center;
}

    .footer-smile-tagline strong {
        display: block;
        color: rgba(255,255,255,0.18);
        font-size: clamp(1.75rem, 4.4vw, 3.7rem);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

footer {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgba(255,255,255,0.58);
    padding: 22px 0;
    font-size: 0.82rem;
    line-height: 1.55;
}
    footer a {
        color: rgba(255, 255, 255, 0.58);
    }

/* Modal / Floating buttons */
.consultation-modal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(5,20,31,0.28);
}

.consultation-modal .modal-header {
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    border: 0;
    padding: 22px 24px;
}

.consultation-modal .modal-title {
    font-weight: 600;
    letter-spacing: -0.015em;
}

.consultation-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.consultation-modal .modal-body {
    padding: 24px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1045;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(0,175,215,0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.2s ease;
}

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 20px 42px rgba(0,175,215,0.34);
    }

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,175,215,0.17);
    box-shadow: 0 -16px 40px rgba(18,50,72,0.12);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}

    .mobile-sticky-cta .mobile-cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }

    .mobile-sticky-cta .btn {
        min-height: 52px;
        width: 100%;
        border-radius: 14px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 10px;
        line-height: 1.1;
        white-space: nowrap;
        gap: 8px;
    }

        .mobile-sticky-cta .btn i {
            font-size: 1rem;
            line-height: 1;
        }

    .mobile-sticky-cta .btn-call {
        background: var(--navy);
        color: #fff;
    }

    .mobile-sticky-cta .btn-book {
        background: linear-gradient(135deg, var(--teal), var(--green));
        color: #fff;
    }

@media (max-width: 1199.98px) {
    .hero-visual {
        min-height: 560px;
    }

/*    .model-photo-placeholder {
        width: 86%;
    }*/
    .main-header{
        padding:10px 0px;
    }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 60px 0;
    }

    .header-grid {
        grid-template-columns: 190px auto;
        min-height: 78px;
        gap: 12px;
    }

    .brand-logo img {
        width: 178px;
        max-width: 42vw;
    }

    .doctor-header {
        display: none;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .header-divider {
        display: none;
    }

    .header-call-scroll {
        display: none !important;
    }

    .header-cta {
        min-width: auto;
        min-height: 44px;
        padding: 10px 15px;
        font-size: 0.84rem;
    }

    .hero-conversion {
        min-height: auto;
        display: block;
        padding: 34px 0 44px;
    }

    .hero-visual-col {
        order: -1;
    }

    .hero-visual {
        min-height: auto;
        margin: 0 0 30px;
    }

    .model-photo-placeholder {
        position: relative;
        width: 100%;
        min-height: 390px;
        margin-top: 0;
        border-radius: 28px;
    }

    .hero-photo-slider,
    .hero-photo-slider .carousel-inner,
    .hero-photo-slider .carousel-item,
    .hero-photo-slide {
        min-height: 390px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-review-row {
        justify-content: center;
    }

    .hero-note {
        text-align: center;
    }

    .concerns-form-column {
        min-height: auto;
    }

    .concerns-form-wrap {
        position: static;
        margin-top: 32px;
    }

    .concerns-section-title {
        text-align: center;
    }

        .concerns-section-title .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

    .concern-slide {
        grid-template-columns: 250px 1fr;
        min-height: 290px;
    }

    .benefit-card,
    .option-card,
    .process-card,
    .review-card {
        border-radius: 22px;
    }

    .benefit-card,
    .process-card {
        padding: 22px;
        min-height: auto;
    }

    .process-intro {
        position: static;
        text-align: center;
    }

        .process-intro .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

    .process-card {
        min-height: auto;
    }

    .finance-feature-panel {
        padding: 28px;
    }

    .carecredit-box {
        min-height: 230px;
    }

/*    .doctor-photo-wrap {
        min-height: 380px;
    }*/

/*    .doctor-photo {
        min-height: 380px;
    }*/

    .doctor-content {
        padding: 30px 26px;
    }
/*
    .final-contact-section {
        padding-bottom: 104px;
    }*/

    #accessibility-button {
        right: 14px;
        bottom: 30px !important;
        width: 42px;
        height: 42px;
    }
    .back-to-top {
        right: 14px;
        bottom: 90px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767.98px) {
   

    .top-bar {
        display: none;
    }

    .main-header {
        box-shadow: 0 6px 18px rgba(18, 50, 72, 0.06);
    }

    .header-grid {
        min-height: 68px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .brand-logo img {
        width: 156px;
        max-width: 52vw;
    }

    .header-cta {
        min-height: 40px;
        padding: 9px 11px;
        font-size: 0.76rem;
        min-width: auto;
    }

    .hero-conversion {
        padding: 22px 0 38px;
    }

    .hero-visual {
        margin: 0 0 24px;
    }

    .model-photo-placeholder {
        min-height: 280px;
        border-radius: 24px;
    }

    .hero-photo-slider,
    .hero-photo-slider .carousel-inner,
    .hero-photo-slider .carousel-item,
    .hero-photo-slide {
        min-height: 280px;
    }

    .hero-photo-slide {
        padding: 16px 16px 0;
    }

    .hero-couple-photo {
        max-height: 268px;
    }

    .hero-photo-indicators {
        bottom: 12px;
    }

    .hero-copy .hero-heading {
        letter-spacing: -0.038em;
        font-size: clamp(2rem, 10vw, 2.75rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.96rem;
        line-height: 1.62;
        margin-bottom: 14px;
    }

    .hero-review-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 14px 0 20px;
        font-size: 0.88rem;
        text-align: left;
    }

    .hero-note {
        font-size: 0.76rem;
        line-height: 1.5;
        margin-top: 16px;
    }

    .eyebrow {
        padding: 7px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.075em;
    }

    .section-pad {
        padding: 50px 0;
    }

    .section-title {
        letter-spacing: -0.03em;
        line-height: 1.12;
    }

    .section-sub {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .btn-fresh, .btn-fresh-outline, .btn-fresh-dark {
        min-height: 48px;
        padding: 12px 17px;
        font-size: 0.88rem;
    }

    .hero-copy .btn-fresh, .hero-copy .btn-fresh-outline {
        width: 100%;
    }

    .form-card {
        border-radius: 22px;
    }

    .form-head {
        padding: 16px 18px;
    }

        .form-head h3 {
            font-size: 1.08rem;
        }

        .form-head p {
            font-size: 0.84rem;
        }

    .form-body {
        padding: 16px;
    }

    .contact-form .row.g-3 {
        --bs-gutter-y: 0.85rem;
    }

    .form-control, .form-select {
        min-height: 46px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    textarea.form-control {
        min-height: 72px;
    }

    .eligibility-note {
        font-size: 0.76rem;
        padding: 10px 11px;
        border-radius: 13px;
        margin-bottom: 14px;
    }

    .form-proof-clean {
        padding: 14px 14px 16px;
    }

    .form-proof-review {
        align-items: center;
        flex-direction: row;
        gap: 8px;
        font-size: 0.72rem;
    }

    .form-proof-tags {
        gap: 6px;
    }

    .form-proof-tag {
        font-size: 0.64rem;
        padding: 6px 8px;
    }

    .concerns-section-title {
        margin-bottom: 22px;
    }

    .concern-carousel {
        border-radius: 24px;
    }



    .concern-slide-visual {
        min-height: 142px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .concern-slide-photo {
        min-height: 142px;
    }

    .concern-slide-visual i {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        font-size: 1.75rem;
    }

    .concern-carousel-footer {
        padding: 14px;
    }

    .concern-control-btn {
        width: 38px;
        height: 38px;
    }

    .concern-slide-content {
        padding: 20px;
    }

    .concern-kicker {
        font-size: 0.68rem;
        margin-bottom: 9px;
    }

    .concern-slide-content h3 {
        font-size: 1.35rem;
        line-height: 1.16;
    }

    .concern-slide-content p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefits-cta {
        padding: 22px;
        border-radius: 22px;
        text-align: center;
    }

    .inline-cta-actions .btn {
        width: 100%;
    }

    .option-path-grid {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 14px;
    }

    .option-card {
        min-height: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .option-showcase-cta {
        margin: 0 18px 18px;
        padding: 20px;
        border-radius: 20px;
    }

    .options-showcase {
        border-radius: 26px;
    }

    .options-showcase-intro {
        padding: 26px 20px;
    }

    .compare-table-wrap {
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
    }

    .compare-table {
        min-width: 760px;
    }

        .compare-table th, .compare-table td {
            padding: 13px 12px;
            font-size: 0.8rem;
        }

    .process-card {
        padding: 22px;
    }

    .process-number {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        margin-bottom: 16px;
    }

    .finance-feature-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .finance-feature-title {
        font-size: 1.85rem;
    }

    .finance-helper-card {
        min-height: auto;
        padding: 22px;
        border-radius: 20px;
    }

    .carecredit-box {
        padding-top: 22px;
        min-height: auto;
    }

    .doctor-card {
        border-radius: 26px;
    }

    .doctor-photo-wrap {
        min-height: 330px;
    }

/*    .doctor-photo {
        min-height: 330px;
    }*/

    .doctor-photo-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .doctor-highlight-card {
        padding: 13px;
        border-radius: 17px;
    }

    .doctor-content {
        padding: 24px 20px;
    }

    .cred-list li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .association-badges span {
        font-size: 0.68rem;
        padding: 7px 10px;
    }

    .video-caption {
        font-size: 0.72rem;
        padding: 10px;
    }

    .review-card {
        padding: 18px;
    }

    .accordion-button {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .final-contact-section {
        padding: 52px 0 0px;
    }

    .contact-detail {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
    }

    .hours-list li {
        grid-template-columns: 82px 1fr;
        font-size: 0.84rem;
    }

    .final-form-panel {
        padding: 20px;
        border-radius: 20px;
    }

    .footer-smile-tagline {
        margin-top: 28px;
        padding: 22px 10px 50px;
    }

        .footer-smile-tagline strong {
            font-size: clamp(1.35rem, 8vw, 2.4rem);
                letter-spacing: 0.06em;
        }

/*    footer {
        padding: 18px 0 88px;
    }*/

    .concern-slide {
        grid-template-columns: 220px 1fr;
       
    }


    .text-sm-wrap {
        white-space: normal !important;
    }
}
@media(max-width:450px) {
    .concern-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

} @media (max-width: 380px) {
    .brand-logo img {
        width: 136px;
    }

    .header-cta {
        /*        font-size: 0.7rem;*/
        padding: 8px 9px;
    }

    .hero-copy .hero-heading {
        font-size: 2rem;
    }

    .mobile-sticky-cta .btn {
        font-size: 0.82rem;
        gap: 6px;
    }

        .mobile-sticky-cta .btn i {
            font-size: 0.9rem;
        }

    .contact-form .g-recaptcha > div {
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .doctor-highlight-card strong {
        font-size: 0.75rem;
    }
}

.intl-tel-input{
    display:block !important;
}

strong{
    font-weight:700 !important;
}

section {
    scroll-margin-top: var(--header-height);
}