/* ==== Custom Properties ==== */
:root {
    --bg-dark: #060b19;
    /* Deeper, richer blue-black instead of pure muted gray/black */
    --bg-card: rgba(13, 20, 44, 0.7);
    /* Slightly brighter, bluer glass */
    --gold: #ffc800;
    /* Much brighter, more vibrant gold/yellow */
    --gold-light: #ffeaa0;
    --green-neon: #00ff88;
    --blue-neon: #00e5ff;
    /* Added an electric blue for accents */
    --text-primary: #ffffff;
    --text-muted: #a8b8d1;
    /* Lighter, cooler gray for better contrast */
    --glass-border: rgba(255, 255, 255, 0.15);
    /* Slightly more visible borders */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* ==== Base Styles ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.gold-text {
    color: var(--gold);
}

.gradient-text {
    background: linear-gradient(90deg, var(--gold) 0%, var(--green-neon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==== Background Shapes ==== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.05), transparent 50%),
        radial-gradient(circle at bottom right, rgba(0, 255, 136, 0.05), transparent 50%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Reduced blur slightly for more color punch */
    opacity: 0.6;
    /* Increased opacity for brightness */
    animation: float 20s infinite alternate;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: rgba(255, 200, 0, 0.25);
    /* Brighter Gold */
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 550px;
    height: 550px;
    background: rgba(0, 255, 136, 0.2);
    /* Brighter Neon Green */
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: rgba(0, 229, 255, 0.25);
    /* Electric Blue */
    top: 30%;
    left: 40%;
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 60px) scale(0.9);
    }
}

/* ==== Navigation ==== */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(6, 11, 25, 0.85);
    /* Richer blue instead of muted black */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ==== Buttons ==== */
.btn-primary-small {
    background: linear-gradient(135deg, var(--gold) 0%, #ff9c00 100%);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    color: #111 !important;
    /* Dark text on bright gold looks punchier */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #ff9c00 100%);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
    /* Dark text on bright gold */
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--green-neon);
    color: var(--green-neon);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    width: 100%;
    margin-top: 15px;
}

.btn-outline:hover {
    background: var(--green-neon);
    color: var(--bg-dark);
}

/* ==== Hero Section ==== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-number {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==== 3D Hero Card ==== */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    width: 380px;
    box-shadow: var(--glass-shadow);
    transform-style: preserve-3d;
}

.card-inner {
    transform: translateZ(40px);
    /* Pushes content forward for 3D effect */
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.premium-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.bar {
    flex: 1;
    background: linear-gradient(to top, rgba(0, 255, 136, 0.2), var(--green-neon));
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.bar-1 {
    height: 30%;
    animation: grow 1s ease-out forwards;
}

.bar-2 {
    height: 50%;
    animation: grow 1.2s ease-out forwards;
}

.bar-3 {
    height: 40%;
    animation: grow 1.4s ease-out forwards;
}

.bar-4 {
    height: 70%;
    animation: grow 1.6s ease-out forwards;
}

.bar-5 {
    height: 60%;
    animation: grow 1.8s ease-out forwards;
}

.bar-6 {
    height: 90%;
    animation: grow 2s ease-out forwards;
}

@keyframes grow {
    from {
        height: 0;
    }
}

.profit-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-neon);
    margin-bottom: 10px;
}

.profit-highlight span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==== Live Ticker ==== */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(10, 14, 23, 0.9);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.ticker {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ticker-pair {
    color: #fff;
}

.ticker-up {
    color: var(--green-neon);
}

.ticker-down {
    color: #ff3366;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* -50% because we duplicated content */
}

/* ==== Section Headers ==== */
.calc-section,
.timeline-section {
    padding: 100px 0;
    position: relative;
}

.timeline-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(16, 24, 40, 0.4) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==== Calculator Dashboard ==== */
.glass-dashboard {
    background: rgba(13, 20, 44, 0.6);
    /* Richer blue glass */
    border: 1px solid rgba(0, 229, 255, 0.15);
    /* Electric blue tint border */
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Glow effect behind dashboard */
.glass-dashboard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.input-group {
    margin-bottom: 35px;
}

.input-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.slider-container {
    position: relative;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    margin-bottom: 15px;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

input[type=range]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin-top: -8px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: transform 0.1s, box-shadow 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.slider-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    text-align: right;
}

.rate-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
}

.green-glow {
    color: var(--green-neon);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-box h4 {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.huge-amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.green-text {
    color: var(--green-neon);
    font-weight: 700;
}

/* ==== Interactive Timeline ==== */
.timeline-section {
    background: radial-gradient(circle at center, rgba(16, 24, 40, 0.8) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.journey-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.journey-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.journey-path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 6px;
}

.journey-path-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 6px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
    /* Handled by GSAP Stroke Dash Array */
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.journey-step {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0.3;
    /* Default dimmed */
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.step-left {
    justify-content: flex-end;
    padding-right: 50%;
}

.step-right {
    justify-content: flex-start;
    padding-left: 50%;
}

.step-dot {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 60px;
    height: 60px;
    background: rgba(10, 14, 23, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.journey-step.active .step-dot {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translate(-50%, 0) scale(1.1);
}

.journey-step.active .highlight-step {
    border-color: var(--green-neon);
    color: var(--green-neon);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6), inset 0 0 20px rgba(0, 255, 136, 0.4);
}

.step-content {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(13, 20, 44, 0.6) 100%);
    /* Richer deep blue glass */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    width: 85%;
    position: relative;
    transition: border-color 0.5s, box-shadow 0.5s;
    overflow: hidden;
}

.step-number {
    position: absolute;
    right: 20px;
    bottom: -10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    transition: color 0.5s ease;
}

.journey-step.active .step-number {
    color: rgba(212, 175, 55, 0.08);
    /* Gold watermark */
}

.journey-step.active .highlight-content .step-number {
    color: rgba(0, 255, 136, 0.08);
}

.step-left .step-content {
    margin-right: 60px;
    text-align: right;
}

.step-right .step-content {
    margin-left: 60px;
    text-align: left;
}

.step-left .step-number {
    left: 20px;
    right: auto;
}

.journey-step.active .step-content {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-content {
    border-color: rgba(0, 255, 136, 0.3) !important;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(13, 20, 44, 0.8) 100%);
    /* Stronger neon green gradient */
}

.journey-step.active .highlight-content {
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.25), inset 0 0 0 1px rgba(0, 255, 136, 0.3);
}

.glow-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.2);
    color: var(--green-neon);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ==== CTA Section ==== */
.cta-section {
    padding: 80px 0 120px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.2) 0%, rgba(0, 229, 255, 0.1) 100%);
    /* Brighter mix of gold and blue */
    border: 1px solid rgba(255, 200, 0, 0.3);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 200, 0, 0.1);
    backdrop-filter: blur(15px);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.cta-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    border-color: var(--gold);
}

/* ==== 15-Day Lock Banner ==== */
.lock-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.4) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.lock-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 255, 136, 0.05) 50%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.banner-box {
    background: rgba(16, 24, 40, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.banner-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--green-neon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(30px);
}

.banner-text {
    flex: 1;
    transform: translateZ(20px);
}

.banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.banner-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.banner-text strong {
    color: #fff;
    font-weight: 800;
}

.days-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
    animation: gold-pulse 3s infinite;
    background: rgba(212, 175, 55, 0.05);
    transform: translateZ(40px);
}

.days-circle span {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.days-circle small {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ==== Particles Canvas ==== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ==== Mouse Spotlight ==== */
.mouse-spotlight {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

body:hover .mouse-spotlight {
    opacity: 1;
}

/* ==== Testimonials Section ==== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 20, 44, 0.5) 100%);
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(13, 20, 44, 0.6) 100%);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(15px);
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    border-color: rgba(255, 200, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 200, 0, 0.1), inset 0 0 0 1px rgba(255, 200, 0, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
    text-shadow: 0 0 10px rgba(255, 200, 0, 0.5);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--green-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==== Footer ==== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .nav-links {
        display: none;
    }

    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 15px;
        gap: 15px;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .hero-visual {
        margin-top: 20px;
        justify-content: center;
    }

    .premium-card {
        width: 100%;
        max-width: 320px;
        padding: 20px;
    }

    .premium-card h2 {
        font-size: 1.3rem;
    }

    .profit-highlight {
        font-size: 1.6rem;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-line {
        left: 20px;
    }

    .step-left,
    .step-right {
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 0;
    }

    .step-dot {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .glass-dashboard {
        padding: 20px;
    }

    .calc-results {
        padding: 25px 20px;
    }

    .step-dot {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .step-left .step-content,
    .step-right .step-content {
        margin: 0;
        width: 100%;
        text-align: left;
    }

    .glass-dashboard {
        padding: 20px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .banner-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-input {
        width: 100%;
        padding: 15px;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .huge-amount {
        font-size: 2.5rem;
    }

    .slider-value {
        font-size: 1.1rem;
    }

    .rate-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .testimonial-card {
        padding: 20px;
    }
}