/* ===== AFFILIATE LANDING – szöveges + képes ===== */

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

:root {
    --bg:           #080f1e;
    --surface:      #0d1a2d;
    --card:         #111e33;
    --border:       rgba(6, 182, 212, 0.15);
    --border-hover: rgba(6, 182, 212, 0.45);
    --cyan:         #06b6d4;
    --cyan-dim:     rgba(6, 182, 212, 0.12);
    --blue:         #3b82f6;
    --purple:       #a855f7;
    --green:        #22c55e;
    --orange:       #f97316;
    --text:         #f0f6ff;
    --text-2:       #94a3b8;
    --text-3:       #4b6080;
    --radius:       16px;
    --radius-xl:    24px;
    --header-h:     72px;
    --ease:         0.22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(6,182,212,0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(59,130,246,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--header-h);
    background: rgba(8, 15, 30, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text);
}

.logo span {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--ease);
}
.nav a:hover { color: var(--cyan); }

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 199;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
    display: block;
    padding: 12px 0;
    color: var(--text-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    box-shadow: 0 4px 18px rgba(6,182,212,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6,182,212,0.5);
}
.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--cyan-dim);
    border: 1px solid var(--border);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ===== HERO ===== */
.hero {
    padding: 48px 0 72px;
}

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

.hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--text-2);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-text p strong { color: var(--cyan); }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan);
}

.hero-stat span {
    font-size: 0.75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    min-width: 200px;
}

.hero-float-card .label {
    font-size: 0.72rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.hero-float-card .value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green);
}

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

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--text-2);
    max-width: 580px;
    margin: 0 auto;
}

/* ===== SPLIT ROW (szöveg + kép) ===== */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.split-text p {
    color: var(--text-2);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-2);
}

.check-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.split-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.split-image .caption {
    padding: 12px 16px;
    font-size: 0.8rem;
    color: var(--text-3);
    border-top: 1px solid var(--border);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--ease), transform var(--ease);
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: var(--surface);
}

.product-card-body {
    padding: 20px;
}

.product-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-2);
}

/* ===== BANNER GALLERY ===== */
.banner-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.banner-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--ease);
}

.banner-item:hover { border-color: var(--border-hover); }

.banner-item img {
    width: 100%;
    object-fit: cover;
    background: var(--surface);
}

.banner-item.wide img { aspect-ratio: 1200/628; }
.banner-item.story img { aspect-ratio: 9/16; max-height: 420px; object-fit: cover; }
.banner-item.square img { aspect-ratio: 1; }
.banner-item.leader img { aspect-ratio: 728/90; }
.banner-item.rect img { aspect-ratio: 300/250; }

.banner-info {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.banner-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.banner-info span {
    font-size: 0.75rem;
    color: var(--text-3);
    white-space: nowrap;
}

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    text-align: center;
}

.step-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.82rem;
    color: var(--text-2);
}

/* ===== EARN BOX ===== */
.earn-box {
    background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(59,130,246,0.08));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.earn-visual img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    width: 100%;
}

.earn-calc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--card);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.calc-line.highlight {
    background: rgba(6,182,212,0.12);
    border-color: var(--border-hover);
}

.calc-line strong { color: var(--cyan); }

/* ===== CTA ===== */
.cta {
    padding: 72px 0 96px;
}

.cta-box {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.cta-box > p {
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto 28px;
}

.cta-images {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-images img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-3);
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 28px;
    background: rgba(5,10,20,0.5);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-inner p { color: var(--text-3); font-size: 0.82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--ease);
}
.footer-links a:hover { color: var(--cyan); }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero-grid,
    .split-row,
    .earn-box { grid-template-columns: 1fr; }

    .split-row.reverse { direction: ltr; }

    .hero-float-card {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .product-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .banner-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nav { display: none; }
    .menu-btn { display: block; }
    .product-grid,
    .steps { grid-template-columns: 1fr; }
    .earn-box { padding: 28px 20px; }
    .cta-box { padding: 40px 24px; }
}
