:root {
    --primary: #0061a2;
    --primary-dark: #004a7c;
    --primary-light: #e8f4fb;
    --accent: #00a6d6;
    --text: #172432;
    --muted: #667789;
    --line: #dbe7ef;
    --bg: #f5f9fc;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(0, 67, 112, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

p {
    margin: 0 0 18px;
}

ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 18px;
    line-height: 1.16;
    color: var(--text);
}

h1 {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -1.5px;
}

h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.8px;
}

h3 {
    font-size: 21px;
    font-weight: 800;
}

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

.text-lg-end {
    text-align: left;
}

@media (min-width: 992px) {
    .text-lg-end {
        text-align: right;
    }
}

.material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
    vertical-align: middle;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(0, 97, 162, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 16px 34px rgba(0, 74, 124, 0.3);
}

.btn-outline {
    color: var(--primary);
    background: var(--white);
    border: 1px solid rgba(0, 97, 162, 0.22);
}

.btn-light {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(0, 40, 70, 0.12);
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-lead,
.lead {
    color: #34495d;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 46px;
}

.section-heading p:not(.section-kicker) {
    color: var(--muted);
    font-size: 18px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 97, 162, 0.1);
}

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

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 42px;
}

.topbar__contacts {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

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

.socials__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--white);
    font-size: 17px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.socials__link:hover {
    transform: translateY(-2px);
    background: #dff3ff;
}

.socials__link .material-symbols-outlined {
    font-size: 17px;
}

/* Brand social icons */
.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.social-icon {
    width: 17px;
    height: 17px;
    display: block;
    fill: currentColor;
}

.socials--large .social-icon {
    width: 22px;
    height: 22px;
}

.footer-socials {
    justify-content: flex-end;
    margin-top: 14px;
}

.site-footer .socials__link {
    color: #09283f;
    background: #ffffff;
}

.site-footer .socials__link:hover {
    color: var(--primary);
    background: #dff3ff;
}

.socials__link--facebook {
    color: #1877f2;
    background: #ffffff;
}

.socials__link--instagram {
    color: #E4405F;
    background: #ffffff;
}

.socials__link--whatsapp {
    color: #25d366;
    background: #ffffff;
}

.socials__link--facebook:hover,
.site-footer .socials__link--facebook:hover {
    color: #1877f2;
    background: #e8f1ff;
}

.socials__link--instagram:hover,
.site-footer .socials__link--instagram:hover {
    color: #E4405F;
    background: #fde9f1;
}

.socials__link--whatsapp:hover,
.site-footer .socials__link--whatsapp:hover {
    color: #25d366;
    background: #e9fbf0;
}

.nav-item {
    position: relative;
}

.nav-link--button {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    border: 0;
    font-family: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-link--button .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.nav-item--dropdown:hover .nav-link--button .material-symbols-outlined,
.nav-item--dropdown:focus-within .nav-link--button .material-symbols-outlined {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    z-index: 30;
    width: 250px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item--dropdown:hover .submenu,
.nav-item--dropdown:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.submenu a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: #2d4154;
    font-size: 14px;
    font-weight: 800;
}

.submenu a:hover {
    color: var(--primary);
    background: var(--primary-light);
}


.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
}

.logo img {
    width: 188px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.main-nav a,
.nav-link {
    color: #2d4154;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.main-nav a:hover,
.nav-link:hover {
    color: var(--primary);
}

.header-cta {
    min-height: 46px;
    padding: 11px 18px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--primary);
    background: var(--primary-light);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 166, 214, 0.18), transparent 35%),
        linear-gradient(135deg, #eff8fd 0%, #ffffff 48%, #e7f4fb 100%);
}

.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: 105px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 97, 162, 0.08);
}

.hero::after {
    content: '';
    position: absolute;
    left: -130px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 166, 214, 0.13);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 780px;
}

.hero__content p:not(.eyebrow):not(.lead) {
    color: var(--muted);
    font-size: 17px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0 28px;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__features div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(0, 97, 162, 0.12);
    border-radius: 999px;
    color: #385066;
    background: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 800;
}

.hero__features .material-symbols-outlined {
    color: var(--primary);
    font-size: 19px;
}

.hero-card {
    position: relative;
    padding: 36px;
    border-radius: 32px;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary) 0%, #003e69 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::after {
    content: '';
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.hero-card h2,
.hero-card p,
.hero-card li {
    color: var(--white);
}

.hero-card p {
    opacity: 0.9;
}

.hero-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-card__icon .material-symbols-outlined {
    font-size: 38px;
}

.check-list {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #8ce6ff;
    font-weight: 900;
}

.check-list--blue li::before {
    color: var(--primary);
}

/* Trust */
.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -38px;
    padding-bottom: 22px;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 70px;
    padding: 14px;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 800;
    text-align: center;
}

/* Cards */
.content-card,
.service-card,
.form-card,
.contact-info,
.link-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.content-card {
    padding: 32px;
}

.content-card--shadow {
    box-shadow: var(--shadow);
}

.small-title {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 17px;
}

.icon-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    color: #334b60;
    font-weight: 700;
}

.icon-list .material-symbols-outlined {
    margin-top: 2px;
    color: var(--primary);
    font-size: 20px;
}

.accent-panel {
    min-height: 100%;
    padding: 36px;
    border-radius: 32px;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: var(--shadow);
}

.accent-panel h2,
.accent-panel p {
    color: var(--white);
}

.accent-panel .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 38px;
}

.service-card {
    height: 100%;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 67, 112, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card--featured {
    border-color: rgba(0, 97, 162, 0.28);
    box-shadow: var(--shadow);
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    border-radius: 20px;
    color: var(--primary);
    background: var(--primary-light);
}

.service-card__icon .material-symbols-outlined {
    font-size: 36px;
}

.service-card p {
    color: var(--muted);
}

.service-card ul {
    padding-left: 19px;
    margin-bottom: 0;
    color: #354d62;
    font-size: 15px;
}

.service-card li {
    margin-bottom: 8px;
}

.cta-band {
    padding: 46px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary) 0%, #003e69 100%);
}

.cta-band h2,
.cta-band p {
    color: var(--white);
}

.cta-band p {
    margin-bottom: 0;
    opacity: 0.92;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.method-item {
    padding: 20px;
    border-radius: 18px;
    background: var(--primary-light);
}

.method-item .material-symbols-outlined {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 34px;
}

.method-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 17px;
}

.method-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.rehab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rehab-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 110px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 67, 112, 0.06);
}

.rehab-list .material-symbols-outlined {
    color: var(--primary);
    font-size: 32px;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.timeline-item {
    position: relative;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(0, 67, 112, 0.06);
}

.timeline-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-weight: 900;
}

.timeline-item h3 {
    font-size: 19px;
}

.timeline-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.section-blue {
    color: var(--white);
    background: linear-gradient(135deg, #005286 0%, var(--primary) 48%, #00375d 100%);
}

.section-blue h2,
.section-blue p,
.section-blue li {
    color: var(--white);
}

.white-list {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.white-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.white-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8ce6ff;
    font-weight: 900;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefits-grid div {
    min-height: 148px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    color: #34495d;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(0, 67, 112, 0.06);
}

.benefits-grid .material-symbols-outlined {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 32px;
}

.faq details {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    overflow: hidden;
}

.faq summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    cursor: pointer;
    color: var(--text);
    font-weight: 800;
    list-style: none;
}

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

.faq summary::after {
    content: '+';
    position: absolute;
    top: 18px;
    right: 22px;
    color: var(--primary);
    font-size: 26px;
    font-weight: 700;
}

.faq details[open] summary::after {
    content: '−';
}

.faq p {
    padding: 0 22px 22px;
    margin: 0;
    color: var(--muted);
}

.links-section {
    padding-top: 70px;
}

.link-card {
    display: block;
    height: 100%;
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 97, 162, 0.32);
    box-shadow: var(--shadow);
}

.link-card .material-symbols-outlined {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 36px;
}

.link-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 18px;
}

.link-card small {
    display: block;
    color: var(--muted);
    line-height: 1.5;
}

/* Contact */
.contact-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 166, 214, 0.14), transparent 30%),
        linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.contact-info,
.form-card {
    height: 100%;
    padding: 34px;
    box-shadow: var(--shadow);
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--primary);
    font-weight: 800;
}

.contact-info__item .material-symbols-outlined {
    font-size: 28px;
}

.socials--large {
    margin-top: 28px;
}

.socials--large .socials__link {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid rgba(0, 97, 162, 0.14);
    box-shadow: 0 10px 24px rgba(0, 67, 112, 0.08);
}

.socials--large .socials__link--facebook { color: #1877f2; }
.socials--large .socials__link--instagram { color: #E4405F; }
.socials--large .socials__link--whatsapp { color: #25d366; }

form label {
    display: block;
    margin-bottom: 8px;
    color: #40566b;
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cddde8;
    border-radius: 14px;
    padding: 14px 15px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 97, 162, 0.1);
}

textarea {
    resize: vertical;
}

.file-field {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    margin: 0;
    border: 1px dashed rgba(0, 97, 162, 0.38);
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-light);
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
}

.checkbox span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.form-note {
    margin: 14px 0 0;
    color: var(--primary);
    font-weight: 800;
}

/* Footer */
.site-footer {
    padding: 38px 0;
    color: rgba(255, 255, 255, 0.86);
    background: #09283f;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
}

.footer-logo img {
    width: 180px;
    padding: 10px 14px;
    border-radius: 16px;
    background: var(--white);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal.is-open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 24, 38, 0.62);
    backdrop-filter: blur(5px);
}

.modal__dialog {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 34px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--primary);
    background: var(--primary-light);
    cursor: pointer;
}

.modal-form input,
.modal-form textarea {
    margin-bottom: 14px;
}

.modal-form .checkbox {
    margin: 4px 0 18px;
}

/* Responsive */
@media (max-width: 1199px) {
    .main-nav {
        gap: 14px;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 991px) {
    .nav-item--dropdown:hover .submenu,
    .nav-item--dropdown:focus-within .submenu {
        display: none;
    }

    .nav-item--dropdown.is-open .submenu {
        display: block;
    }

    .nav-item--dropdown .nav-link--button .material-symbols-outlined {
        transform: none;
    }

    .nav-item--dropdown.is-open .nav-link--button .material-symbols-outlined {
        transform: rotate(180deg);
    }
    .section {
        padding: 68px 0;
    }

    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .topbar__contacts {
        gap: 10px 18px;
    }

    .navbar__inner {
        min-height: 74px;
    }

    .logo img {
        width: 162px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 16px 24px 24px;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 20px 35px rgba(0, 67, 112, 0.12);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a,
    .main-nav .nav-link--button {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef4f8;
        justify-content: space-between;
    }

    .nav-item,
    .nav-item--dropdown {
        width: 100%;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        padding: 4px 0 8px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item--dropdown.is-open .submenu {
    display: block;
    }

    .submenu::before {
        display: none;
    }

    .submenu a {
        padding: 9px 12px;
        border-bottom: 0;
        color: var(--muted);
    }

    .hero {
        min-height: auto;
        padding-top: 62px;
    }

    .trust-strip {
        margin-top: 0;
        padding-top: 24px;
    }

    .trust-strip__grid,
    .benefits-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .topbar__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-height: 42px;
        padding: 4px 0;
    }

    .topbar__contacts {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .topbar__link {
        justify-content: center;
        width: 32px;
        height: 32px;
        gap: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.16);
    }

    .topbar__link .material-symbols-outlined {
        font-size: 18px;
    }

    .topbar__text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .topbar .socials {
        flex: 0 0 auto;
        gap: 5px;
    }

    .topbar .socials__link {
        width: 32px;
        height: 32px;
    }

    .topbar .social-icon {
        width: 16px;
        height: 16px;
    }

    .hero__actions,
    .hero__features {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-card,
    .content-card,
    .service-card,
    .accent-panel,
    .contact-info,
    .form-card,
    .modal__dialog {
        padding: 24px;
        border-radius: 22px;
    }

    .trust-strip__grid,
    .benefits-grid,
    .timeline,
    .method-grid,
    .rehab-list {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
    }

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

    .footer-logo img {
        width: 150px;
    }
}

.site-footer .socials__link--facebook { color: #1877f2; }
.site-footer .socials__link--instagram { color: #E4405F; }
.site-footer .socials__link--whatsapp { color: #25d366; }


/* Oncology page additions */
.two-columns {
    columns: 2;
    column-gap: 24px;
}

.two-columns li {
    break-inside: avoid;
}

.method-grid--three {
    grid-template-columns: repeat(4, 1fr);
}

/* Related directions with previews */
.related-card {
    display: block;
    height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 67, 112, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.related-card:hover { transform: translateY(-6px); border-color: rgba(0, 97, 162, 0.34); box-shadow: var(--shadow); }
.related-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--primary-light); }
.related-card__image::after { content: ''; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0, 54, 91, 0.18) 100%); pointer-events: none; }
.related-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.related-card:hover .related-card__image img { transform: scale(1.035); }
.related-card__body { padding: 24px; }
.related-card__tag { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; padding: 7px 11px; border-radius: 999px; color: var(--primary); background: var(--primary-light); font-size: 13px; font-weight: 800; }
.related-card__tag .material-symbols-outlined { font-size: 18px; }
.related-card h3 { margin-bottom: 10px; font-size: 21px; }
.related-card p { color: var(--muted); font-size: 15px; }
.related-card__more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 800; }
.related-card__more .material-symbols-outlined { font-size: 18px; transition: transform 0.2s ease; }
.related-card:hover .related-card__more .material-symbols-outlined { transform: translateX(3px); }

/* Testimonials */
.testimonials-section { background: radial-gradient(circle at 86% 12%, rgba(0, 166, 214, 0.14), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%); }
.testimonial-card { height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(0, 67, 112, 0.07); }
.testimonial-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial-card__avatar { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 54px; width: 54px; height: 54px; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--primary), var(--accent)); font-size: 21px; font-weight: 900; box-shadow: 0 12px 26px rgba(0, 97, 162, 0.22); }
.testimonial-card h3 { margin-bottom: 4px; font-size: 18px; }
.testimonial-card__top p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.testimonial-card__text { margin-bottom: 0; color: #34495d; font-size: 15px; }

/* Footer disclaimer */
.footer-disclaimer { padding: 28px 0; background: #f5f9fc; }
.footer-disclaimer__box { padding: 20px 24px; border: 1px solid rgba(0, 97, 162, 0.16); border-radius: 18px; background: var(--white); color: var(--muted); box-shadow: 0 10px 28px rgba(0, 67, 112, 0.05); }
.footer-disclaimer__box strong { display: block; margin-bottom: 8px; color: var(--text); }
.footer-disclaimer__box p { margin: 0; font-size: 14px; }

@media (max-width: 991px) { .method-grid--three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .two-columns { columns: 1; } .method-grid--three { grid-template-columns: 1fr; } .testimonial-card { padding: 24px; } }
