/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --y: #FFC806;
    --y-light: #FFE066;
    --y-dark: #E5A800;
    --black: #000000;
    --dark: #111111;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --white: #FFFFFF;
    --gray: #999999;
    --gray-light: #CCCCCC;
    --green: #34C759;
    --r-s: 14px;
    --r-m: 20px;
    --r-l: 28px;
    --r-xl: 36px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,200,6,0.15); }
    50% { box-shadow: 0 0 40px rgba(255,200,6,0.3); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes successPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkDraw {
    0% { stroke-dashoffset: 50; }
    100% { stroke-dashoffset: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-y {
    background: var(--y);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
}

.btn-y::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-y:hover::before { transform: translateX(100%); }

.btn-y:hover {
    background: var(--y-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,200,6,0.35);
}

.btn-y:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,200,6,0.4);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 17px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 16px;
    transition: all 0.4s var(--ease);
}

.header-wrap {
    max-width: 1200px;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 20px;
    background: rgba(17,17,17,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    border: 1px solid var(--dark-border);
}

.header.scrolled .header-wrap {
    background: rgba(17,17,17,0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 16px;
}

.logo-img {
    height: 28px;
    width: auto;
    border-radius: 6px;
}

.nav {
    display: none;
    gap: 28px;
}

.nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

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

@media (min-width: 768px) {
    .nav { display: flex; }
}

.header-btn { display: none; }

@media (min-width: 768px) {
    .header-btn { display: flex; }
}

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

.burger span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .burger { display: none; }
}

/* Mobile nav */
.mob-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: var(--black);
    display: flex;
    flex-direction: column;
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}

.mob-nav.open { transform: translateX(0); }

.mob-nav a {
    font-size: 32px;
    font-weight: 800;
    padding: 16px 0;
    border-bottom: 1px solid var(--dark-border);
}

.mob-nav .btn { margin-top: auto; width: 100%; }

.mob-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

/* ===== LANGUAGE SWITCH ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gray);
    border-radius: 100px;
    transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
    position: relative;
    z-index: 1;
}

.lang-switch-btn:hover { color: var(--white); }

.lang-switch-btn.active {
    background: var(--y);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(255,200,6,0.35);
}

.lang-switch-btn.active:hover { color: var(--black); }

.lang-switch-mob {
    margin: 24px 0;
    align-self: flex-start;
}

.lang-switch-mob .lang-switch-btn {
    min-width: 48px;
    height: 40px;
    font-size: 14px;
}

/* Hide lang switch on mobile in header (shown in mob-nav instead) */
@media (max-width: 767px) {
    .header-actions .lang-switch { display: none; }
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,200,6,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,200,6,0.1);
    border: 1px solid rgba(255,200,6,0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--y);
    margin-bottom: 28px;
    animation: fadeIn 0.6s ease;
}

.hero-tag-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: glow 2s infinite;
}

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease;
}

.hero h1 .em {
    display: inline;
    background: linear-gradient(135deg, var(--y-dark), var(--y), var(--y-light));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.6;
    animation: fadeUp 0.8s ease 0.15s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    animation: fadeUp 0.8s ease 0.3s both;
}

@media (min-width: 480px) {
    .hero-actions { flex-direction: row; justify-content: center; }
}

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

@media (min-width: 1024px) {
    .hero h1 { font-size: 76px; }
}

/* Hero image band */
.hero-visual {
    margin-top: 56px;
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: var(--r-l) var(--r-l) 0 0;
    animation: scaleUp 1s ease 0.4s both;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--black), transparent);
}

@media (min-width: 768px) {
    .hero-visual { height: 400px; border-radius: var(--r-xl) var(--r-xl) 0 0; }
}

@media (min-width: 1024px) {
    .hero-visual { height: 480px; }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.marquee-sep {
    width: 6px;
    height: 6px;
    background: var(--y);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .marquee { padding: 20px 0; }
    .marquee-item { font-size: 16px; padding: 0 36px; }
}

/* Second marquee row - reverse */
.marquee-reverse { border-top: none; }
.marquee-reverse .marquee-item { color: var(--gray); font-weight: 600; }

/* ===== STATS BAR ===== */
.stats { padding: 48px 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .stats { padding: 64px 0; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-m);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.stat-card:hover {
    border-color: rgba(255,200,6,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.stat-val {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.stat-val .yellow { color: var(--y); }

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

@media (min-width: 768px) {
    .stat-val { font-size: 40px; }
    .stat-card { padding: 32px 20px; }
}

/* ===== SECTION STYLES ===== */
.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--y);
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-title { font-size: 44px; }
}

/* ===== FEATURES BENTO GRID ===== */
.features { padding: 64px 0; }

@media (min-width: 768px) {
    .features { padding: 96px 0; }
}

.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

@media (min-width: 1024px) {
    .bento { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
    .bento-wide { grid-column: span 2; }
}

.bento-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-l);
    padding: 32px 24px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--y), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover {
    border-color: var(--dark-border);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.bento-card:hover::before { opacity: 1; }

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.bento-icon .material-symbols-rounded {
    font-size: 28px;
}

.bento-icon-y { background: rgba(255,200,6,0.12); }
.bento-icon-y .material-symbols-rounded { color: var(--y); }

.bento-icon-g { background: rgba(52,199,89,0.12); }
.bento-icon-g .material-symbols-rounded { color: var(--green); }

.bento-icon-b { background: rgba(107,148,247,0.12); }
.bento-icon-b .material-symbols-rounded { color: #6B94F7; }

.bento-icon-p { background: rgba(191,90,242,0.12); }
.bento-icon-p .material-symbols-rounded { color: #BF5AF2; }

.bento-icon-r { background: rgba(255,69,58,0.12); }
.bento-icon-r .material-symbols-rounded { color: #FF453A; }

.bento-icon-w { background: rgba(255,255,255,0.08); }

.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

/* Wide card special */
.bento-wide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1A1500, #1A1A1A);
    border-color: rgba(255,200,6,0.15);
}

.bento-wide h3 { font-size: 22px; }

.bento-wide .big-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--y);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .bento-wide .big-number { font-size: 80px; }
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 64px 0;
    border-top: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
    .how { padding: 96px 0; }
}

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

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

.step {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-l);
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s var(--ease);
}

.step:hover {
    border-color: rgba(255,200,6,0.2);
    transform: translateY(-4px);
}

.step-num {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, rgba(255,200,6,0.2), rgba(255,200,6,0.02));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

.step-connector {
    display: none;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    z-index: 2;
    color: var(--y);
    font-size: 14px;
    place-items: center;
}

@media (min-width: 768px) {
    .step:not(:last-child) .step-connector { display: grid; }
}

/* ===== INCOME ===== */
.income {
    padding: 64px 0;
    border-top: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
    .income { padding: 96px 0; }
}

.income-hero {
    background: linear-gradient(145deg, #1A1500 0%, var(--dark-card) 100%);
    border: 1px solid rgba(255,200,6,0.15);
    border-radius: var(--r-xl);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.income-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,200,6,0.06) 0%, transparent 60%);
}

@media (min-width: 768px) {
    .income-hero { padding: 64px 40px; }
}

.income-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--y);
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.income-num small {
    font-size: 28px;
    color: var(--white);
}

@media (min-width: 768px) {
    .income-num { font-size: 80px; }
    .income-num small { font-size: 36px; }
}

.income-sub {
    font-size: 16px;
    color: var(--gray);
    margin-top: 8px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.income-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .income-pills { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

.income-pill {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-m);
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.income-pill:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,200,6,0.2);
}

.income-pill-val {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.income-pill-lbl {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 64px 0;
    border-top: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
    .reviews { padding: 96px 0; }
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

.review {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-l);
    padding: 28px 24px;
    transition: all 0.4s var(--ease);
}

.review:hover {
    border-color: rgba(255,200,6,0.2);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--y);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-ava {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-ava img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    font-size: 14px;
}

.review-info {
    font-size: 12px;
    color: var(--gray);
}

/* ===== REQUIREMENTS ===== */
.reqs {
    padding: 64px 0;
    border-top: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
    .reqs { padding: 96px 0; }
}

.reqs-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .reqs-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.reqs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.req {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-m);
    transition: all 0.3s var(--ease);
}

.req:hover {
    border-color: rgba(255,200,6,0.2);
    transform: translateX(4px);
}

.req-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,200,6,0.1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.req-icon .material-symbols-rounded {
    font-size: 20px;
    color: var(--y);
}

.req h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.req p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Sticky CTA box */
.cta-box {
    background: linear-gradient(145deg, #1A1500, var(--dark-card));
    border: 1px solid rgba(255,200,6,0.2);
    border-radius: var(--r-xl);
    padding: 36px 24px;
    text-align: center;
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.cta-box-note {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
    .cta-box { position: sticky; top: 100px; padding: 44px 28px; }
}

/* ===== FORM CARD (shared between popup & inline) ===== */
.form-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-xl);
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,200,6,0.04) 0%, transparent 60%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .form-card { padding: 40px 32px; }
}

.form-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
}

.form-card > p {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
    position: relative;
}

/* ===== POPUP MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 460px;
    position: relative;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.4s var(--ease);
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--dark-border);
    color: var(--gray);
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
}

.modal-close:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.modal-close .material-symbols-rounded {
    font-size: 20px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-s);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-input:focus {
    border-color: rgba(255,200,6,0.5);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(255,200,6,0.08);
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

/* Privacy checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    cursor: pointer;
    position: relative;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--dark-border);
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    position: relative;
    margin-top: 1px;
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--y);
    border-color: var(--y);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(255,200,6,0.2);
}

.form-checkbox-text {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
    user-select: none;
}

.form-checkbox-text a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}

.form-checkbox-text a:hover {
    color: var(--y);
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.success-message.show {
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(52,199,89,0.12);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    animation: successPulse 0.6s ease forwards;
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

.success-icon svg path {
    stroke: var(--green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkDraw 0.5s ease 0.3s forwards;
}

.success-message h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.success-message p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Error message */
.error-message {
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    margin-top: 16px;
    position: relative;
}

.error-message.show {
    opacity: 1;
    transform: scale(1);
}

.error-inner {
    background: rgba(255,69,58,0.08);
    border: 1px solid rgba(255,69,58,0.2);
    border-radius: var(--r-m);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,69,58,0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.error-icon .material-symbols-rounded {
    font-size: 20px;
    color: #FF453A;
}

.error-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: #FF453A;
    margin-bottom: 2px;
}

.error-text p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
}

/* ===== FAQ ===== */
.faq {
    padding: 64px 0;
    border-top: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
    .faq { padding: 96px 0; }
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-m);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active { border-color: rgba(255,200,6,0.3); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-q:hover { color: var(--y); }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: all 0.3s;
}

.faq-item.active .faq-toggle {
    background: var(--y);
    color: var(--black);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-a { max-height: 250px; }

.faq-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta { padding: 64px 0 80px; }

@media (min-width: 768px) {
    .final-cta { padding: 96px 0 120px; }
}

.final-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    padding: 48px 24px;
    background: linear-gradient(160deg, #2A2000, var(--dark-card));
    border: 1px solid rgba(255,200,6,0.15);
}

.final-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,200,6,0.1) 0%, transparent 55%);
    pointer-events: none;
}

.final-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .final-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
}

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

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

.final-text h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.final-text > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.final-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
}

.final-perk .material-symbols-rounded {
    font-size: 20px;
    color: var(--y);
}

.final-note {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.final-form .form-card {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,200,6,0.1);
}

.final-form .form-card h3,
.final-form .form-card > p {
    text-align: center;
}

@media (min-width: 768px) {
    .final-card { padding: 64px 48px; }
    .final-text h2 { font-size: 44px; }
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 32px;
    position: relative;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 800;
    font-size: 16px;
}

.footer-logo .logo-img {
    height: 28px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
}

.footer-logo span { white-space: nowrap; }

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--y);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { width: 16px; }

.footer-contacts {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.footer-contact-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,200,6,0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.35s var(--ease);
}

.footer-contact-icon:hover {
    background: var(--y);
    color: var(--black);
    border-color: var(--y);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255,200,6,0.28);
}

.footer-contact-icon:hover::before { opacity: 1; }
.footer-contact-icon:hover svg { transform: scale(1.1); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom a.footer-privacy {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.footer-bottom a.footer-privacy:hover { color: var(--y); }

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.01em;
}

.income-note {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-m);
}

.income-note-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
}

.income-note-row .material-symbols-rounded {
    font-size: 18px;
    color: var(--y);
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.02em;
    text-align: center;
    padding: 16px 0 0;
    margin-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.footer-credit a {
    color: var(--y);
    opacity: 0.6;
    transition: opacity 0.3s var(--ease);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    opacity: 1;
}

/* ===== STICKY MOBILE BAR ===== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    padding: 12px 16px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--dark-border);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.sticky-bar.show { transform: translateY(0); }
.sticky-bar .btn { width: 100%; }

@media (min-width: 768px) {
    .sticky-bar { display: none; }
}

/* ===== MESSENGER FAB ===== */
.msg-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 97;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.msg-fab.msg-fab-single {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 10px 28px rgba(42,171,238,0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
    flex-direction: row;
    gap: 0;
}

.msg-fab.msg-fab-single::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(42,171,238,0.4);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.msg-fab.msg-fab-single:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 36px rgba(42,171,238,0.55);
}

.msg-fab.msg-fab-single:hover::after {
    opacity: 1;
    transform: scale(1);
}

.msg-fab.msg-fab-single svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.msg-fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--y);
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,200,6,0.4);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
}

.msg-fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255,200,6,0.5);
}

.msg-fab-btn svg {
    width: 26px;
    height: 26px;
    transition: opacity 0.25s, transform 0.3s var(--ease);
    position: absolute;
}

.msg-fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.msg-fab.open .msg-fab-icon-chat {
    opacity: 0;
    transform: rotate(90deg);
}

.msg-fab.open .msg-fab-icon-close {
    opacity: 1;
    transform: rotate(0);
}

.msg-fab-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.msg-fab.open .msg-fab-options {
    pointer-events: auto;
}

.msg-fab-option {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(16px) scale(0.6);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}

.msg-fab.open .msg-fab-option {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.msg-fab.open .msg-fab-option:nth-child(1) { transition-delay: 0.08s; }
.msg-fab.open .msg-fab-option:nth-child(2) { transition-delay: 0s; }

.msg-fab-option svg {
    width: 24px;
    height: 24px;
}

.msg-fab-max,
.msg-fab-tg {
    background: transparent;
    padding: 0;
    overflow: hidden;
}

.msg-fab-max svg,
.msg-fab-tg svg {
    width: 100%;
    height: 100%;
}

.msg-fab-max {
    box-shadow: 0 3px 14px rgba(123,111,208,0.4);
}

.msg-fab-max:hover {
    box-shadow: 0 5px 22px rgba(123,111,208,0.6);
    transform: scale(1.12) !important;
}

.msg-fab-tg {
    box-shadow: 0 3px 14px rgba(42,171,238,0.4);
}

.msg-fab-tg:hover {
    box-shadow: 0 5px 22px rgba(42,171,238,0.6);
    transform: scale(1.12) !important;
}

@media (max-width: 767px) {
    .msg-fab {
        bottom: 16px;
        right: 16px;
    }
    .msg-fab-btn {
        width: 52px;
        height: 52px;
    }
    .msg-fab-option {
        width: 44px;
        height: 44px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-l);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}

.cookie-text {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.5;
    flex: 1;
}

.cookie-text a {
    color: var(--y);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-accept {
    background: var(--y);
    color: var(--black);
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-accept:hover {
    background: var(--y-light);
    transform: translateY(-2px);
}

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