/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary: #D5FF40;
    --primary-hover: #D5FF70;
    --bg: #171717;
    --bg-card: #252525;
    --bg-dark: #1A1A2A;
    --graphite: #252525;
    --graphite-light: #2B2C31;
    --text: #ffffff;
    --text-muted: #999999;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-md: 10px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }

.text-primary { color: var(--primary); }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1280px) {
    .container { padding: 0; }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(23, 23, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    font-size: 14px;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.desktop-nav a:hover { opacity: 1; }

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-tg-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.header-tg-btn:hover { opacity: 1; }

.header-tg-btn svg,
.header-tg-btn img {
    width: 20px;
    height: 20px;
}

.header-tg-btn svg { fill: var(--primary); }

.tg-icon-dark {
    filter: brightness(0);
}

.menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .header-tg-btn { display: flex; }
    .menu-btn { display: none; }
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    transition: opacity 0.2s;
}

.mobile-nav a:hover { opacity: 0.7; }

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
    padding: 48px 0 24px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 740px;
    margin: 0 auto;
}

.hero-subtitle {
    margin-top: 16px;
    font-size: 15px;
    opacity: 0.6;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    white-space: pre-line;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--primary);
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: var(--radius);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-primary:hover { opacity: 0.7; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-weight: 400;
    font-size: 16px;
    padding: 12px 24px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.btn-outline:hover { opacity: 1; }

.btn-icon-circle {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-icon-circle svg,
.btn-icon-circle img { width: 18px; height: 18px; }

.btn-icon-circle--dark {
    border: 1.5px solid #000;
}

.btn-icon-circle--dark svg,
.btn-icon-circle--dark img { filter: brightness(0); }

.btn-icon-circle--primary {
    border: 1.5px solid var(--primary);
    opacity: 0.7;
}

.btn-icon-circle--primary:hover { opacity: 1; }

.btn-icon-circle--primary svg { fill: var(--primary); }
.btn-icon-circle--primary img { width: 18px; height: 18px; }

@media (min-width: 768px) {
    .hero { padding: 72px 0 24px; }
    .hero h1 { font-size: 40px; }
}

/* ===== CRYPTO MARQUEE ===== */
.marquee-section {
    overflow: hidden;
    margin: 72px 0 88px;
    height: 72px;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee-scroll 65s linear infinite;
    width: max-content;
    height: 72px;
}

.marquee-item {
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--graphite);
    flex-shrink: 0;
}

.marquee-item img {
    width: 28px;
    height: 28px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADING ===== */
.section-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.accent-title {
    display: inline-block;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 4px 20px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .section-heading { font-size: 32px; }
}

/* ===== CALCULATOR ===== */
.calculator-section {
    padding: 0 0 60px;
    margin-top: -40px;
}

.calc-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 56px;
    margin-bottom: 16px;
}

/* City Selector */
.city-selector {
    position: relative;
    max-width: 200px;
    width: 100%;
}

.city-selector-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    padding-right: 12px;
    color: #000;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.city-selector-btn:hover { opacity: 0.7; }

.city-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.15s;
}

.city-selector-btn.open .city-arrow { transform: rotate(180deg); }

.city-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(213, 255, 64, 0.2);
    z-index: 50;
    padding: 8px 0;
}

.city-dropdown.open { display: block; }

.city-dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.city-dropdown-item:hover {
    background: rgba(213, 255, 64, 0.1);
    color: var(--primary);
}

.city-dropdown-item.active {
    color: var(--primary);
    background: rgba(213, 255, 64, 0.05);
}

/* Calculator Body */
.calc-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calc-currencies-panel {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--graphite);
}

.calc-give-panel,
.calc-get-panel {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-get-panel {
    background: var(--graphite-light);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.calc-panel-title {
    font-size: 20px;
    font-weight: 500;
}

.currency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.currency-pair {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid var(--bg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.currency-pair::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px 10px var(--bg);
    pointer-events: none;
}

.currency-pair.active {
    border-color: var(--primary);
}

.currency-pair img {
    width: 24px;
    height: 24px;
}

.currency-pair-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
}

@media (min-width: 768px) {
    .currency-pair-name { font-size: 16px; }
}

/* Exchange Form Panel */
.calc-form-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: var(--graphite);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 500px;
    width: 100%;
}

.calc-form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-input-group label {
    font-size: 14px;
    opacity: 0.7;
}

.calc-input-group input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--bg);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    color: var(--text);
    font-size: 16px;
    transition: border-color 0.2s;
}

.calc-input-group input::placeholder { color: #555; }
.calc-input-group input:focus { border-color: var(--primary); }

.calc-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-exchange {
    flex: 1;
    background: var(--primary);
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: var(--radius);
    transition: opacity 0.2s;
}

.btn-exchange:hover { opacity: 0.7; }
.btn-exchange:disabled { opacity: 0.7; cursor: default; }

.btn-tg-circle-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    opacity: 0.7;
    font-size: 15px;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-tg-circle-link:hover { opacity: 1; }

.btn-tg-circle-link .btn-icon-circle {
    width: 48px;
    height: 48px;
}

@media (min-width: 640px) {
    .calc-form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .calc-top-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .calc-body {
        flex-direction: row;
    }
    .calc-currencies-panel {
        grid-template-columns: 1fr 1fr;
        flex: 1;
    }
    .calc-form-panel {
        padding: 32px;
    }
    .btn-tg-circle-link .btn-icon-circle {
        width: 40px;
        height: 40px;
    }
}

/* ===== PREMIUM ===== */
.premium-section {
    padding: 128px 0 0;
}

.premium-card {
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 16px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.premium-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.premium-header h2 {
    font-size: 40px;
    font-weight: 500;
}

.premium-header p {
    font-size: 16px;
}

.premium-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--graphite);
    border-radius: var(--radius);
    padding: 20px;
    transition: background 0.2s, color 0.2s;
}

.premium-item:hover {
    background: var(--primary);
}

.premium-item:hover p { color: #000; }

.premium-icon-circle {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    flex-shrink: 0;
}

.premium-icon-circle svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.premium-item p {
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s;
    white-space: pre-line;
}

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

@media (max-width: 767px) {
    .premium-header h2 { font-size: 28px; }
}

/* ===== HOW TO SECTION ===== */
.howto-section {
    padding: 144px 0 0;
    position: relative;
}

.howto-steps {
    display: flex;
    flex-direction: column;
}

.howto-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid var(--primary);
}

.howto-step-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.howto-step-num {
    font-size: 40px;
    font-weight: 400;
    color: var(--text);
}

.howto-step-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.howto-step-desc {
    font-size: 15px;
    opacity: 0.6;
    line-height: 1.5;
    max-width: 488px;
}

@media (min-width: 768px) {
    .howto-step {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .howto-step-title { font-size: 24px; }
}

/* ===== ADVANTAGES ===== */
.advantages-section {
    padding: 144px 0 0;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--graphite);
    border-radius: var(--radius);
    padding: 24px 24px;
    transition: background 0.2s, color 0.2s;
}

.advantage-card:hover { background: var(--primary); }
.advantage-card:hover h4,
.advantage-card:hover p { color: #000; }

.advantage-icon-circle {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    flex-shrink: 0;
}

.advantage-icon-circle svg,
.advantage-icon-circle img {
    width: 22px;
    height: 22px;
}

.advantage-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantage-card h4 {
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
}

.advantage-card p {
    font-size: 15px;
    opacity: 0.6;
    line-height: 1.5;
    transition: color 0.2s;
    white-space: pre-line;
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
    }
    .advantage-card.col-3 { grid-column: span 3; }
    .advantage-card.col-2 { grid-column: span 2; }
    .advantage-card { padding: 32px; }
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 144px 0 0;
}

.reviews-scroll-wrap {
    padding: 0 16px;
}

.reviews-slider {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 24px;
}

.review-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-bubble {
    display: flex;
    flex-direction: column;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 220px;
    border-radius: var(--radius);
    padding: 28px 32px;
    border: 1.5px solid rgba(213, 255, 64, 0.4);
    overflow: hidden;
}

.review-card--active {
    background: var(--primary);
    border-color: var(--primary);
}

.review-card--active .review-text { color: #000; }

.review-card--normal {
    background: transparent;
}

.review-card--normal .review-text {
    color: #fff;
    opacity: 0.6;
}

.review-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg);
    border-radius: 999px;
    padding: 8px 10px;
    width: fit-content;
}

.review-rating-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

.review-rating-badge span {
    font-weight: 700;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.review-angle {
    position: relative;
    bottom: 2px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
}

.review-angle--active {
    border-top: 13px solid var(--primary);
}

.review-angle--normal {
    border-top: 14px solid rgba(213, 255, 64, 0.4);
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-size: 15px;
    font-weight: 500;
}

.review-date {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.6;
}

.reviews-link {
    text-align: center;
    margin-top: 32px;
}

.reviews-link .btn-outline {
    color: var(--primary);
    border-radius: 999px;
    padding: 14px 40px;
    font-size: 15px;
}

@media (min-width: 768px) {
    .reviews-scroll-wrap {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .reviews-scroll-wrap::-webkit-scrollbar { display: none; }
    .reviews-slider {
        flex-direction: row;
        padding-left: 80px;
        padding-right: 80px;
    }
    .review-card-wrap {
        min-width: 300px;
        max-width: 300px;
    }
}

/* ===== OFFICES ===== */
.offices-section {
    padding: 144px 0 0;
}

.offices-map-desktop {
    display: none;
    position: relative;
    height: 504px;
    width: 100%;
    justify-content: center;
    overflow: hidden;
}

.offices-map-img {
    width: 1355px;
    height: 504px;
    max-width: none;
}

.offices-map-dots {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1355px;
    height: 504px;
}

.offices-dot {
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.offices-dot-circle {
    padding: 12px;
}

.offices-dot-circle-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    transition: transform 0.2s;
}

.offices-dot:hover .offices-dot-circle-inner { transform: scale(1.25); }

.offices-dot--active .offices-dot-circle-inner {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 12px var(--primary);
}

.offices-dot-label {
    background: var(--primary);
    color: #000;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.offices-mobile {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.offices-city-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offices-city-card {
    background: var(--graphite);
    border-radius: 8px;
    padding: 24px;
    transition: background 0.2s;
    cursor: pointer;
}

.offices-city-card:hover { background: var(--primary); }
.offices-city-card:hover p { color: #000; }

.offices-city-card p {
    font-size: 20px;
    font-weight: 500;
    transition: color 0.2s;
}

.offices-manager-btn-wrap {
    padding: 0 16px;
    margin-top: 48px;
}

.offices-manager-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: var(--primary);
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: var(--radius);
    transition: opacity 0.2s;
}

.offices-manager-btn:hover { opacity: 0.9; }

.offices-manager-btn .btn-icon-circle {
    width: 30px;
    height: 30px;
    border: 1.5px solid #000;
}

.offices-manager-btn svg,
.offices-manager-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0);
}

@media (min-width: 768px) {
    .offices-map-desktop { display: flex; }
    .offices-mobile { display: none; }
    .offices-manager-btn-wrap { display: none; }
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 60px;
    padding: 0 0 40px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-partners-desktop {
    display: none;
}

.footer-partners-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.footer-partners-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-partners-label {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.footer-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 40px;
    justify-content: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    transition: opacity 0.3s;
    height: 44px;
}

.partner-logo:hover { opacity: 0.7; }

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo--white {
    background: #fff;
    padding: 4px 12px;
}

.partner-logo--black {
    background: #000;
    padding: 2px;
}

.partner-logo--dark {
    background: var(--bg-dark);
    padding: 2px 8px;
}

.footer-center {
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
}

.footer-links a {
    font-size: 15px;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.9; }

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-support-btn {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 16px;
    padding: 8px 24px;
    border-radius: var(--radius);
    opacity: 0.6;
    transition: opacity 0.2s;
    width: 100%;
}

.footer-support-btn:hover { opacity: 1; }

.footer-support-btn .btn-icon-circle {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--primary);
}

.footer-support-btn svg,
.footer-support-btn img {
    width: 18px;
    height: 18px;
}

.footer-support-btn svg { fill: var(--primary); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
}

.footer-contact a {
    color: var(--text);
    transition: opacity 0.2s;
}

.footer-contact a:hover { opacity: 0.8; }

@media (min-width: 768px) {
    .footer-partners-grid { grid-template-columns: repeat(3, auto); }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 72px;
    }
}

@media (min-width: 1024px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-left {
        flex-direction: column;
        gap: 16px;
    }
    .footer-partners-desktop { display: flex; }
    .footer-partners-mobile { display: none; }
    .footer-partners-label { text-align: left; }
    .footer-partners-grid { grid-template-columns: repeat(2, auto); justify-content: start; }
    .footer-right { margin-top: 0; }
    .footer-support-btn { width: fit-content; }
}

/* ===== FEEDBACKS PAGE ===== */
.feedbacks-page {
    padding: 40px 0 80px;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 0;
}

.feedback-card {
    background: var(--graphite);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feedback-author-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.feedback-author-info .date {
    font-size: 14px;
    color: var(--primary);
    margin-top: 6px;
    font-weight: 500;
}

.feedback-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg);
    border-radius: 999px;
    padding: 8px 10px;
    flex-shrink: 0;
    height: 36px;
}

.feedback-rating svg { width: 16px; height: 16px; fill: var(--primary); }
.feedback-rating span { font-size: 14px; font-weight: 700; color: var(--text); }

.feedback-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.load-more-btn {
    display: block;
    margin: 32px auto 0;
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 32px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    transition: opacity 0.2s, background 0.2s;
}

.load-more-btn:hover { background: var(--primary); color: #000; }

@media (min-width: 768px) {
    .feedbacks-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== AML PAGE ===== */
.aml-page {
    padding: 48px 0 64px;
}

.aml-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 24px;
}

.aml-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 32px 64px;
    text-align: justify;
    line-height: 1.6;
    white-space: pre-line;
}

.aml-intro {
    padding-bottom: 32px;
    text-align: justify;
    line-height: 1.6;
    font-size: 16px;
}

.aml-content h2 {
    padding: 16px 0;
    font-size: inherit;
    font-weight: inherit;
    color: var(--text);
}

.aml-content p {
    padding: 8px 0;
    font-size: inherit;
    line-height: 1.6;
    color: var(--text);
}

@media (min-width: 768px) {
    .aml-content {
        padding: 32px 64px 64px;
        font-size: 20px;
        line-height: 2;
    }
    .aml-intro {
        font-size: 20px;
        line-height: 2;
    }
    .aml-content p {
        line-height: 2;
    }
}

/* ===== RULES PAGE ===== */
.legal-page {
    padding: 40px 0 80px;
}

.legal-page h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--graphite);
    border-radius: var(--radius);
    padding: 24px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .legal-page h1 { font-size: 36px; }
    .legal-content { padding: 40px; }
    .legal-content h2 { font-size: 20px; }
    .legal-content p { font-size: 15px; }
}

/* ===== SCROLLBAR ===== */
.city-dropdown::-webkit-scrollbar { width: 6px; }
.city-dropdown::-webkit-scrollbar-track { background: transparent; }
.city-dropdown::-webkit-scrollbar-thumb { background: rgba(213, 255, 64, 0.3); border-radius: 3px; }
