:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --soft: #f6f7f9;
    --text: #0f0f0f;
    --heading: #0a1e42;
    --muted: #4a5565;
    --line: #dde5f0;
    --accent: #cc1d14;
    --accent-dark: #b6140d;
    --gold: #d4af37;
    --success: #00ff22;
    --dark: #131313;
    --dark-card: #252525;
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 24px;
}

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

html,
body {
    font-family: "Inter", Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

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

/* ── NAVBAR ── */
.navbar {
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid #f3f4f6;
    box-shadow:
        0 1px 3px #0000001a,
        0 1px 2px -1px #0000001a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.brand-logo {
    width: 34px;
    height: 33px;
    /* background: #cb1d14; */
    border-radius: 8px;
    flex-shrink: 0;
}

.brand-name {
    font-weight: 700;
    font-size: 20px;
    color: #cb1d14;
    letter-spacing: -0.45px;
    line-height: 28px;
    white-space: nowrap;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.navbar-links a {
    font-size: 14px;
    font-weight: 500;
    color: #0a1e42;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #cb1d14;
}

.navbar-right {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-kayit {
    background: linear-gradient(90deg, #E30A17 0%, #E12618 7.14%, #DF3618 14.29%, #DD4219 21.43%, #DA4D19 28.57%, #D8561A 35.71%, #D55E1A 42.86%, #D2661B 50%, #CF6D1C 57.14%, #CC741C 64.29%, #C87B1D 71.43%, #C5821D 78.57%, #C1881E 85.71%, #BC8E1E 92.86%, #B8941F 100%);
    box-shadow: 0px 2px 4px -2px #0000001A;

    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-kayit:hover {
    background: #b01a12;
}

.navbar-menu-btn {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.navbar-menu-btn span {
    display: block;
    height: 2px;
    background: #0a1e42;
    border-radius: 2px;
    width: 100%;
}

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

    .navbar-right {
        display: flex;
    }

    .navbar-menu-btn {
        display: none;
    }
}

/* ── HERO NOTIFICATION FLOATING ── */
.hero-notif-floating {
    position: absolute;
    top: 100px;
    left: 110px;
    z-index: 50;
    width: 200px;
    pointer-events: none;
    overflow: hidden;
    border: 1px solid #d4af374c;
    border-radius: 12px;
    box-shadow:
        0 6px 18px -4px #0000002a,
        0 12px 28px -6px #0000001a;
}

.hero-notif-slider {
    display: flex;
    flex-direction: row;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-notif-slide {
    min-width: 220px;
    background: #fffffff2;
    /* border: 1px solid #d4af374c; */
    border-radius: 12px;
    
    padding: 10px 12px;
    margin-right: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-notif-slide .hero-avatar-wrap {
    flex-shrink: 0;
}

.hero-notif-slide .hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
}

.hero-notif-slide .hero-online {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #00c950;
    border-radius: 50%;
    border: 2px solid #fff;
}

.hero-notif-na {
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.hero-notif-slide .hero-notif-name {
    font-size: 11px;
    font-weight: 600;
    color: #0a1e42;
    line-height: 1.3;
}

.hero-notif-slide .hero-notif-amount {
    font-size: 13px;
    font-weight: 700;
    color: #cb1d14;
    line-height: 1.3;
}

.hero-notif-slide .hero-notif-label {
    font-size: 10px;
    color: #6a7282;
    line-height: 1.3;
}

.hero-notif-slide .hero-notif-time {
    font-size: 10px;
    color: #99a1af;
    line-height: 1.3;
    display: flex;
    gap: 4px;
}

/* ── HERO ── */
.hero {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: visible;
}

/* Hero coins */
.hero-coin {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    animation: coinFloat 3.5s ease-in-out infinite;
    z-index: 1;
}

.hero-coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-coin-left-top {
    top: 0px;
    left: -10px;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.hero-coin-right-mid {
    top: 140px;
    right: -10px;
    width: 130px;
    height: 130px;
    animation-delay: 0.8s;
}

.hero-coin-right-bot {
    bottom: 60px;
    right: 10px;
    width: 110px;
    height: 110px;
    animation-delay: 1.6s;
}

@media (min-width: 1025px) {
    .hero-coin-left-top {
        width: 160px;
        height: 160px;
        left: 20px;
        top: 10px;
    }

    .hero-coin-right-mid {
        width: 180px;
        height: 180px;
        right: 20px;
        top: 160px;
    }

    .hero-coin-right-bot {
        width: 140px;
        height: 140px;
        right: 60px;
        bottom: 80px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ffffff33;
    background: #ffffff1a;
    border-radius: 9999px;
    padding: 9px 20px;
    margin-top: 80px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #00c950;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-badge-text {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0f0f0fe6;
    letter-spacing: -0.15px;
    line-height: 20px;
    white-space: nowrap;
    z-index: 4;
    width: 340px;
}

.hero-notification {
    width: 100%;
    max-width: 480px;
    background: #fffffff2;
    border: 1px solid #d4af374c;
    border-radius: 16px;
    box-shadow:
        0 8px 10px -6px #0000001a,
        0 20px 25px -5px #0000001a;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.hero-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5e7eb;
    flex-shrink: 0;
}

.hero-online {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #00c950;
    border-radius: 50%;
    border: 2px solid #fff;
}

.hero-notif-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-notif-name {
    font-size: 14px;
    font-weight: 600;
    color: #0a1e42;
    letter-spacing: -0.15px;
    line-height: 20px;
}

.hero-notif-amount {
    font-size: 18px;
    font-weight: 700;
    color: #cb1d14;
    letter-spacing: -0.44px;
    line-height: 28px;
}

.hero-notif-label {
    font-size: 12px;
    color: #6a7282;
    line-height: 16px;
}

.hero-notif-time {
    font-size: 12px;
    color: #99a1af;
    line-height: 16px;
}

.hero-heading {
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #0f0f0f;
    z-index: 4;
}

.hero-heading .accent {
    color: #cb1d14;
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: #0f0f0fcc;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
}

/* ── SIGN-UP CARD ── */
.signup-form {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border: 3px solid #e1e7f0;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 4;
}

.input-field {
    width: 100%;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    padding: 14px 17px;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 17px;
    color: #171717;
    outline: none;
}

.input-field::placeholder {
    color: #17171780;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    border-right: 1px solid #dfdfdf;
    height: 46px;
    flex-shrink: 0;
    font-size: 17px;
    color: #17171780;
    white-space: nowrap;
}

.phone-flag {
    font-size: 18px;
}

.phone-arrow {
    font-size: 10px;
    color: #17171780;
}

.phone-number {
    flex: 1;
    border: none;
    padding: 14px 12px;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 17px;
    color: #17171780;
    outline: none;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #cb1d14;
    color: #fff;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 15px;
    padding: 16px;
    cursor: pointer;
    line-height: 1;
}

.btn-primary:hover {
    background: #b01a12;
}

/* ── TRUST ── */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
    color: #4a5565;
    font-size: 14px;
    z-index: 4;
}

.trust-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: #00c950;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon::after {
    content: "✓";
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.trust-label {
    font-size: 14px;
    color: #0f0f0fcc;
    letter-spacing: -0.15px;
    line-height: 20px;
}

/* ── SECTION SHARED ── */
.section {
    
    padding: 50px 16px;
    z-index: 4;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(40px, 6vw, 48px);
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.1;
    letter-spacing: 0;
}

.section-sub {
    margin-top: 16px;
    font-size: 18px;
    color: #4a5565;
    line-height: 1.6;
}

/* ── TESTIMONIAL CARDS (leaders) ── */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 480px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid #cb1d14;
    background: #e5e7eb;
    flex-shrink: 0;
}

.testimonial-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #0a1e42;
    line-height: 28px;
}

.testimonial-flag {
    width: 25px;
    height: 17px;
    background: #e5e7eb;
    border-radius: 2px;
    flex-shrink: 0;
}

.testimonial-stars {
    color: #f0b100;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: #4a5565;
    line-height: 26px;
    max-width: 400px;
}

/* ── FEATURES SECTION ── */
.bg-gray {
    background: #f9fafb;
}

.feature-block {
    max-width: 600px;
    margin: 0 auto;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
    border: 1px solid #f3f4f6;
    border-radius: 6px;
    padding: 10px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: #cb1d14;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-symbol {
    color: #fff;
    font-size: 16px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #0a1e42;
    line-height: 26px;
}

/* ── MOCK CHART CARD ── */
.chart-card {
    max-width: 360px;
    margin: 0 auto 40px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 18px 36px -9px #00000040;
    background: linear-gradient(135deg,
            #e5e7eb 0%,
            #d1d5dc 50%,
            #99a1af 100%);
    padding: 8px;
}

.chart-inner {
    border-radius: 7px;
    overflow: hidden;
    background: linear-gradient(180deg, #cb1d14 0%, #4f1d1a 100%);
    padding: 14px 14px 0;
}

.chart-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.chart-dots {
    display: flex;
    gap: 6px;
}

.dot-r {
    width: 9px;
    height: 9px;
    background: #fb2c36;
    border-radius: 50%;
}

.dot-y {
    width: 9px;
    height: 9px;
    background: #f0b100;
    border-radius: 50%;
}

.dot-g {
    width: 9px;
    height: 9px;
    background: #00c950;
    border-radius: 50%;
}

.chart-label {
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.1px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 130px;
    padding-bottom: 8px;
}

.bar {
    flex: 1;
    border-radius: 4px;
    box-shadow:
        0 3px 4px -3px #0000001a,
        0 7px 11px -2px #0000001a;
}

.bar-w {
    background: #fff;
}

.bar-g {
    background: #00ff22;
}

.chart-stats {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 14px;
}

.chart-stat {
    text-align: center;
}

.chart-stat-label {
    font-size: 9px;
    color: #99a1af;
    line-height: 1.4;
}

.chart-stat-value {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
}

.chart-stat-value.gold {
    color: #d4af37;
}

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

.chart-footer-bar {
    height: 12px;
    border-radius: 0 0 17px 17px;
    background: linear-gradient(180deg, #d1d5dc 0%, #99a1af 100%);
    box-shadow:
        0 6px 7px -4px #0000001a,
        0 15px 18px -4px #0000001a;
    margin: -1px -8px 0;
}

.chart-desc {
    font-size: 16px;
    color: #4a5565;
    text-align: center;
    line-height: 1.6;
    margin-top: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── MARKETS SECTION ── */
.markets-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 480px;
}

.markets-chart-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    flex-shrink: 0;
}

/* floating coins */
.coin {
    position: absolute;
    animation: coinFloat 3s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.coin-tl {
    top: -24px;
    left: -20px;
    animation-delay: 0s;
    width: 62px;
    height: 62px;
}

.coin-tr {
    top: -4px;
    right: 12px;
    animation-delay: 0.8s;
    width: 40px;
    height: 40px;
}

.coin-mid {
    top: 24px;
    left: 38%;
    animation-delay: 1.6s;
    width: 50px;
    height: 50px;
}

.coin-br {
    bottom: 16px;
    right: -20px;
    animation-delay: 1.2s;
    width: 62px;
    height: 62px;
}

@keyframes coinFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(8deg);
    }
}

.markets-chart-card {
    border-radius: 18px;
    box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.35);
    background: linear-gradient(145deg,
            #e8edf5 0%,
            #c8d0de 50%,
            #99a8bc 100%);
    padding: 8px 8px 0;
}

.markets-chart-inner {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(160deg,
            #cb1d14 0%,
            #6b1410 55%,
            #3a0c0a 100%);
    padding: 18px 30px 0;
}

.markets-chart-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.markets-chart-label {
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.3px;
}

.markets-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 150px;
    padding-bottom: 10px;
}

.markets-chart-stats {
    display: flex;
    justify-content: space-around;
    padding: 12px 0 16px;
}

.markets-chart-stat {
    text-align: center;
}

.markets-chart-stat-label {
    font-size: 9px;
    color: #aab4be;
    line-height: 1.4;
    display: block;
}

.markets-chart-stat-value {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

.stat-gold {
    color: #d4af37;
}

.stat-green {
    color: #00ff22;
}

.markets-chart-footer {
    height: 14px;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(180deg, #c8d0de 0%, #99a8bc 100%);
    margin: 0 -8px;
}

.markets-desc {
    font-size: 16px;
    color: #4a5565;
    text-align: center;
    line-height: 1.6;
    margin-top: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.market-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #131313;
    border: 1px solid #d4af3733;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow:
        0 1px 3px -1px #0000001a,
        0 3px 4px -1px #0000001a;
}

.market-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.market-emoji {
    font-size: 16px;
}

.market-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.1px;
    line-height: 1.4;
}

.market-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.active-dot {
    width: 6px;
    height: 6px;
    background: #00ff22;
    border-radius: 50%;
}

.active-label {
    font-size: 9px;
    font-weight: 500;
    color: #00ff22;
}

/* ── HOW IT WORKS ── */
.steps-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.step-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;

    padding: 28px 24px;
    flex: 1;
    width: 100%;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px var(--shadow);

}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cb1d14;
    font-size: 24px;
    flex-shrink: 0;
    transform: rotate(90deg);
}

.step-num {
    width: 56px;
    height: 56px;
    background: #cb1d14;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a1e42;
    line-height: 26px;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 15px;
    color: #4a5565;
    line-height: 24px;
}

@media (min-width: 768px) {
    .steps-row {
        flex-direction: row;
        align-items: stretch;
    }

    .step-arrow {
        transform: rotate(0deg);
    }
}

/* ── DARK RESULTS SECTION ── */
.bg-dark {
    background: #131313;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ffffff33;
    background: #ffffff1a;
    border-radius: 9999px;
    padding: 9px 20px;
    margin-bottom: 24px;
}

.results-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffffe6;
    letter-spacing: 0;
    line-height: 20px;
}

.results-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}

.results-sub {
    font-size: 18px;
    color: #d1d5dc;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}

.earnings-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto 24px;
}

.earnings-card {
    background: #ffffff1a;
    border: 1px solid #ffffff33;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: flex-start;
    gap: 10px;
}

.earnings-icon {
    width: 80px;
    height: 80px;
    background: #ffffff1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.earnings-icon img {
    width: 40px;
    height: 40px;
}

.earnings-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
}

.earnings-label {
    font-size: 18px;
    color: #d1d5dc;
    line-height: 28px;
}

.earnings-amount {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(90deg, #D4AF37 0%, #FFDF20 50%, #D4AF37 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earnings-suffix {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    line-height: 28px;
}

.earnings-note {
    font-size: 14px;
    color: #99a1af;
    line-height: 22px;
}

.results-disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-icon {
    color: #d1d5dc;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-text {
    font-size: 12px;
    color: #d1d5dc;
    line-height: 1.6;
}

.btn-primary-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #cb1d14;
    color: #fff;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 18px 42px;
    cursor: pointer;
    letter-spacing: -0.44px;
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
}

.btn-primary-large:hover {
    background: #b01a12;
}

.btn-arrow {
    font-size: 18px;
}

/* ── USER REVIEWS ── */

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 480px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #cb1d14;
    background: #e5e7eb;
    flex-shrink: 0;
}

.review-stars {
    color: #f0b100;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-quote {
    font-size: 16px;
    font-style: italic;
    color: #364153;
    line-height: 26px;
}

.review-author {
    font-size: 18px;
    color: #0a1e42;
    line-height: 28px;
}

.review-author strong {
    font-weight: 700;
}

.review-amount-chip {
    width: 100%;
    background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(10, 30, 66, 0.1) 100%);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.review-amount {
    font-size: 20px;
    font-weight: 700;
    color: #0a1e42;
    line-height: 28px;
}

/* ── FINAL CTA SECTION ── */
/*.final {
  background: url('assets/cta-bg.jpg') center/cover no-repeat;
}*/

 .final {
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background: url('assets/cta-bg.jpg') center/cover no-repeat;
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../index/cta-bg.jpg') center/cover no-repeat;
  opacity: 0.2; 
  z-index: 0;
}


.final > * {
  position: relative;
  z-index: 1;
} 

.cta-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: #0a1e42;
  text-align: center;
  line-height: 1.2;
}

.cta-sub {
  font-size: 18px;
  color: #0a1e42;
  text-align: center;
  margin: 0 auto;
  line-height: 28px;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 500px;
}

/* ── FOOTER ── */
.footer {
    background: #131313;
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    width: 42px;
    height: 40px;
    /* background: #cb1d14; */
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 16px;
    color: #99a1af;
    line-height: 24px;
}

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

.footer-link {
    font-size: 14px;
    color: #99a1af;
    line-height: 20px;
}

.footer-copy {
    font-size: 12px;
    color: #6a7282;
    line-height: 16px;
}

/* ── ROBOT FEATURES LAYOUT ── */
.features-robot-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.features-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 420px;
}

.robot-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.robot-img {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
}

/* ── TABLET ── */
@media (min-width: 641px) {
    .hero-notif-floating{
        top: 100px;
        left: 100px;
    }
    .hero-badge {
        margin: 0;
}
    .hero {
        padding: 60px 32px;
    }

    .section {
        padding: 60px 32px;
    }

    .hero-heading {
        font-size: 44px;
    }

    .card-list,
    .earnings-cards,
    .review-cards {
        max-width: 600px;
    }

    .markets-grid {
        max-width: 460px;
        grid-template-columns: 1fr 1fr;
    }

    .feature-block {
        max-width: 100%;
    }

    .feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .chart-card {
        max-width: 440px;
    }
}

@media (min-width: 641px) {
    .features-robot-layout {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .features-col {
        max-width: 340px;
    }

    .robot-img {
        width: 320px;
    }
}

/* ── DESKTOP ── */
@media (min-width: 1025px) {
    
    .hero-badge {
        margin: 0;
}

    .navbar-inner {
        padding: 16px 40px;
    }

    .hero {
        padding: 80px 40px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .section {
        padding: 80px 40px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .hero-heading {
        font-size: 52px;
    }

    .hero-sub {
        font-size: 20px;
    }

    .card-list {
        flex-direction: row;
        align-items: stretch;
        max-width: 1100px;
    }

    .testimonial-card {
        flex: 1;
    }

    .earnings-cards {
        flex-direction: row;
        max-width: 1100px;
    }

    .earnings-card {
        flex: 1;
    }

    .review-cards {
        flex-direction: row;
        max-width: 1100px;
    }

    .review-card {
        flex: 1;
    }

    .markets-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
    }

    .markets-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 420px;
    }

    .markets-chart-wrap {
        max-width: 420px;
    }

    .feature-block {
        max-width: 1100px;
    }

    .feature-list {
        grid-template-columns: 1fr 1fr;
    }

    .features-robot-layout {
        gap: 48px;
    }

    .features-col {
        max-width: 380px;
    }

    .robot-img {
        width: 380px;
    }

    .feature-layout {
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .feature-layout .feature-block {
        flex: 1;
    }

    .chart-card {
        flex: 0 0 360px;
        margin: 0;
    }

    .steps-list {
        max-width: 1140px;
    }

    .btn-primary-large {
        max-width: 280px;
    }

    .footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 40px 64px;
        text-align: left;
    }
}