
:root {
    --brand: #0dad97;
    --brand-dark: #0e7e61;
    --brand-deep: #075d4d;
    --brand-soft: #8bd8c5;
    --mint: #eaf8f4;
    --ink: #21302d;
    --muted: #63716e;
    --line: #dce9e6;
    --white: #fff;
    --shadow: 0 18px 45px rgba(14, 126, 97, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.contact-bar {
    border-bottom: 1px solid #edf2f1;
    color: #75817f;
    font-size: 14px;
}

.contact-bar__inner {
    display: flex;
    align-items: center;
    min-height: 42px;
    gap: 52px;
}

.contact-bar a,
.contact-bar span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.contact-bar svg {
    width: 16px;
    height: 16px;
    fill: var(--brand);
}

.social-link {
    margin-left: auto;
    width: 28px;
    height: 28px;
    justify-content: center;
    border-radius: 50%;
    background: #f4f7f6;
    color: var(--brand-dark);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #eef3f2;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 24px rgba(15, 93, 77, .04);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 84px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 185px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    gap: 38px;
    margin-left: auto;
    margin-right: 70px;
    color: #4e6761;
    font-size: 16px;
    font-weight: 700;
}

.main-nav a {
    transition: color .2s ease;
}

.main-nav a:hover {
    color: var(--brand);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: .25s ease;
}

.button:hover {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    transform: translateY(-2px);
}

.button--header {
    min-width: 180px;
    min-height: 56px;
}

.button--small {
    min-width: 108px;
    min-height: 43px;
    padding-inline: 22px;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.87) 42%, rgba(255,255,255,.08) 100%),
        url('../../img/dentalcard/banner-principal.webp') center/cover,
        linear-gradient(120deg, #f7fffd, #bdeee2);
}

.hero::after {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(139, 216, 197, .42);
    content: '';
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero__content {
    width: 730px;
}

.eyebrow {
    margin: 0 0 9px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: #8baea6;
    font-size: clamp(72px, 9vw, 116px);
    font-weight: 700;
    letter-spacing: -6px;
    line-height: .95;
}

.hero__lead {
    margin: 18px 0 22px;
    color: #5a6261;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.quick-links a {
    display: grid;
    place-items: center;
    min-height: 122px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(117, 208, 188, .94);
    color: #fff;
    text-align: center;
    transition: .25s ease;
}

.quick-links a:hover {
    background: var(--brand-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.quick-links svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.quick-links strong {
    display: block;
    font-size: 17px;
}

.hero__mark {
    width: 148px;
    height: 190px;
    margin-left: -230px;
    filter: drop-shadow(0 18px 16px rgba(14, 126, 97, .1));
}

.section {
    padding: 110px 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 86px;
}

.about__photos {
    position: relative;
    min-height: 470px;
}

.photo {
    position: absolute;
    background-color: var(--mint);
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.photo--main {
    inset: 24px 84px 30px 0;
    border-radius: 0 110px 0 0;
    background-image: url('../../img/dentalcard/doctora.webp');
}

.photo--small {
    right: 0;
    bottom: 0;
    width: 232px;
    height: 174px;
    border: 7px solid #fff;
    background-image: url('../../img/dentalcard/about-small.jpg');
}

.about__mark {
    position: absolute;
    top: 0;
    right: 105px;
    width: 102px;
    height: 122px;
}

.about__dots {
    position: absolute;
    top: 18px;
    right: 2px;
    width: 82px;
    height: 82px;
    background-image: radial-gradient(var(--brand-dark) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: .65;
}

h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -1.5px;
    line-height: 1.05;
}

.about__content > p:not(.eyebrow) {
    margin: 20px 0 0;
    color: var(--muted);
}

.about__content strong {
    color: var(--ink);
}

.about__benefits {
    display: grid;
    gap: 15px;
    margin-top: 28px;
}

.about__benefits div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about__benefits p {
    margin: 0;
}

.benefit-icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--brand);
}

.plans {
    background: linear-gradient(135deg, #f8fffd, #fff 45%, #f6fbfa);
}

.section-heading {
    margin-bottom: 56px;
    text-align: center;
}

.section-heading h2 {
    color: var(--ink);
}

.section-heading span {
    display: block;
    width: 46px;
    height: 3px;
    margin: 17px auto 0;
    background: var(--brand);
}

.section-heading--left {
    margin-bottom: 34px;
    text-align: left;
}

.section-heading--left span {
    margin-left: 0;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-card {
    overflow: hidden;
    border: 2px dotted #b2cfca;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    text-align: center;
    transition: .25s ease;
}

.plan-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.plan-card__media {
    position: relative;
    isolation: isolate;
    height: 190px;
    overflow: hidden;
    background: var(--mint);
}

.plan-card__media::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 173, 151, .02), rgba(14, 126, 97, .34));
    content: '';
}

.plan-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.plan-card:hover .plan-card__media img {
    transform: scale(1.06);
}

.plan-card__mark {
    position: absolute;
    right: 18px;
    bottom: -19px;
    z-index: 2;
    width: 72px;
    height: 86px;
    filter: drop-shadow(0 12px 18px rgba(14, 126, 97, .2));
}

.plan-card__body {
    padding: 35px 24px 28px;
}

.plan-header {
    position: static;
    box-shadow: 0 10px 30px rgba(7, 93, 77, .08);
}

.plan-detail {
    padding: 84px 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(13, 173, 151, .14), transparent 28%),
        linear-gradient(135deg, #f2fbf8 0%, #fff 62%);
}

.plan-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 58px;
    align-items: center;
}

.plan-detail h1 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: clamp(40px, 6vw, 68px);
    line-height: .98;
}

.plan-detail__subtitle {
    max-width: 620px;
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.12;
}

.plan-detail .lead {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 19px;
}

.plan-detail__features {
    display: grid;
    gap: 14px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.plan-detail__features li {
    position: relative;
    padding-left: 34px;
    color: var(--ink);
    font-weight: 700;
}

.plan-detail__features li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: inset 0 0 0 5px var(--mint);
}

.plan-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.plan-detail__media {
    overflow: hidden;
    border: 10px solid var(--white);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.plan-detail__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.plan-benefits {
    background: #fff;
}

.plan-benefits__grid {
    display: grid;
    gap: 26px;
}

.benefit-panel {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(234, 248, 244, .72), rgba(255, 255, 255, .96)),
        var(--white);
    box-shadow: 0 18px 46px rgba(7, 93, 77, .08);
}

.benefit-panel__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.benefit-panel__header > span {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    font-weight: 800;
}

.benefit-panel__header p {
    margin: 0 0 4px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.benefit-panel__header h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.benefit-panel__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.benefit-panel__images img {
    display: block;
    width: 100%;
    height: 240px;
    border-radius: 22px;
    object-fit: cover;
}

.benefit-panel__images img:only-child {
    grid-column: 1 / -1;
    height: 320px;
}

.benefit-panel__note {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    color: var(--brand-deep);
    background: var(--mint);
    font-weight: 700;
}

.benefit-panel__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-panel__list li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
}

.benefit-panel__list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
}

.benefit-panel__extra {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.benefit-panel__extra h4 {
    margin: 0 0 16px;
    color: var(--brand-dark);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.content-hero {
    padding: 84px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(13, 173, 151, .16), transparent 32%),
        linear-gradient(135deg, rgba(234, 248, 244, .98), rgba(255, 255, 255, .94));
}

.content-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 38px;
}

.content-hero h1 {
    margin: 0 0 16px;
    color: var(--brand-dark);
    font-size: clamp(42px, 7vw, 76px);
    line-height: .95;
}

.content-hero .lead {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.content-hero__card {
    display: grid;
    gap: 8px;
    padding: 28px;
    border: 1px solid rgba(13, 173, 151, .22);
    border-radius: 28px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
}

.content-hero__card strong {
    color: var(--brand-dark);
    font-size: 20px;
}

.content-hero__card a,
.content-hero__card span {
    color: var(--muted);
    font-weight: 700;
}

.content-page {
    padding: 78px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.provider-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(234, 248, 244, .74), rgba(255, 255, 255, .98)),
        var(--white);
    box-shadow: 0 18px 46px rgba(7, 93, 77, .08);
}

.provider-card > span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    font-weight: 800;
}

.provider-card p {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.provider-card h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.15;
}

.provider-card address {
    min-height: 54px;
    margin: 0 0 24px;
    color: var(--muted);
    font-style: normal;
}

.provider-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-card__actions a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: var(--mint);
    font-size: 14px;
    font-weight: 800;
}

.provider-card__actions a:first-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

.legal-summary {
    position: sticky;
    top: 22px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--mint);
}

.legal-summary strong {
    display: block;
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: 22px;
}

.legal-summary p {
    margin: 0 0 10px;
    color: var(--muted);
}

.legal-summary a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--brand-dark);
    font-weight: 800;
}

.legal-content {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(7, 93, 77, .08);
}

.legal-content h2 {
    margin: 36px 0 12px;
    color: var(--brand-dark);
    font-size: 26px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

.legal-content a {
    color: var(--brand-dark);
    font-weight: 800;
}

.legal-content ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.plan-card h3 {
    margin: 0 0 13px;
    color: var(--brand-dark);
    font-size: 20px;
}

.plan-card p {
    margin: 0 0 21px;
    color: var(--muted);
    font-size: 15px;
}

.stats {
    padding: 72px 0;
    background:
        linear-gradient(90deg, rgba(236, 251, 247, .98), rgba(255, 245, 244, .86)),
        url('../../img/dentalcard/banner-secundario.webp') center/cover;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat {
    display: grid;
    place-items: center;
    text-align: center;
}

.stat svg {
    width: 54px;
    height: 54px;
    margin-bottom: 7px;
    fill: var(--brand);
}

.stat strong {
    color: #111;
    font-size: 40px;
    line-height: 1;
}

.stat span {
    margin-top: 7px;
    color: #66716f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.location__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 380px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.location__info {
    padding: 48px 40px;
    background: var(--brand-dark);
    color: #d9f5ef;
}

.location__info .eyebrow {
    color: var(--brand-soft);
}

.location__info h2 {
    color: #fff;
}

.location__info > p:not(.eyebrow) {
    margin: 15px 0 28px;
}

.location__info a,
.location__info span {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 16px;
    font-size: 15px;
}

.location__info svg {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    fill: var(--brand-soft);
}

footer {
    padding: 20px 0;
    background: #427f6d;
    color: #e8faf6;
    font-size: 14px;
}

.footer__inner {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer__inner p {
    margin: 0;
}

.footer__inner a {
    font-weight: 700;
}

.whatsapp,
.scroll-top {
    position: fixed;
    z-index: 30;
    right: 22px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 126, 97, .25);
    font-weight: 800;
}

.whatsapp {
    bottom: 80px;
    background: #21b978;
    font-size: 12px;
}

.scroll-top {
    bottom: 22px;
    border: 2px solid var(--brand-dark);
    background: #fff;
    color: var(--brand-dark);
    font-size: 25px;
}

@media (max-width: 900px) {
    .contact-bar__inner {
        justify-content: space-between;
        gap: 20px;
    }

    .contact-bar span span,
    .contact-bar a span {
        display: none;
    }

    .social-link {
        margin-left: 0;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .button--header {
        display: none;
    }

    .menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        margin-left: auto;
        place-content: center;
        gap: 5px;
        border: 0;
        background: transparent;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--brand-dark);
        transition: .2s ease;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        margin: 0;
        border-top: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 12px 20px rgba(14, 126, 97, .08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: .2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 13px 24px;
        border-bottom: 1px solid var(--line);
    }

    .hero,
    .hero__inner {
        min-height: 590px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__mark {
        display: none;
    }

    .quick-links {
        max-width: 720px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .plans__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-detail__grid {
        grid-template-columns: 1fr;
    }

    .content-hero__grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .plan-detail__media {
        max-width: 620px;
    }

    .legal-summary {
        position: static;
    }

    .benefit-panel__list {
        grid-template-columns: 1fr;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 30px, 560px);
    }

    .contact-bar {
        display: none;
    }

    .logo img {
        width: 148px;
        height: 46px;
    }

    .hero,
    .hero__inner {
        min-height: 590px;
    }

    .hero {
        background:
            linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.78)),
            url('../../img/dentalcard/banner-principal.webp') center/cover,
            linear-gradient(120deg, #f7fffd, #bdeee2);
    }

    .hero h1 {
        font-size: 77px;
        letter-spacing: -4px;
    }

    .hero__lead {
        font-size: 21px;
    }

    .quick-links {
        gap: 7px;
    }

    .quick-links a {
        min-height: 105px;
        padding: 10px 5px;
    }

    .quick-links svg {
        width: 29px;
        height: 29px;
    }

    .quick-links strong {
        font-size: 13px;
    }

    .section {
        padding: 76px 0;
    }

    .about__photos {
        min-height: 315px;
    }

    .photo--main {
        inset: 17px 44px 18px 0;
        border-radius: 0 72px 0 0;
    }

    .photo--small {
        width: 142px;
        height: 109px;
        border-width: 4px;
    }

    .about__mark {
        right: 53px;
        width: 71px;
        height: 87px;
    }

    .about__dots {
        top: 4px;
        width: 50px;
        height: 50px;
        background-size: 11px 11px;
    }

    h2 {
        font-size: 36px;
    }

    .plans__grid {
        grid-template-columns: 1fr;
    }

    .plan-detail {
        padding: 58px 0;
    }

    .plan-detail__grid {
        gap: 32px;
    }

    .plan-detail__features li {
        padding-left: 28px;
    }

    .content-hero,
    .content-page {
        padding: 56px 0;
    }

    .content-hero__card,
    .provider-card,
    .legal-content,
    .legal-summary {
        padding: 22px;
        border-radius: 22px;
    }

    .providers-grid {
        grid-template-columns: 1fr;
    }

    .provider-card {
        min-height: auto;
    }

    .benefit-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .benefit-panel__header {
        align-items: flex-start;
    }

    .benefit-panel__header > span {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .benefit-panel__images {
        grid-template-columns: 1fr;
    }

    .benefit-panel__images img,
    .benefit-panel__images img:only-child {
        height: 210px;
    }

    .stats {
        padding: 52px 0;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 12px;
    }

    .stat svg {
        width: 44px;
        height: 44px;
    }

    .stat strong {
        font-size: 32px;
    }

    .stat span {
        font-size: 11px;
    }

    .location__info {
        padding: 35px 25px;
    }

    .footer__inner {
        display: block;
        text-align: center;
    }
}
