:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e2f44;
    --primary-bg: #eaf2f8;
    --accent: #2e86c1;
    --accent-light: #5dade2;
    --text: #2c3e50;
    --text-light: #5d6d7e;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-blue: #eaf2f8;
    --border: #d5dbdb;
    --success: #27ae60;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg);
}

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

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-icon {
    height: 42px;
    width: auto;
}

.logo-tld {
    color: var(--accent);
}


.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav a.active::after {
    transform: scaleX(1);
}

.nav a.active {
    color: var(--primary);
}

.nav a.nav-cta::after,
.nav a.lang-switch::after {
    display: none;
}

.nav a:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.nav .nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    margin-left: 8px;
    border-radius: 6px;
}

.nav .nav-cta:hover {
    background: var(--primary-light);
    color: var(--white);
}

.lang-switch {
    margin-left: 12px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1.6rem;
    line-height: 1;
    background: var(--white);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

.lang-switch:hover {
    border-color: var(--primary-light);
    background: var(--bg-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-cover.jpg');
    background-size: cover;
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,82,118,0.72) 0%, rgba(46,134,193,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
    letter-spacing: 0.01em;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-bg);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

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

.btn-blue:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(26,82,118,0.3);
}

/* ===================== BENEFITS ===================== */
.benefits {
    padding: 80px 0;
    background: var(--bg);
}

.benefits .container {
    max-width: 1400px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    background: var(--bg-blue);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-blue {
    background: var(--bg-blue);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.content-block h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-block p {
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.8;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.content-with-image.image-large {
    grid-template-columns: 3fr 2fr;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-image img {
    width: 100%;
    object-fit: contain;
    background: #fff;
}

.content-image-small {
    max-width: 450px;
    margin: 24px auto;
}

.content-image-small img {
    border-radius: var(--radius-lg);
}

/* ===================== NODULE TYPES ===================== */
.nodule-types {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.nodule-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    padding-bottom: 32px;
}

.nodule-card:last-child {
    border-bottom: none;
}

.nodule-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.nodule-card h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nodule-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.nodule-card .treatment-note {
    background: var(--bg-blue);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 0.95rem;
}

/* ===================== STEPS ===================== */
.steps-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.step-item {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform var(--transition);
}

.step-item:hover {
    transform: translateX(4px);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-text {
    padding-top: 8px;
    line-height: 1.6;
}

/* ===================== COMPARISON TABLE ===================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.95rem;
}

.comparison-table thead th {
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table thead th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
    background: var(--success);
}

.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-alt);
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
    min-width: 180px;
}

.comparison-table tbody td:last-child {
    color: var(--success);
    font-weight: 500;
}

.comparison-table .check {
    color: var(--success);
    font-weight: 700;
}

.comparison-table .cross {
    color: #e74c3c;
}

/* ===================== EXPERT ===================== */
.expert-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.expert-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.expert-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.expert-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.expert-info .role {
    font-size: 1.05rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
}

.expert-info p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.expert-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gallery-caption {
    padding: 12px 16px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

.locations-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
}

.locations {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-city {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.location-city svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-light);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.location-entry {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.location-entry:last-child {
    border-bottom: none;
}

.location-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    background: var(--bg-blue);
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.location-address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 4px;
}

.location-address:last-of-type {
    margin-bottom: 0;
}

.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

.location-map-link svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.location-map-link:hover {
    color: var(--primary);
}

/* ===================== FAQ ===================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    transition: transform var(--transition);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================== CONTACT CTA ===================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-tip {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: 24px;
    font-style: italic;
}

.cta-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition);
    min-width: 200px;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    color: var(--white);
}

.cta-card-accent {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border-color: transparent;
}

.cta-card-accent:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.cta-card-accent .cta-card-icon {
    background: var(--primary-light);
}

.cta-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.cta-card-accent .cta-card-icon svg {
    stroke: var(--white);
}

.cta-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    font-weight: 600;
}

.cta-card-accent .cta-card-label {
    color: var(--primary-light);
    opacity: 1;
}

.cta-card-value {
    font-size: 1.05rem;
    font-weight: 700;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer p {
    margin-bottom: 8px;
}

.footer a {
    color: rgba(255,255,255,0.85);
}

.footer a:hover {
    color: var(--white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 4px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-with-image.reverse {
        direction: ltr;
    }

    .expert-profile {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .expert-photo {
        max-width: 280px;
    }

    .expert-gallery {
        grid-template-columns: 1fr;
    }

    .locations {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card {
        padding: 20px 12px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 12px;
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        padding: 0 18px 16px;
    }

    .cta-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.9);
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-inner p {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: var(--accent-light);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ===================== PRIVACY POLICY ===================== */
.privacy-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.privacy-section .container {
    background: var(--white);
    max-width: 800px;
    margin: 40px auto;
    border-radius: var(--radius-lg);
    position: relative;
}

.privacy-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.privacy-close:hover {
    color: var(--text);
}

.privacy-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 8px;
}

.privacy-section p {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================== UTILITIES ===================== */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.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;
}

/* ===================== EVOLUTION IMAGE ===================== */
.evolution-image {
    margin: 32px 0;
    text-align: center;
}

.evolution-image img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
}

.evolution-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

/* ===================== SIDE EFFECTS ===================== */
.side-effects-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.side-effect-item {
    padding: 0;
}

.side-effect-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.side-effect-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.side-effect-positive h4 {
    color: var(--success);
}

@media (max-width: 600px) {
    .side-effects-list {
        grid-template-columns: 1fr;
    }
}

/* ===================== IMAGES SECTION ===================== */
.echo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.echo-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.echo-image img {
    width: 100%;
    object-fit: cover;
}

.echo-caption {
    padding: 10px 14px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.82rem;
    text-align: center;
}

@media (max-width: 600px) {
    .echo-images {
        grid-template-columns: 1fr;
    }
}
