/* =============================================
   IG Singapore - Landing Page Styles
   Theme: #ff4931 | #fff | #000
   ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #ff4931;
    --red-dark: #e03a24;
    --red-light: rgba(255, 73, 49, 0.08);
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f5f5f5;
    --gray-200: #ebebeb;
    --gray-400: #999999;
    --gray-600: #555555;
    --gray-800: #222222;
    --dark: #111111;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
    --transition: 0.22s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- BG HELPERS ---- */
.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--gray-100);
}

.bg-dark {
    background: var(--dark);
    color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: var(--radius);
    border: 2px solid var(--red);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

    .btn-primary:hover {
        background: var(--red-dark);
        border-color: var(--red-dark);
        transform: translateY(-1px);
    }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: var(--radius);
    border: 2px solid var(--red);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

    .btn-outline:hover {
        background: var(--red);
        color: var(--white);
        transform: translateY(-1px);
    }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--black);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: color var(--transition);
}

    .btn-ghost:hover {
        color: var(--red);
    }

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 13px;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

    .btn-white:hover {
        background: transparent;
        color: var(--white);
    }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--red);
    color: var(--white);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    letter-spacing: 0.01em;
}

    .topbar a {
        color: var(--white);
        font-weight: 700;
        text-decoration: underline;
        margin-left: 4px;
    }

        .topbar a:hover {
            opacity: 0.85;
        }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-800);
        padding: 8px 12px;
        border-radius: 6px;
        transition: color var(--transition), background var(--transition);
    }

        .nav-links li a:hover {
            color: var(--red);
            background: var(--red-light);
        }

.chevron {
    font-size: 12px;
    opacity: 0.5;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--black);
    margin-left: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 72px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,73,49,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
}

.hero-tab {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

    .hero-tab.active {
        background: var(--red);
        color: var(--white);
    }

    .hero-tab:hover:not(.active) {
        color: var(--white);
        background: rgba(255,255,255,0.1);
    }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-brand {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-text h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-text sup {
    font-size: 10px;
    vertical-align: super;
}

/* Phone mock */
.hero-phone-mock {
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 240px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 20px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.phone-brand {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
}

.phone-stat {
    margin-bottom: 12px;
}

    .phone-stat .stat-label {
        display: block;
        font-size: 10px;
        color: rgba(255,255,255,0.4);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .phone-stat .stat-value {
        display: block;
        font-size: 22px;
        font-weight: 800;
        color: var(--white);
    }

    .phone-stat .stat-change {
        display: block;
        font-size: 12px;
        font-weight: 600;
    }

.phone-chart {
    height: 70px;
    margin-bottom: 12px;
}

    .phone-chart svg {
        width: 100%;
        height: 100%;
    }

.phone-stocks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stock-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
}

/* Chart mock */
.hero-chart-mock {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.chart-price small {
    font-size: 11px;
    margin-left: 4px;
}

.chart-svg {
    width: 100%;
    height: 100px;
    display: block;
    margin-bottom: 14px;
}

.chart-actions {
    display: flex;
    gap: 8px;
}

/* UP / DOWN colors */
.up {
    color: #22c55e;
}

.down {
    color: #ef4444;
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
    padding: 0;
    height: 40px;
}

.ticker-track {
    display: flex;
    align-items: center;
    height: 40px;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    gap: 0;
}

.tick {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 0 20px;
    border-right: 1px solid var(--gray-200);
    height: 100%;
    color: var(--gray-800);
}

    .tick strong {
        font-weight: 600;
    }

    .tick em {
        font-style: normal;
        font-weight: 600;
        font-size: 11px;
    }

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

    .feature-grid.reverse {
        direction: rtl;
    }

        .feature-grid.reverse > * {
            direction: ltr;
        }

.label-tag {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.feature-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

    .feature-text h2 sup {
        font-size: 12px;
    }

.feature-text p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Bonus card */
.bonus-visual {
    display: flex;
    justify-content: center;
}

.bonus-card {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-width: 260px;
}

    .bonus-card::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        background: radial-gradient(circle, rgba(255,73,49,0.3) 0%, transparent 70%);
    }

.bonus-amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.bonus-coin {
    font-size: 48px;
    margin-top: 16px;
    display: block;
}

/* Interest card */
.interest-visual {
    display: flex;
    justify-content: center;
}

.interest-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 260px;
}

.interest-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.interest-rate {
    font-size: 52px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.interest-desc {
    font-size: 13px;
    color: var(--gray-600);
    margin: 8px 0 20px;
}

.interest-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.interest-fill {
    width: 70%;
    height: 100%;
    background: var(--red);
    border-radius: 3px;
    animation: bar-grow 1.5s ease forwards;
}

@keyframes bar-grow {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

    .steps-section h2 {
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800;
        margin-bottom: 10px;
    }

.section-sub {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 48px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.step-card {
    flex: 1;
    max-width: 280px;
    padding: 24px 20px;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-600);
}

.step-divider {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin-top: 36px;
    flex-shrink: 0;
    align-self: flex-start;
}

.steps-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--gray-100);
    padding: 64px 0;
    text-align: center;
}

.stats-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   CFD SECTION
   ============================================ */
.cfd-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.cfd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cfd-text h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.cfd-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cfd-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cfd-section .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

    .cfd-section .btn-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
    }

/* Platform mock */
.platform-mock {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.pm-topbar {
    background: #252525;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

    .pm-dot.red {
        background: #ff5f57;
    }

    .pm-dot.yellow {
        background: #ffbd2e;
    }

    .pm-dot.green {
        background: #28c840;
    }

.pm-title {
    margin-left: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.pm-body {
    display: flex;
}

.pm-sidebar {
    width: 90px;
    background: #161616;
    padding: 12px 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.pm-nav-item {
    padding: 8px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}

    .pm-nav-item.active,
    .pm-nav-item:hover {
        color: var(--white);
        background: rgba(255,73,49,0.15);
        border-left: 2px solid var(--red);
    }

.pm-content {
    flex: 1;
    padding: 14px;
}

.pm-chart {
    height: 80px;
    margin-bottom: 10px;
}

    .pm-chart svg {
        width: 100%;
        height: 100%;
    }

.pm-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 3px 0;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section {
    padding: 60px 0;
    background: var(--white);
}

.banner-card {
    background: var(--black);
    border-radius: 20px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

    .banner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,73,49,0.2) 0%, transparent 60%);
        pointer-events: none;
    }

.banner-text {
    position: relative;
    z-index: 1;
}

    .banner-text h2 {
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
    }

.banner-bonus {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}

.banner-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 28px;
}

.banner-chess {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.chess-pieces {
    display: flex;
    gap: 8px;
    font-size: 72px;
    color: rgba(255,255,255,0.15);
    filter: drop-shadow(0 4px 12px rgba(255,73,49,0.3));
}

.piece {
    transition: transform var(--transition);
}

    .piece:hover {
        transform: translateY(-8px);
    }

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.platforms-section {
    padding: 80px 0;
}

    .platforms-section h2 {
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800;
        text-align: center;
        margin-bottom: 48px;
    }

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.platform-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

    .platform-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--red);
        transform: translateY(-4px);
    }

.platform-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.platform-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.link-arrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: opacity var(--transition);
}

    .link-arrow:hover {
        opacity: 0.75;
    }

/* ============================================
   LEVELS SECTION
   ============================================ */
.levels-section {
    padding: 80px 0;
}

    .levels-section h2 {
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800;
        text-align: center;
        margin-bottom: 28px;
    }

.levels-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gray-200);
}

.level-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 10px 24px;
    cursor: pointer;
    margin-bottom: -2px;
    transition: all var(--transition);
}

    .level-tab.active {
        color: var(--red);
        border-bottom-color: var(--red);
    }

    .level-tab:hover:not(.active) {
        color: var(--black);
    }

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.level-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 28px 24px;
    transition: box-shadow var(--transition), border-color var(--transition);
}

    .level-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--red);
    }

.level-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.level-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.level-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   PRICES SECTION
   ============================================ */
.prices-section {
    padding: 80px 0;
}

    .prices-section h2 {
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800;
        margin-bottom: 28px;
    }

.prices-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 28px;
}

.price-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: -2px;
    transition: all var(--transition);
}

    .price-tab.active {
        color: var(--red);
        border-bottom-color: var(--red);
    }

    .price-tab:hover:not(.active) {
        color: var(--black);
    }

.prices-table {
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.price-table-head,
.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 12px 20px;
    font-size: 13px;
}

.price-table-head {
    background: var(--gray-100);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
}

.price-row {
    border-top: 1px solid var(--gray-200);
    transition: background var(--transition);
}

    .price-row:hover {
        background: var(--red-light);
    }

    .price-row span:not(:first-child) {
        font-weight: 600;
    }

.price-disclaimer {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: 80px 0;
}

    .news-section h2 {
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 40px;
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

    .news-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(255,73,49,0.2);
        border-color: rgba(255,73,49,0.3);
    }

.news-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
/* Gradient placeholder images */
.news-img-1 {
    background: linear-gradient(135deg, #1a3a2a 0%, #0d2d1a 100%);
}

.news-img-2 {
    background: linear-gradient(135deg, #1a1a3a 0%, #0d0d2a 100%);
}

.news-img-3 {
    background: linear-gradient(135deg, #2a1a1a 0%, #1a0d0d 100%);
}

.news-img-4 {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1a2a 100%);
}

.news-img-5 {
    background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0d 100%);
}

.news-img-6 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0d 100%);
}

.news-body {
    padding: 18px 16px;
}

.news-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--red);
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 10px;
}

.news-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul li a {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        transition: color var(--transition);
    }

        .footer-col ul li a:hover {
            color: var(--red);
        }

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all var(--transition);
}

    .social-icon:hover {
        background: var(--red);
        color: var(--white);
    }

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition);
}

    .app-badge:hover {
        background: rgba(255,73,49,0.15);
        border-color: var(--red);
        color: var(--white);
    }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-disclaimers p {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 1.65;
    margin-bottom: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   MOBILE MENU DRAWER
   ============================================ */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--red);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 99;
    padding: 16px 24px 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

.mobile-nav-links {
    list-style: none;
    margin-bottom: 20px;
}

    .mobile-nav-links li {
        border-bottom: 1px solid var(--gray-200);
    }

        .mobile-nav-links li a {
            display: block;
            padding: 14px 4px;
            font-size: 15px;
            font-weight: 600;
            color: var(--black);
            transition: color var(--transition);
        }

            .mobile-nav-links li a:hover {
                color: var(--red);
            }

.mobile-nav-actions {
    display: flex;
    gap: 10px;
}

    .mobile-nav-actions .btn-ghost {
        flex: 1;
        text-align: center;
        border: 2px solid var(--gray-200);
        border-radius: var(--radius);
        padding: 11px;
        font-weight: 600;
    }

    .mobile-nav-actions .btn-primary {
        flex: 1;
        text-align: center;
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
    }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .hero-content,
    .feature-grid,
    .cfd-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

        .feature-grid.reverse {
            direction: ltr;
        }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .platforms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .levels-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .chess-pieces {
        justify-content: center;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-divider {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 600px) {
    .hero {
        padding: 40px 0 48px;
    }

    .hero-tabs {
        margin-bottom: 28px;
    }

    .hero-visual {
        display: none;
    }

    .feature-section {
        padding: 52px 0;
    }

    .steps-section {
        padding: 52px 0;
    }

    .stats-section {
        padding: 44px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cfd-section {
        padding: 52px 0;
    }

    .platforms-section {
        padding: 52px 0;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .levels-section {
        padding: 52px 0;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .prices-section {
        padding: 52px 0;
    }

    .price-table-head,
    .price-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

        .price-table-head span:nth-child(3),
        .price-row span:nth-child(3) {
            display: none;
        }

    .news-section {
        padding: 52px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 44px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .banner-card {
        padding: 32px 20px;
    }

    .banner-text h2 {
        font-size: 18px;
    }

    .banner-bonus {
        font-size: 48px;
    }

    .chess-pieces {
        font-size: 48px;
    }
}
