/* ===== Design Tokens ===== */
:root {
    --ivory: #f8f7f1;
    --mint: #d9ede4;
    --lavender: #e6e0f0;
    --peach: #fbe6d4;
    --dark: #333333;
    --primary: #6e57b2;
    --secondary: #7fc9aa;
    --accent: #f8c05a;
    --rejection: #e57373;
    --white: #ffffff;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ivory);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { text-decoration: underline; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.hidden { display: none !important; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { cursor: pointer; text-decoration: none; }
.logo-img { height: 2rem; width: auto; }
@media (min-width: 768px) { .logo-img { height: 2.5rem; } }

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--primary); text-decoration: none; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.btn-header-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-header-cta:hover {
    background: #5b4696;
    color: var(--white);
    text-decoration: none;
    transform: scale(1.05);
}

.burger-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.75rem;
    cursor: pointer;
}
@media (min-width: 768px) { .burger-btn { display: none; } }

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}
.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(110, 87, 178, 0.1);
    text-decoration: none;
}

.mobile-nav-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-full {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
}
.btn-primary-full:hover { color: var(--white); text-decoration: none; }

.btn-telegram-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #0088cc;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}
.btn-telegram-full:hover { color: var(--white); text-decoration: none; }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    padding: 0.75rem 0;
    font-size: 0.8125rem;
    color: rgba(51, 51, 51, 0.5);
}
.breadcrumbs a {
    color: rgba(51, 51, 51, 0.5);
    text-decoration: none;
}
.breadcrumbs a:hover { color: var(--primary); }

/* ===== Hero Section ===== */
.hero-section {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--lavender) 50%, var(--mint) 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding-top: 7rem; padding-bottom: 4rem; } }

.hero-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(110, 87, 178, 0.1);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .hero-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.25rem; } }

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .hero-cta-group { flex-direction: row; justify-content: center; }
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary-lg:hover {
    background: #5b4696;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 87, 178, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.hero-note {
    font-size: 0.8125rem;
    color: rgba(51, 51, 51, 0.5);
    font-style: italic;
    max-width: 36rem;
    margin: 0 auto;
}

.hero-pub-date {
    font-size: 0.8125rem;
    color: rgba(51, 51, 51, 0.45);
    margin-top: 1rem;
}

/* ===== Section Common ===== */
.section {
    padding: 4rem 0;
}
@media (min-width: 768px) { .section { padding: 5rem 0; } }

.section-white { background: var(--white); }
.section-ivory { background: var(--ivory); }
.section-gradient {
    background: linear-gradient(135deg, var(--primary), #5b4696);
    color: var(--white);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.75rem; } }

.section-lead {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.65);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Block 2: Segmentation Cards ===== */
.segment-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .segment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .segment-grid { grid-template-columns: repeat(4, 1fr); } }

.segment-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.segment-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
    text-decoration: none;
    color: var(--dark);
}

.segment-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.segment-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.segment-card p {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
    flex: 1;
}

.segment-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

/* ===== Block 3: Comparison Table ===== */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

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

.comparison-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 0.75rem;
    text-align: left;
    white-space: nowrap;
}
.comparison-table thead th:first-child {
    border-radius: 1rem 0 0 0;
}
.comparison-table thead th:last-child {
    border-radius: 0 1rem 0 0;
}

.comparison-table tbody td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
}

.comparison-table tbody tr:hover {
    background: rgba(110, 87, 178, 0.03);
}

.comparison-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 1rem;
}
.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 1rem 0;
}

.table-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.table-link:hover { text-decoration: underline; }

.table-note {
    background: rgba(248, 192, 90, 0.15);
    border-left: 4px solid var(--accent);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 3rem;
}

/* ===== Method Detail Cards ===== */
.method-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary);
}
@media (min-width: 768px) { .method-card { padding: 2rem; } }

.method-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.method-card p {
    color: rgba(51, 51, 51, 0.75);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.method-card p:last-child { margin-bottom: 0; }

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.method-link:hover { text-decoration: underline; }

/* ===== Mid-section CTA ===== */
.mid-cta {
    background: var(--lavender);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0 3rem;
}

.mid-cta p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* ===== Block 4: Stepper ===== */
.stepper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p,
.step-content ul {
    color: rgba(51, 51, 51, 0.75);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.step-content ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.step-content li {
    margin-bottom: 0.25rem;
}

/* ===== Block 5: Cost Table ===== */
.cost-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

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

.cost-table thead th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}
.cost-table thead th:first-child { border-radius: 1rem 0 0 0; }
.cost-table thead th:last-child { border-radius: 0 1rem 0 0; }

.cost-table tbody td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cost-table tbody tr:last-child td {
    font-weight: 700;
    background: rgba(110, 87, 178, 0.05);
    font-size: 1rem;
}
.cost-table tbody tr:last-child td:first-child { border-radius: 0 0 0 1rem; }
.cost-table tbody tr:last-child td:last-child { border-radius: 0 0 1rem 0; }

.cost-note {
    font-size: 0.9375rem;
    color: rgba(51, 51, 51, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* ===== Block 6: Pros & Cons ===== */
.proscons-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .proscons-grid { grid-template-columns: 1fr 1fr; } }

.proscons-column {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.proscons-column.pros { border-top: 4px solid var(--secondary); }
.proscons-column.cons { border-top: 4px solid var(--rejection); }

.proscons-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proscons-item {
    margin-bottom: 1.25rem;
}

.proscons-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.proscons-item p {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.7);
    line-height: 1.6;
}

/* ===== Block 7: Trust ===== */
.trust-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}
@media (min-width: 768px) { .trust-facts { grid-template-columns: repeat(4, 1fr); } }

.trust-fact {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.trust-fact-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.trust-fact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.trust-fact-label {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.6);
}

/* ===== Block 8: Process ===== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.process-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--lavender);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.8125rem;
    color: rgba(51, 51, 51, 0.6);
    line-height: 1.5;
}

/* Arrow between steps (desktop only) */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -1.1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.25rem;
        color: var(--primary);
        font-weight: 700;
    }
}

/* ===== Block 9: FAQ ===== */
.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s;
}
.faq-item summary:hover { color: var(--primary); }

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: rgba(51, 51, 51, 0.75);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== Block 10: Final CTA ===== */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), #5b4696);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .final-cta h2 { font-size: 2.5rem; } }

.final-cta .lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
    text-decoration: none;
}
.btn-white-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--primary);
    text-decoration: none;
}

.alt-contacts {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-alt:hover { background: rgba(255, 255, 255, 0.25); color: var(--white); text-decoration: none; }

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .footer-top { flex-direction: row; justify-content: space-between; }
}

.footer-logo { text-align: center; }
@media (min-width: 768px) { .footer-logo { text-align: left; } }

.footer-logo-img {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
}
.footer-nav a:hover { color: var(--white); text-decoration: none; }

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.3s;
}
.footer-link:hover { background: rgba(255, 255, 255, 0.2); color: var(--white); text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--white); }

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
}
@media (min-width: 768px) {
    .cookie-consent { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 24rem; }
}

.cookie-content {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-text { flex: 1; }
.cookie-text h4 { font-weight: 700; margin-bottom: 0.25rem; }
.cookie-text p { font-size: 0.875rem; color: rgba(51, 51, 51, 0.6); margin-bottom: 0.75rem; }

.cookie-buttons { display: flex; gap: 0.75rem; }

.btn-accept {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-accept:hover { background: #5b4696; }

.btn-decline {
    background: none;
    border: none;
    color: rgba(51, 51, 51, 0.6);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
}
.btn-decline:hover { color: var(--dark); }

/* ===== Sticky Mobile CTA ===== */
.sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--white);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }

.sticky-cta a {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
}
.sticky-cta a:hover { color: var(--white); text-decoration: none; }

/* Add bottom padding on mobile so sticky CTA doesn't cover footer */
@media (max-width: 767px) {
    .footer { padding-bottom: 5rem; }
}

/* Footer nav spacing */
.footer-nav {
    margin-bottom: 1.5rem;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Privacy Modal ===== */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    overflow-y: auto;
}

.privacy-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.privacy-close:hover { text-decoration: underline; }

.privacy-content h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: var(--primary);
}

/* ===== Hero with Author Photo ===== */
.hero-with-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-with-photo {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 3rem;
        max-width: 100%;
        text-align: left;
    }
}

.hero-text-block {
    flex: 1;
}

@media (min-width: 768px) {
    .hero-text-block {
        text-align: left;
    }
    .hero-text-block .hero-badge {
        margin-left: 0;
    }
}

.hero-author-photo {
    flex-shrink: 0;
    text-align: center;
}

.hero-author-photo .author-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--white);
}

@media (min-width: 768px) {
    .hero-author-photo .author-photo {
        width: 220px;
        height: 220px;
    }
}

.hero-author-photo .author-caption {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.hero-author-photo .author-caption span {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(51, 51, 51, 0.7);
}

.hero-content-bottom {
    text-align: center;
    margin-top: 1rem;
}

/* ===== Trust Section TIE Card ===== */
.trust-visual {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-tie-card {
    display: inline-block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

.trust-tie-card .tie-image {
    max-width: 280px;
    height: auto;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .trust-tie-card .tie-image {
        max-width: 360px;
    }
}

.trust-tie-card .tie-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.7);
    font-weight: 500;
}

/* ===== Method Card Featured (with image) ===== */
.method-card-featured {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .method-card-featured {
        flex-direction: row;
        align-items: flex-start;
    }
}

.method-card-featured .method-card-content {
    flex: 1;
}

.method-card-featured .method-card-content h3 {
    margin-bottom: 1rem;
}

.method-card-featured .method-card-image {
    flex-shrink: 0;
    text-align: center;
}

.method-card-featured .method-tie-img {
    max-width: 200px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .method-card-featured .method-tie-img {
        max-width: 240px;
    }
}

.method-card-details {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.method-card-details p {
    margin-bottom: 0.75rem;
    color: rgba(51, 51, 51, 0.85);
}

.method-card-details .method-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== Hero Stats Bar ===== */
.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 2rem 3rem;
    }
}

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

.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-stat-value {
        font-size: 2.5rem;
    }
}

.hero-stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.7);
    margin-top: 0.25rem;
}

/* ===== Favorables Grid ===== */
.favorables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .favorables-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.favorable-card {
    position: relative;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.favorable-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.favorables-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
    margin-top: 1rem;
}

/* ===== Testimonials Grid ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.testimonials-more {
    text-align: center;
    margin-top: 1.5rem;
}

.testimonials-more p {
    font-size: 1rem;
    color: rgba(51, 51, 51, 0.8);
}

.testimonials-more a {
    font-weight: 600;
    color: var(--primary);
}

/* ===== Lifestyle Gallery ===== */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

.lifestyle-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.lifestyle-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 767px) {
    .lifestyle-card-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

.lifestyle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--mint) 100%);
    transition: transform 0.3s;
}

.lifestyle-card:hover .lifestyle-placeholder {
    transform: scale(1.05);
}

.lifestyle-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .lifestyle-icon {
        font-size: 4rem;
    }
}

.lifestyle-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .lifestyle-text {
        font-size: 1rem;
    }
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1rem;
}

.lifestyle-overlay p {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.lifestyle-cta {
    text-align: center;
    margin-top: 2rem;
}

.lifestyle-cta p {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* ===== Profession Stats ===== */
.professions-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .professions-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .professions-stats {
        grid-template-columns: repeat(6, 1fr);
    }
}

.profession-stat-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.profession-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.profession-stat-percent {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.profession-stat-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 0.5rem;
}

.profession-stat-desc {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.6);
    margin-top: 0.25rem;
}

.profession-insight {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--mint) 100%);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.profession-insight p {
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .profession-insight p {
        font-size: 1.125rem;
    }
}

/* ===== Trust Contacts ===== */
.trust-contacts {
    text-align: center;
    margin-top: 2rem;
}

.trust-contacts p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-buttons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-soft);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-contact.btn-telegram {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.btn-contact.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* ===== Process CTA ===== */
.process-cta {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
}

.process-cta:hover {
    text-decoration: underline;
}

/* ===== Trust Facts Grid Update ===== */
.trust-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-facts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.trust-facts-grid .trust-fact {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

/* Trust Author Photo */
.trust-author {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-medium);
}

.trust-author-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.trust-author-title {
    font-size: 0.9375rem;
    color: var(--muted);
    margin: 0.25rem 0 0;
}

/* ===== Image Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Clickable images */
.favorable-img,
.testimonial-img,
.method-tie-img,
.tie-image {
    cursor: pointer;
    transition: transform 0.2s;
}

.favorable-img:hover,
.testimonial-img:hover,
.method-tie-img:hover,
.tie-image:hover {
    transform: scale(1.02);
}

/* ===== Method Card Photo & CTA ===== */
.method-card-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
}

.client-photo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px dashed rgba(0,0,0,0.15);
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
    text-align: center;
    padding: 0 0.5rem;
}

.btn-method-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-method-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Method Specs */
.method-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
}

.method-spec {
    display: flex;
    gap: 0.5rem;
}

.spec-label {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .method-specs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ===== Fix Horizontal Scroll ===== */
html, body {
    overflow-x: hidden;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .comparison-table {
        font-size: 0.8125rem;
        min-width: 700px;
    }
    
    .hero-stats-bar {
        flex-wrap: wrap;
    }
    
    .trust-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-card-featured {
        flex-direction: column;
    }
    
    .method-card-photo {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===========================================================
   EN-specific header/footer/legal-page styles
   (RU site uses SSI partials; EN inlines everything)
   =========================================================== */

body { padding-top: 64px; }

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
    color: #2D2D2D;
    font-weight: 700;
    font-size: 1.05rem;
}
.site-logo .logo-mark { font-size: 1.4rem; line-height: 1; }
.site-logo .logo-text { letter-spacing: 0.01em; }
.site-logo-img { height: 32px; width: auto; display: block; }

.site-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
}
@media (min-width: 960px) { .site-nav { display: flex; } }
.site-nav a {
    color: #333;
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color .15s;
}
.site-nav a:hover { color: #6E57B2; }

.header-cta {
    display: none;
    flex-shrink: 0;
    background: #6E57B2;
    color: #fff;
    padding: 0.625rem 1.125rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.header-cta:hover {
    background: #5B4696;
    color: #fff;
    transform: translateY(-1px);
}
@media (min-width: 720px) { .header-cta { display: inline-flex; align-items: center; } }

.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
    color: #333;
    font-size: 1.5rem;
}
@media (min-width: 960px) { .mobile-menu-toggle { display: none; } }
@media (min-width: 720px) { .mobile-menu-toggle { margin-left: 0; } }

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.hidden { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; height: 100%; }
.mobile-menu nav a {
    display: block;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
    font-size: 1.0625rem;
    text-decoration: none;
}
.mobile-menu nav a:active { background: #F4F1FA; color: #6E57B2; }
.mobile-menu nav a[href^="https://wa.me"],
.mobile-menu nav a[href^="mailto:"] {
    margin-top: 0.5rem;
}
.mobile-menu-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    color: #333;
    font-size: 1.4rem;
}

/* Footer extras */
.footer-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.4rem;
}
.footer-brand .logo-mark { margin-right: 0.3rem; }

.footer-legal-en {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    text-align: left;
}
.footer-legal-en p { margin: 0 0 0.5rem; }
.footer-legal-en p:last-child { margin-bottom: 0; }
.footer-legal-en a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }
.footer-legal-en a:hover { color: #fff; }

/* Legal page layout (privacy / cookies / consent) */
.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.25rem 2rem;
}
.legal-page h1 {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #2D2D2D;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.legal-page .legal-revision {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.legal-page .legal-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
}
@media (min-width: 720px) { .legal-page .legal-card { padding: 2.5rem; } }
.legal-page section { margin-bottom: 1.75rem; }
.legal-page section:last-child { margin-bottom: 0; }
.legal-page h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D2D2D;
    margin: 0 0 0.75rem;
    line-height: 1.35;
    scroll-margin-top: 80px;
}
.legal-page h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #2D2D2D;
    margin: 1.25rem 0 0.5rem;
}
.legal-page p {
    color: #3c3c46;
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0 0 0.75rem;
}
.legal-page p:last-child { margin-bottom: 0; }
.legal-page ul, .legal-page ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0 0.75rem;
    color: #3c3c46;
    line-height: 1.7;
    font-size: 0.98rem;
}
.legal-page li { margin-bottom: 0.4rem; }
.legal-page a { color: #6E57B2; text-decoration: underline; }
.legal-page a:hover { color: #5B4696; }
.legal-page strong { color: #2D2D2D; }
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0.75rem 0;
}
.legal-page th, .legal-page td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #ECE8F5;
    text-align: left;
    vertical-align: top;
}
.legal-page thead th {
    background: #F4F1FA;
    font-weight: 700;
    color: #4A3580;
}
.legal-page-back {
    margin-top: 2rem;
    text-align: center;
}
.legal-page-back a {
    display: inline-block;
    background: #6E57B2;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.legal-page-back a:hover {
    background: #5B4696;
    color: #fff;
    transform: translateY(-1px);
}
