/* ==========================================================================
   Press and Berman — base
   ========================================================================== */

:root {
    --color-primary: #0a50a1;
    --color-heading: #201d2a;
    --color-body: #5a595e;
    --color-bg-tint: #f1f5f9;
    --color-white: #ffffff;
    --font-serif: 'Gelasio', Georgia, serif;
    --font-sans: 'Poppins', Arial, sans-serif;
    --container-max: 1480px;
    --container-padding: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-body);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 48px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

section {
    position: relative;
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.88;
}

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

.btn--outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--outline-white {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn--lg {
    padding: 16px 28px;
    font-size: 17px;
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 48px;
    background: var(--color-white);
    position: relative;
    z-index: 50;
}

.site-header__logo img {
    width: 100px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.site-nav__links a {
    font-size: 17px;
    color: var(--color-heading);
}

.site-nav__links a.is-accent {
    color: var(--color-primary);
}

.site-nav .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.site-header__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--color-heading);
}

/* ==========================================================================
   Mobile nav (off-canvas)
   ========================================================================== */

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 150;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #ececec;
    flex-shrink: 0;
}

.mobile-nav__logo {
    width: 90px;
    height: auto;
}

.mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    color: #333;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav__list {
    flex: 1;
    overflow-y: auto;
}

.mobile-nav__list li {
    border-bottom: 1px solid #ececec;
}

.mobile-nav__list a {
    display: block;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-heading);
}

.mobile-nav__footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-top: 1px solid #ececec;
}

.mobile-nav__book {
    width: 100%;
}

.mobile-nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
}

body.nav-open {
    overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 640px;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 21, 29, 0.55);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    max-width: 900px;
}

.hero__heading h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 55px rgba(0, 0, 0, 0.2);
}

.hero__subheading {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.02em;
    margin-top: 16px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* ==========================================================================
   Insurance strip
   ========================================================================== */

.insurance {
    background: var(--color-bg-tint);
    padding: 60px 24px;
}

.insurance__row {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.insurance__heading {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.02em;
    max-width: 600px;
    flex: 1 1 320px;
}

.insurance__logos {
    position: relative;
    width: 220px;
    height: 130px;
    flex-shrink: 0;
}

.insurance__logo {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.insurance__logo--back {
    left: 0;
    top: 0;
}

.insurance__logo--front {
    left: 100px;
    top: 45px;
}

@media only screen and (max-width: 768px) {
    .insurance__heading {
        flex: unset;
    }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
    padding: 100px 24px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 922px;
}

.services__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 764px;
    box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.05), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

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

.services__intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services__eyebrow {
    font-family: var(--font-serif);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-heading);
}

.services__body {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.services__photo {
    /* flex: 1 1 320px; */
    max-width: 623px;
    width: 100%;
    height: 554px;
    box-shadow: 0 30px 24px rgba(0, 0, 0, 0.05);
}

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

.services__details {
    /* flex: 1 1 500px; */
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    max-width: fit-content;
}

.services__lead {
    color: var(--color-body);
    font-size: 16px;
    margin-bottom: 24px;
}

.services__columns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.services__list {
    flex: 1 1 200px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.services__list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    color: var(--color-body);
}

.services__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

@media screen and (max-width: 991px) {
    .services__bg {
        height: 100%;
    }

    .services__body {
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Why choose banner (shared pattern)
   ========================================================================== */

.why-choose {
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.why-choose--tinted {
    background: #F1F5F9;
}

.why-choose__heading {
    max-width: 1192px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose__heading h2 {
    font-size: 40px;
    max-width: 932px;
    width: 100%;
    margin: auto;
}

.why-choose__heading p {
    font-size: 18px;
    color: var(--color-body);
}

/* ==========================================================================
   Dentist slider
   ========================================================================== */

.dentist-slider {
    padding: 65px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-left: 6.3%;
    overflow: hidden;
}

.dentist-slider__slide {
    position: relative;
    width: 100%;
    /* max-width: var(--container-max); */
    background: #17151d;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    padding-bottom: 100px;
    justify-content: left;
    padding-left: 94px;
    padding-right: 80px;
}

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

.dentist-slider__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 60px;
    padding: 0;
}

.dentist-slider__photo {
    max-width: 674px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    margin-top: -69px;
}

.dentist-slider__content {
    max-width: 758px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.dentist-slider__content h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
}

.dentist-slider__content p {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
}

.dentist-slider__content a {
    width: 100%;
    max-width: fit-content;
}

.dentist-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2;
}

.dentist-slider__arrow--prev {
    left: 16px;
}

.dentist-slider__arrow--next {
    right: 16px;
}

.dentist-slider__arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.dentist_slider_container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slick calculates slide widths assuming content-box; the site's global
   `* { box-sizing: border-box; }` reset otherwise inflates .slick-track /
   .slick-slide to a huge miscalculated width. */
.dentist_slider_container.slick-slider,
.dentist_slider_container .slick-list,
.dentist_slider_container .slick-track,
.dentist_slider_container .slick-slide {
    box-sizing: content-box;
}

.dentist_slider_container .slick-list {
    overflow: unset !important;
}

.dentist-slider__dots .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dentist-slider__dots .slick-dots li {
    display: flex;
}

.dentist-slider__dots .slick-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d5d5d5;
    text-indent: -9999px;
    cursor: pointer;
}

.dentist-slider__dots .slick-dots li.slick-active button {
    background: var(--color-primary);
}

.dentist-slider__dots:has(.slick-dots li:only-child) {
    display: none;
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {
    .dentist-slider__slide {
        padding: 40px 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .dentist-slider__slide {
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dentist-slider {
        padding-left: 0 !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dentist-slider {
        padding-left: 4.3%;
    }

    .dentist-slider__slide {
        padding: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .dentist-slider {
        padding: 0 0 20px !important;
    }

    .dentist-slider__inner {
        flex-wrap: wrap;
    }

    .dentist-slider__content {
        padding-top: 0;
    }

    .dentist-slider__photo {
        margin-top: 0 !important;
        max-width: 450px;
    }

    .dentist-slider__content {
        max-width: 100%;
    }

    .dentist-slider__content p {
        font-size: 16px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {}

@media only screen and (min-width: 991px) and (max-width: 1280px) {
    .dentist-slider__inner {
        align-items: center !important;
    }

    .dentist-slider__content p {
        font-size: 18px;
    }

    .dentist-slider__slide {
        padding-left: 50px;
        padding-bottom: 60px;
    }

    .dentist-slider__photo {
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .dentist-slider__content p {
        font-size: 18px;
    }

    .dentist-slider__slide {
        padding-left: 50px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1550px) {
    .dentist-slider__slide {
        padding-left: 50px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 1141px) {
    .dentist-slider__content h2 {
        font-size: 48px;
    }
}

/* ==========================================================================
   Implant provider
   ========================================================================== */

.implant-provider {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.implant-provider__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    max-height: 606px;
    box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.05), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.implant-provider__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.implant-provider__inner h2 {
    text-align: center;
    max-width: 1170px;
    width: 100%;
    margin: auto;
}

.implant-provider__row {
    display: flex;
    gap: 60px;
}

.implant-provider__text {
    font-size: 18px;
    width: 100%;
    max-width: 710px;
    height: fit-content;
    padding-top: 24px;
}

.implant-provider__photo {
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.04);
    max-width: 710px;
    width: 100%;
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (max-width: 767px) {
    .implant-provider__inner {
        gap: 40px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (max-width: 991px) {
    .implant-provider__row {
        flex-direction: column-reverse !important;
    }

    .implant-provider__text {
        max-width: 100%;
    }

    .implant-provider__photo {
        max-width: 100%;
    }

    .implant-provider__text {
        padding-top: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {}

@media only screen and (max-width: 1280px) {
    .implant-provider__bg {
        max-height: 100%;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {}

/* ==========================================================================
   Comparison
   ========================================================================== */

.comparison {
    padding: 0 24px 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.comparison h2 {
    text-align: center;
}

.comparison__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.comparison__cards {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--container-max);
    width: 100%;
}

.comparison__card {
    flex: 1 1 380px;
    max-width: 480px;
    background: var(--color-white);
    border: 1px solid #fafafa;
    box-shadow: 0px 4px 12px rgba(191, 191, 191, 0.45);
}

.comparison__card-head {
    border-bottom: 2px solid #f3f3f3;
    padding: 24px;
    text-align: center;
}

.comparison__card-head p {
    font-weight: 600;
    font-size: 22px;
}

.comparison__card--pro .comparison__card-head p {
    color: #0068b5;
}

.comparison__card--con .comparison__card-head p {
    color: var(--color-heading);
}

.comparison__list {
    padding: 8px 0;
}

.comparison__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
}

.comparison__list img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison__list span {
    font-size: 15px;
    color: var(--color-body);
}

.comparison a.btn.btn--primary {
    margin-top: 16px;
}

/* ==========================================================================
   Teeth options
   ========================================================================== */

.teeth-options {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.teeth-options__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.teeth-options__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.teeth-options__cards {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--container-max);
    width: 100%;
}

.teeth-options__card {
    flex: 1 1 300px;
    max-width: 340px;
    background: var(--color-white);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.teeth-options__card--shaded {
    background: #f1f0f7;
}

.teeth-options__card-head {
    padding: 32px 0 10px;
}

.teeth-options__name {
    font-size: 24px;
    color: var(--color-body);
    margin-bottom: 10px;
}

.teeth-options__type {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bc8451;
}

.teeth-options__image {
    position: relative;
    width: 100%;
}

.teeth-options__image-label {
    position: absolute;
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    background: #03070a;
    color: var(--color-white);
    padding: 12px 24px;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

.teeth-options__features {
    width: 100%;
    padding: 20px 0;
}

.teeth-options__features li {
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
}

.teeth-options__price {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.teeth-options__disclaimer {
    padding: 14px 0;
    font-size: 14px;
}

/* ==========================================================================
   Removable options
   ========================================================================== */

.removable-options {
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.removable-options__top,
.removable-options__bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.removable-options__top h2,
.removable-options__bottom h2 {
    text-align: center;
}

.removable-options__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.removable-options__grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    width: 100%;
}

.removable-options__item {
    flex: 1 1 340px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.removable-options__item-head {
    text-align: center;
}

.removable-options__implants {
    font-size: 22px;
    color: var(--color-heading);
    font-weight: 500;
}

.removable-options__type {
    color: var(--color-primary);
    font-size: 20px;
    letter-spacing: 0.02em;
}

.removable-options__image {
    width: 100%;
}

.removable-options__caption {
    font-size: 18px;
}

.removable-options__ideal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px 30px;
    width: 100%;
    max-width: 1230px;
    margin: auto;
}

.removable-options__ideal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.removable-options__ideal-list img {
    width: 7px;
    margin-top: 0;
    height: 7px;
    object-fit: cover;
}

.removable-options__bottom a.btn.btn--primary {
    margin-top: 16px;
}

/* ==========================================================================
   Ready CTA
   ========================================================================== */

.ready-cta {
    padding: 0 24px 100px 24px;
}

.ready-cta__card {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}

.ready-cta__text {
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
    overflow: hidden;
    max-width: 840px;
    width: 100%;
}

.ready-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ready-cta__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.ready-cta__copy h2 {
    color: var(--color-white);
    font-size: 64px;
}

.ready-cta__copy p {
    color: var(--color-white);
    font-size: 32px;
    max-width: 683px;
    width: 100%;
}

.ready-cta__text>.btn {
    position: relative;
    z-index: 1;
}

.ready-cta__photo {
    background: var(--color-bg-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: 640px;
    width: 100%;
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (max-width: 782px) {}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ready-cta__copy h2 {
        font-size: 40px;
    }

    .ready-cta__copy p {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .ready-cta__card {
        flex-wrap: wrap;
    }

    .ready-cta__text,
    .ready-cta__photo {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .ready-cta__copy h2 {
        font-size: 40px;
    }

    .ready-cta__copy p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .ready-cta__copy h2 {
        font-size: 48px;
    }

    .ready-cta__copy p {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1680px) {
    .ready-cta__copy h2 {
        font-size: 55px;
    }
}

@media only screen and (min-width: 1681px) and (max-width: 1880px) {}

/* ==========================================================================
   Guide form
   ========================================================================== */

.guide-form {
    background: var(--color-bg-tint);
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.guide-form__heading {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.guide-form__heading p {
    font-size: 18px;
}

.guide-form__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.guide-form__body {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    justify-content: center;
}

.guide-form__form {
    flex: 1 1 480px;
    max-width: 653px;
    background: var(--color-white);
    border: 2px dashed #525252;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guide-form__field label {
    font-weight: 600;
    font-size: 17px;
    color: #232323;
}

.guide-form__field input {
    background: #f5f5f5;
    border: none;
    padding: 14px 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-heading);
}

.guide-form__field input::placeholder {
    color: #6d6c69;
}

.guide-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #525252;
}

.guide-form__consent input {
    margin-top: 4px;
}

.guide_form__field_consent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #525252;
    cursor: pointer;
}

.consent-label input {
    margin-top: 4px;
    flex-shrink: 0;
}

.guide_form__field_agree_text {
    margin: 0;
    font-size: 13px;
    color: #525252;
}

.guide_form__field_agree_text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cf-hint {
    display: none;
    margin-top: 4px;
    font-size: 13px;
    color: #c0392b;
}

.guide-form__submit-btn {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guide-form__submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.guide-form__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: guide-form-spin 0.7s linear infinite;
}

@keyframes guide-form-spin {
    to {
        transform: rotate(360deg);
    }
}

.guide-form__side {
    flex: 1 1 380px;
    max-width: 411px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-form__covers {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.guide-form__cover {
    max-width: 65%;
    box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.25);
}

.guide-form__cover--back {
    position: absolute;
    right: 0;
    top: 10%;
}

.guide-form__cover--front {
    position: relative;
    left: -10%;
    transform: rotate(-8deg);
}

.guide-form__points p {
    font-weight: 600;
    font-size: 20px;
    color: #525252;
    margin-bottom: 12px;
}

.guide-form__points ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-form__points li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    color: #525252;
}

.guide-form__points img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    position: relative;
    padding: 40px 24px;
    overflow: hidden;
}

.site-footer__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.site-footer__top {
    max-width: var(--container-max);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__address,
.site-footer__hours {
    color: var(--color-primary);
    font-weight: 300;
    font-size: 17px;
}

.site-footer__hours {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__logo img {
    width: 120px;
}

.site-footer__bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
}

.site-footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer__score {
    color: var(--color-primary);
    font-size: 42px;
    font-weight: 300;
}

.site-footer__stars {
    display: flex;
    gap: 4px;
}

.site-footer__stars img {
    width: 14px;
    height: 14px;
}

.site-footer__reviews-count {
    color: var(--color-primary);
    font-size: 13px;
}

.site-footer__review-link {
    display: block;
    margin-top: 8px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.site-footer__legal {
    text-align: center;
    color: var(--color-body);
    font-size: 14px;
}

.site-footer__legal p:first-child {
    margin-bottom: 4px;
}

.site-footer__legal a {
    color: var(--color-body);
}

.site-footer__legal span {
    margin: 0 4px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 16px;
}

.site-footer__social img {
    width: 14px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Mobile navigation breakpoint — hamburger + off-canvas panel take over */
@media (max-width: 1300px) {
    .site-header {
        padding: 14px 24px;
    }

    .site-nav {
        display: none;
    }

    .site-header__toggle {
        display: flex;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    h2 {
        font-size: 32px;
    }

    .hero {
        min-height: 520px;
        padding: 64px 24px;
    }

    .hero__heading h1 {
        font-size: 40px;
    }

    .hero__subheading {
        font-size: 22px;
    }

    .services,
    .implant-provider,
    .comparison,
    .teeth-options,
    .removable-options,
    .ready-cta,
    .guide-form,
    .why-choose,
    .dentist-slider,
    .insurance {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .services__body,
    .implant-provider__row {
        gap: 32px;
    }

    .comparison__cards,
    .teeth-options__cards {
        gap: 24px;
    }

    .removable-options {
        gap: 64px;
    }

    .removable-options__ideal-list {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }

    .hero {
        min-height: 0;
        padding: 56px 20px;
    }

    .hero__heading h1 {
        font-size: 32px;
    }

    .hero__subheading {
        font-size: 20px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }

    .site-header {
        padding: 12px 20px;
    }

    .site-header__logo img {
        width: 84px;
    }

    .insurance__row,
    .services__body,
    .implant-provider__row,
    .ready-cta__card {
        flex-direction: column;
    }

    .insurance__logos {
        width: 200px;
        height: 120px;
    }

    .dentist-slider__content h2 {
        font-size: 28px;
    }

    .comparison__cards,
    .teeth-options__cards {
        flex-direction: column;
        align-items: center;
    }

    .comparison__card,
    .teeth-options__card {
        width: 100%;
        max-width: 420px;
    }

    .removable-options__grid {
        gap: 32px;
    }

    .removable-options__item {
        width: 100%;
    }

    .guide-form__cover--back,
    .guide-form__cover--front {
        position: static;
        transform: none;
        max-width: 45%;
    }

    .guide-form__covers {
        gap: 12px;
    }

    .guide-form__form {
        padding: 20px;
    }

    .site-footer__top,
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__hours {
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    h2 {
        font-size: 24px;
    }

    .hero__heading h1 {
        font-size: 26px;
        letter-spacing: 0.01em;
    }

    .hero__subheading {
        font-size: 17px;
    }

    .site-header__logo img {
        width: 72px;
    }

    .services__intro,
    .why-choose__heading,
    .teeth-options__heading,
    .removable-options__top,
    .removable-options__bottom,
    .guide-form__heading {
        gap: 16px;
    }

    .insurance__row {
        text-align: center;
        align-items: center;
    }

    .insurance__heading {
        font-size: 20px;
        text-align: center;
    }

    .dentist-slider__content h2 {
        font-size: 24px;
    }

    .ready-cta__copy h2 {
        font-size: 28px;
    }

    .ready-cta__copy p {
        font-size: 18px;
    }

    .ready-cta__text {
        padding: 32px 24px;
    }

    .ready-cta__photo {
        padding: 24px;
    }

    .site-footer__score {
        font-size: 34px;
    }

    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }

    .dentist_slider_container button.dentist-slider__arrow {
        display: none !important;
    }
}


/*--------------------*/

.map_sec_container {
    line-height: 0;
}

@media only screen and (max-width: 767px) {
    .map_sec_container iframe {
        height: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .map_sec_container iframe {
        height: 500px;
    }
}

/* ==========================================================================
   Thank you page
   ========================================================================== */

.thank-you {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    text-align: center;
}

.thank-you__card {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.thank-you__card h1 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 40px;
}

.thank-you__card p {
    font-size: 17px;
    color: var(--color-body);
}

/* ==========================================================================
   Page banner (Privacy Policy / Terms & Conditions / other inner pages)
   ========================================================================== */

.page-banner {
    background: var(--color-bg-tint);
    padding: 64px 24px;
    text-align: center;
}

.page-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.page-banner h1 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 0.02em;
    margin: 0;
}

.page-banner__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-body);
}

.page-banner__breadcrumbs a {
    color: var(--color-primary);
}

.page-banner__breadcrumbs a:hover {
    text-decoration: underline;
}

.page-banner__sep {
    color: var(--color-body);
}

/* ==========================================================================
   Legal pages (Privacy Policy / Terms & Conditions)
   ========================================================================== */

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

.legal-section.padd_top {
    padding-top: 80px;
}

.legal-section.padd_bottom {
    padding-bottom: 80px;
}

.legal-content.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-content .section-title,
.legal-content h2.h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
    font-size: 26px;
    line-height: 1.3;
    margin-top: 12px;
}

.legal-content h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-heading);
    font-size: 18px;
    margin: 0;
}

.legal-content .section-desc {
    font-size: 16px;
    color: var(--color-body);
    line-height: 1.7;
}

.legal-content .section-desc a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content .common-listing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    list-style: disc;
}

.legal-content .common-listing li {
    font-size: 16px;
    color: var(--color-body);
    line-height: 1.7;
}

@media (max-width: 575px) {
    .page-banner h1 {
        font-size: 28px;
    }

    .legal-section.padd_top {
        padding-top: 48px;
    }

    .legal-section.padd_bottom {
        padding-bottom: 48px;
    }

    .legal-content .section-title,
    .legal-content h2.h2 {
        font-size: 22px;
    }
}

/* ==========================================================================
   Hero — stack image above content below 991px
   (placed last so it wins over the older overlay-era padding/min-height
   rules in the tablet/mobile blocks above, without touching their
   font-size / button-stacking tweaks)
   ========================================================================== */

@media (max-width: 991px) {
    .hero {
        display: block;
        padding: 0;
        min-height: 0;
        overflow: visible;
    }

    .hero__bg {
        position: relative;
        height: 280px;
    }

    .hero__overlay {
        display: none;
    }

    .hero__content {
        position: static;
        max-width: 100%;
        padding: 40px 24px;
    }

    .hero__heading h1 {
        color: var(--color-heading);
        text-shadow: none;
    }

    .hero__subheading {
        color: var(--color-heading);
    }

    .hero__actions .btn--outline-white {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
}