/* ============================================ */
/* ===== LANDING.CSS — ПОЛНЫЙ ФАЙЛ ===== */
/* ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: #0A0B0E;
    color: #E8EDF2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.text-green { color: #00D973; }
.text-gray { color: #8892A0; }
.text-muted { color: #556070; }
.text-gold { color: #FFD700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}
.btn-primary {
    background: #00D973;
    color: #0A0B0E;
    box-shadow: 0 0 30px rgba(0, 217, 115, 0.1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 217, 115, 0.25);
}
.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: #E8EDF2;
}
.btn-secondary:hover {
    border-color: #00D973;
    color: #00D973;
    background: rgba(0, 217, 115, 0.04);
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-outline { background: transparent; border: 1.5px solid #00D973; color: #00D973; }
.btn-outline:hover { background: rgba(0, 217, 115, 0.04); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-large { padding: 16px 48px; font-size: 18px; }

.card {
    background: #13161C;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.card:hover { border-color: rgba(0, 217, 115, 0.08); }

.landing-header {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,11,14,0.92);
    backdrop-filter: blur(20px);
}
.landing-header .logo {
    font-size: 22px;
    font-weight: 700;
    color: #00D973;
}
.landing-header .logo span {
    color: #E8EDF2;
    font-weight: 300;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #E8EDF2;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
.menu-overlay.show {
    display: block;
}

.landing-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}
.landing-nav a {
    color: #8892A0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}
.landing-nav a:hover {
    color: #E8EDF2;
}

.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 20% 20%, rgba(0,217,115,0.04), #0A0B0E 60%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,217,115,0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content {
    max-width: 620px;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    background: rgba(0,217,115,0.06);
    border: 1px solid rgba(0,217,115,0.08);
    color: #00D973;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, #00D973, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.15rem;
    color: #8892A0;
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero p strong {
    color: #00D973;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-sub {
    font-size: 14px;
    color: #556070;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-sub .dot {
    width: 4px;
    height: 4px;
    background: #556070;
    border-radius: 50%;
}
.hero-sub strong {
    color: #E8EDF2;
}

.trust-bar {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    background: rgba(10,11,14,0.5);
}
.trust-bar .items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-bar .item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #556070;
    font-size: 13px;
}
.trust-bar .item .icon {
    font-size: 20px;
}
.trust-bar .item strong {
    color: #E8EDF2;
}

/* ================================================================ */
/* ===== CYCLES STATS ===== */
/* ================================================================ */

.cycles-stats-section {
    padding: 60px 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0,217,115,0.015), transparent 70%);
}

.cycles-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cycle-card {
    background: #13161C;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: 0.3s;
}

.cycle-card:hover {
    border-color: rgba(0,217,115,0.08);
    transform: translateY(-4px);
}

.cycle-card.current {
    border-color: rgba(0,217,115,0.08);
}

.cycle-card.next {
    border-color: rgba(255,215,0,0.08);
}

.cycle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cycle-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
}

.cycle-badge.current {
    background: rgba(0,217,115,0.08);
    color: #00D973;
}

.cycle-badge.next {
    background: rgba(255,215,0,0.08);
    color: #FFD700;
}

.cycle-status {
    font-size: 13px;
    color: #00D973;
}

.cycle-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #E8EDF2;
}

.cycle-dates {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #556070;
    margin-bottom: 16px;
}

.cycle-dates strong {
    color: #8892A0;
}

.cycle-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-item {
    background: #0A0B0E;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.02);
}

.stat-item.highlight {
    border-color: rgba(0,217,115,0.06);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: #556070;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #E8EDF2;
    margin-top: 2px;
}

.stat-value.gold {
    color: #FFD700;
}

.stat-value.green {
    color: #00D973;
}

.stat-value.orange {
    color: #FFA502;
}

.stat-value.red {
    color: #FF4757;
}

.cycle-progress {
    margin-bottom: 16px;
}

.progress-bar {
    height: 6px;
    background: #2A2F3A;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.cycle-card.current .progress-fill {
    background: linear-gradient(90deg, #00D973, #00ff88);
}

.cycle-card.next .progress-fill {
    background: linear-gradient(90deg, #FFD700, #FFA502);
}

.progress-label {
    text-align: right;
    font-size: 11px;
    color: #556070;
    margin-top: 4px;
}

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

.cycle-cta .btn {
    width: 100%;
}

.pool-stats-section {
    padding: 60px 0 40px;
    background: radial-gradient(ellipse at 30% 20%, rgba(0,217,115,0.015), transparent 70%);
}

.pool-stats-header {
    text-align: center;
    margin-bottom: 40px;
}
.pool-stats-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
}
.pool-stats-header .subtitle {
    color: #556070;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.8;
}

.pool-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stats-card {
    background: #13161C;
    padding: 20px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    transition: 0.3s;
}
.stats-card:hover {
    border-color: rgba(0,217,115,0.08);
    transform: translateY(-4px);
}
.stats-card.highlight {
    border-color: rgba(0,217,115,0.08);
    background: rgba(0,217,115,0.02);
}

.stats-icon {
    font-size: 24px;
    margin-bottom: 4px;
}
.stats-number {
    font-size: 28px;
    font-weight: 700;
    color: #E8EDF2;
}
.stats-number.green { color: #00D973; }
.stats-number.gold { color: #FFD700; }
.stats-label {
    font-size: 13px;
    color: #8892A0;
    font-weight: 500;
    margin-top: 2px;
}
.stats-sub {
    font-size: 11px;
    color: #556070;
    margin-top: 2px;
}

.pool-stats-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: #13161C;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: #556070;
    flex-wrap: wrap;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00D973;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.pool-stats-footer .divider {
    color: #2A2F3A;
}

.deposit-status-bar {
    text-align: center;
    padding: 12px 20px;
    margin-top: 12px;
    background: rgba(0, 217, 115, 0.02);
    border: 1px solid rgba(0, 217, 115, 0.04);
    border-radius: 12px;
    font-size: 14px;
    color: #8892A0;
}
.deposit-status-bar .open {
    color: #00D973;
}
.deposit-status-bar .closed {
    color: #FFA502;
}

.stats-note {
    text-align: center;
    font-size: 11px;
    color: #445060;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    display: inline-block;
}

.how-it-works-simple {
    padding: 60px 0;
}
.how-it-works-simple h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.how-it-works-simple .subtitle {
    text-align: center;
    color: #556070;
    max-width: 650px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.step-card {
    background: #13161C;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    transition: 0.3s;
}
.step-card:hover {
    border-color: rgba(0,217,115,0.08);
    transform: translateY(-4px);
}
.step-number {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,217,115,0.06);
    color: #00D973;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.step-icon {
    font-size: 36px;
    margin-bottom: 8px;
}
.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.step-card p {
    color: #8892A0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.step-card p strong {
    color: #00D973;
}
.step-arrow {
    font-size: 28px;
    color: #00D973;
    opacity: 0.3;
    flex-shrink: 0;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}
.steps-note {
    margin-top: 12px;
    font-size: 14px;
    color: #556070;
}

.calculator-section {
    padding: 60px 0;
    background: rgba(0, 217, 115, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}
.calculator-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
}
.calculator-header .subtitle {
    color: #556070;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.8;
}

.calculator-box {
    background: #13161C;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #8892A0;
    margin-bottom: 8px;
}

.input-with-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: #0A0B0E;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.input-with-controls .input-btn {
    background: #1A1F28;
    border: none;
    color: #E8EDF2;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.3s;
    min-width: 44px;
    font-family: inherit;
}
.input-with-controls .input-btn:hover {
    background: #2A2F3A;
    color: #00D973;
}

.input-with-controls input {
    flex: 1;
    background: transparent;
    border: none;
    color: #E8EDF2;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 10px 8px;
    outline: none;
    font-family: inherit;
    min-width: 80px;
}
.input-with-controls input::-webkit-inner-spin-button,
.input-with-controls input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.input-with-controls input[type=number] {
    -moz-appearance: textfield;
}

.input-range {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 12px;
    color: #556070;
}
.input-range input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #2A2F3A;
    border-radius: 2px;
    outline: none;
}
.input-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00D973;
    cursor: pointer;
    transition: 0.3s;
}
.input-range input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.input-range input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00D973;
    cursor: pointer;
    border: none;
}

.preset-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.preset-btn {
    padding: 4px 14px;
    background: #1A1F28;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    color: #8892A0;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}
.preset-btn:hover {
    border-color: #00D973;
    color: #00D973;
    background: rgba(0, 217, 115, 0.04);
}
.preset-btn.active {
    border-color: #00D973;
    color: #00D973;
    background: rgba(0, 217, 115, 0.08);
}

.cycle-info {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 12px;
    color: #556070;
}
.cycle-info #cycleTimeLabel {
    color: #8892A0;
}

.return-range-display {
    display: flex;
    align-items: center;
    gap: 12px;
}
.return-range-display span {
    font-size: 14px;
    font-weight: 600;
    color: #8892A0;
    min-width: 40px;
}
.return-bar {
    flex: 1;
    height: 6px;
    background: #2A2F3A;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.return-bar .return-fill {
    height: 100%;
    background: linear-gradient(90deg, #00D973, #FFD700);
    border-radius: 3px;
    width: 40%;
    transition: width 0.5s ease;
}
.return-note {
    font-size: 12px;
    color: #445060;
    margin-top: 4px;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-main {
    background: rgba(0, 217, 115, 0.02);
    border: 1px solid rgba(0, 217, 115, 0.06);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
.result-amount .result-label {
    display: block;
    font-size: 13px;
    color: #556070;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-amount .result-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00D973;
    margin: 4px 0;
}
.result-amount .result-sub {
    font-size: 13px;
    color: #556070;
}

.result-breakdown {
    background: #0A0B0E;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.breakdown-item:last-child {
    border-bottom: none;
}
.breakdown-item.fee {
    color: #556070;
}
.breakdown-item.total {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 8px;
    margin-top: 4px;
    font-weight: 600;
}
.breakdown-item.final {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 8px;
    margin-top: 4px;
    font-weight: 700;
    font-size: 16px;
}
.breakdown-label {
    color: #8892A0;
}
.breakdown-value {
    font-weight: 600;
}
.breakdown-value.green { color: #00D973; }
.breakdown-value.orange { color: #FFA500; }
.breakdown-value.gold { color: #FFD700; }

.result-cta {
    margin-top: 4px;
}
.result-cta .btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 18px;
}
.result-disclaimer {
    margin-top: 10px;
    font-size: 11px;
    color: #445060;
    text-align: center;
    line-height: 1.6;
}

.features {
    padding: 80px 0;
}
.features h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.features .subtitle {
    text-align: center;
    color: #556070;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.feature-card {
    background: #13161C;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: left;
    transition: 0.3s;
}
.feature-card:hover {
    border-color: rgba(0,217,115,0.08);
    transform: translateY(-4px);
}
.feature-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.feature-card p {
    color: #8892A0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.feature-card .tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    padding: 2px 12px;
    border-radius: 12px;
    background: rgba(0,217,115,0.06);
    color: #00D973;
}

.strategy-section {
    padding: 80px 0;
    background: rgba(0,217,115,0.015);
}
.strategy-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.strategy-section .subtitle {
    text-align: center;
    color: #556070;
    max-width: 650px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.strategy-step {
    background: #13161C;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    transition: 0.3s;
}
.strategy-step:hover {
    border-color: rgba(0,217,115,0.08);
    transform: translateY(-4px);
}
.strategy-step .number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,217,115,0.06);
    color: #00D973;
    font-size: 18px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.strategy-step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.strategy-step p {
    color: #8892A0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.usa-section {
    padding: 80px 0;
}
.usa-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.usa-section .subtitle {
    text-align: center;
    color: #556070;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.usa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.usa-item {
    background: #13161C;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    transition: 0.3s;
}
.usa-item:hover {
    border-color: rgba(0,217,115,0.08);
}
.usa-item .icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.usa-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
}
.usa-item p {
    color: #8892A0;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.usa-item .badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 10px;
    padding: 2px 12px;
    border-radius: 12px;
    background: rgba(0,217,115,0.06);
    color: #00D973;
}

.partners-section {
    padding: 60px 0;
    background: rgba(0,217,115,0.015);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.partners-section .label {
    text-align: center;
    color: #556070;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partner-item {
    color: #556070;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.6;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
}
.partner-item:hover {
    opacity: 1;
    color: #00D973;
    text-decoration: underline;
}

.how-it-works {
    padding: 80px 0;
}
.how-it-works h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.how-it-works .subtitle {
    text-align: center;
    color: #556070;
    max-width: 650px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.scheme {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background: #13161C;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    flex-wrap: wrap;
}
.scheme-item {
    text-align: center;
    padding: 16px 20px;
    min-width: 100px;
}
.scheme-item .icon {
    font-size: 36px;
    margin-bottom: 6px;
}
.scheme-item .label {
    font-size: 13px;
    color: #8892A0;
}
.scheme-arrow {
    font-size: 24px;
    color: #00D973;
    opacity: 0.5;
}

.team-section {
    padding: 80px 0;
}
.team-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.team-section .subtitle {
    text-align: center;
    color: #556070;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: #13161C;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    transition: 0.3s;
}
.team-card:hover {
    border-color: rgba(0,217,115,0.08);
}
.team-card .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D973, #00ff88);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #0A0B0E;
}
.team-card h4 {
    font-size: 16px;
    margin-bottom: 2px;
}
.team-card .role {
    font-size: 13px;
    color: #556070;
}
.team-card .bio {
    font-size: 13px;
    color: #8892A0;
    margin-top: 8px;
    line-height: 1.6;
}

.transparency {
    padding: 80px 0;
}
.transparency h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
}
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.transparency-item {
    background: #13161C;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.transparency-item .number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #00D973;
}
.transparency-item .number.orange { color: #FFA500; }
.transparency-item .label {
    font-size: 14px;
    color: #556070;
    margin-top: 4px;
}
.transparency-item .sub {
    font-size: 12px;
    color: #445060;
    margin-top: 4px;
}

.security-badge-section {
    padding: 30px 0;
    background: rgba(0,217,115,0.015);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.security-badge-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.security-badge-section .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #8892A0;
}
.security-badge-section .badge-item .icon {
    font-size: 22px;
}
.security-badge-section .badge-item strong {
    color: #E8EDF2;
}
.security-badge-section .badge-item .lock-icon {
    color: #00D973;
}

.comparison-section {
    padding: 60px 0;
    background: rgba(0, 217, 115, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}
.comparison-header h2 {
    font-size: 2rem;
    font-weight: 600;
}
.comparison-header .subtitle {
    color: #556070;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.8;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.comparison-card {
    background: #13161C;
    padding: 28px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    min-width: 240px;
    flex: 1;
    max-width: 340px;
    transition: 0.3s;
}
.comparison-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 115, 0.08);
}
.comparison-card.bank {
    border-color: rgba(255, 255, 255, 0.04);
}
.comparison-card.apex {
    border-color: rgba(0, 217, 115, 0.08);
    background: rgba(0, 217, 115, 0.02);
}
.comparison-icon { font-size: 36px; margin-bottom: 8px; }
.comparison-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #E8EDF2;
    margin-bottom: 4px;
}
.comparison-rate {
    font-size: 32px;
    font-weight: 700;
    color: #8892A0;
}
.comparison-rate.green { color: #00D973; }
.comparison-period {
    font-size: 13px;
    color: #556070;
    margin-bottom: 12px;
}
.comparison-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    flex-wrap: wrap;
}
.comparison-example .amount { color: #E8EDF2; font-weight: 500; }
.comparison-example .arrow { color: #556070; }
.comparison-example .result.gray { color: #556070; }
.comparison-example .result.green { color: #00D973; font-weight: 700; }
.comparison-example .after {
    display: block;
    font-size: 11px;
    color: #445060;
    width: 100%;
}
.comparison-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    text-align: left;
    font-size: 13px;
    color: #8892A0;
}
.comparison-features li {
    padding: 2px 0;
}

.comparison-arrow-big {
    font-size: 32px;
    color: #00D973;
    opacity: 0.5;
}

.comparison-cta {
    text-align: center;
    margin-top: 30px;
}
.comparison-note {
    font-size: 13px;
    color: #556070;
    margin-top: 8px;
}

.testimonials-section {
    padding: 80px 0;
    background: rgba(0,217,115,0.015);
}
.testimonials-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.testimonials-section .subtitle {
    text-align: center;
    color: #556070;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #13161C;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(0,217,115,0.08);
}
.testimonial-card .stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial-card .text {
    color: #8892A0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author .avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A1F28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #00D973;
    font-size: 14px;
}
.testimonial-card .author .info strong {
    display: block;
    font-size: 14px;
    color: #E8EDF2;
}
.testimonial-card .author .info span {
    font-size: 12px;
    color: #556070;
}
.testimonials-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 14px;
    color: #556070;
}
.testimonials-footer a {
    color: #00D973;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}
.testimonials-footer a:hover {
    text-decoration: underline;
    color: #00ff88;
}
.testimonials-footer .dot {
    color: #445060;
    margin: 0 8px;
}

.faq-section {
    padding: 80px 0;
}
.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
}
.faq-item {
    background: #13161C;
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 12px;
}
.faq-item .question {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-item .question:hover {
    color: #00D973;
}
.faq-item .answer {
    color: #8892A0;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
    display: none;
}
.faq-item .answer.show {
    display: block;
}
.faq-item .toggle {
    color: #556070;
    transition: 0.3s;
    font-size: 14px;
}
.faq-item .toggle.open {
    transform: rotate(180deg);
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(0,217,115,0.02);
    border-radius: 16px;
    border: 1px solid rgba(0,217,115,0.04);
    margin: 40px 0;
}
.cta-section h2 {
    color: #00D973;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-section p {
    color: #556070;
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.cta-section .disclaimer-small {
    font-size: 12px;
    color: #445060;
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.03);
    background: #0D0E12;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #E8EDF2;
    margin-bottom: 12px;
}
.footer-col p, .footer-col a {
    font-size: 14px;
    color: #556070;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}
.footer-col a:hover {
    color: #00D973;
}
.footer-col .offices p {
    font-size: 13px;
    color: #556070;
    line-height: 1.6;
    margin-bottom: 4px;
}
.footer-col .offices .city {
    color: #8892A0;
    font-weight: 600;
    margin-top: 8px;
}
.footer-col .private-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 16px;
    border-radius: 20px;
    background: rgba(0,217,115,0.06);
    border: 1px solid rgba(0,217,115,0.08);
    color: #00D973;
    font-size: 12px;
    font-weight: 600;
}

.footer-security {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}
.footer-security .sec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #556070;
    background: rgba(0,217,115,0.03);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0,217,115,0.04);
}
.footer-security .sec-item .icon {
    font-size: 16px;
}
.footer-security .sec-item strong {
    color: #8892A0;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 12px;
    color: #556070;
}
.footer-bottom .disclaimer {
    font-size: 11px;
    color: #445060;
    max-width: 600px;
    line-height: 1.6;
}
.footer-bottom .disclaimer .reg-text {
    font-size: 10px;
    color: #556070;
    display: block;
    margin-top: 4px;
}
.footer-bottom .reg-badge {
    font-size: 11px;
    color: #445060;
    padding: 4px 14px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .pool-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .strategy-grid { grid-template-columns: 1fr 1fr; }
    .usa-grid { grid-template-columns: 1fr 1fr; }
    .transparency-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .burger-btn { display: flex; }
    .landing-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0D0E12;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.3s ease;
        padding: 40px 20px;
        border-left: 1px solid rgba(255,255,255,0.04);
        z-index: 1000;
    }
    .landing-nav.open { right: 0; }
    .landing-nav a { font-size: 18px; padding: 8px 0; }
    .landing-nav .btn { width: 100%; text-align: center; justify-content: center; }
    .hero { padding: 110px 0 40px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .pool-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .step-card { max-width: 100%; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .strategy-grid { grid-template-columns: 1fr; }
    .usa-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .trust-bar .items { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .scheme { flex-direction: column; gap: 12px; }
    .scheme-arrow { transform: rotate(90deg); }
    .transparency-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 40px 20px; }
    .partners-grid { gap: 24px; }
    .partner-item { font-size: 14px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .calculator-grid { grid-template-columns: 1fr; gap: 24px; }
    .calculator-box { padding: 20px; }
    .result-amount .result-value { font-size: 2.4rem; }
    .preset-amounts { gap: 4px; }
    .preset-btn { font-size: 11px; padding: 3px 10px; }
    .security-badge-section .container { gap: 16px; }
    .security-badge-section .badge-item { font-size: 12px; }
    .comparison-grid { flex-direction: column; }
    .comparison-arrow-big { transform: rotate(90deg); }
    .comparison-card { max-width: 100%; width: 100%; }
    /* Cycles stats адаптивность */
    .cycles-stats-grid { grid-template-columns: 1fr; }
    .cycle-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .pool-stats-grid { grid-template-columns: 1fr; }
    .stats-number { font-size: 22px; }
    .transparency-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .team-grid { grid-template-columns: 1fr; }
    .calculator-box { padding: 16px; }
    .input-with-controls input { font-size: 16px; }
    .result-amount .result-value { font-size: 2rem; }
    .breakdown-item { font-size: 13px; }
    .footer-security { flex-direction: column; align-items: flex-start; }
    .cycle-stats { grid-template-columns: 1fr; }
    .cycle-dates { flex-direction: column; gap: 4px; }
}

/* ================================================================ */
/* ===== TRUST BADGES ===== */
/* ================================================================ */

.trust-badges-section {
    padding: 40px 0;
    background: rgba(0, 217, 115, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-badge {
    text-align: center;
    background: #13161C;
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}

.trust-badge:hover {
    border-color: rgba(0, 217, 115, 0.08);
    transform: translateY(-2px);
}

.trust-badge-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.trust-badge-title {
    font-size: 16px;
    font-weight: 600;
    color: #E8EDF2;
    margin-bottom: 4px;
}

.trust-badge-desc {
    font-size: 13px;
    color: #556070;
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
}
