/* ==========================================
   CARTEIRA CRIPTO — Modern Landing Page styles
   ========================================== */

/* Hero Glowing Orbs */
.glow-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(108, 92, 231, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}
.orb-1 { top: 10%; left: 5%; }
.orb-2 { bottom: 15%; right: 5%; }

/* Layout adjustments */
.landing-page {
    position: relative;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism Navigation */
.landing-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    height: 70px;
    background: rgba(18, 18, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.landing-nav.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(10, 10, 26, 0.95);
}

.landing-nav .logo img {
    height: 38px;
    width: auto;
    transition: var(--transition);
}

.landing-nav .logo img:hover {
    transform: scale(1.02);
}

/* Split Hero Section */
.hero-wrapper {
    position: relative;
    padding: 160px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    min-height: 95vh;
}

.hero-left {
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 30px;
    color: var(--accent-secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-heading);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.hero-left h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 540px;
    animation: fadeInUp 1s ease;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1.1s ease;
}

.hero-actions .btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-actions .btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-accent);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(108, 92, 231, 0.4);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    animation: fadeInUp 1.2s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading);
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
}

/* Interactive Dashboard Mockup */
.hero-right {
    position: relative;
    z-index: 10;
    perspective: 1000px;
    animation: fadeInRight 1s ease;
}

.mockup-container {
    background: #0d0d21;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(108, 92, 231, 0.15);
    padding: 24px;
    transition: transform 0.5s ease;
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
}

.mockup-container:hover {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-5px);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

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

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-title {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mockup-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.mockup-kpi {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 14px;
    border-radius: var(--border-radius);
}

.mockup-kpi .lbl {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mockup-kpi .val {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
}

.mockup-kpi .change {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mockup-kpi .change.up { color: var(--green); }
.mockup-kpi .change.down { color: var(--red); }

.mockup-chart-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 20px;
}

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

.mockup-chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-chart-svg {
    width: 100%;
    height: 100px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.mockup-assets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-asset-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--border-radius-sm);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.mockup-asset-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(108, 92, 231, 0.2);
}

.mockup-asset-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-asset-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: white;
}
.mockup-asset-icon.btc { background: #f7931a; }
.mockup-asset-icon.eth { background: #627eea; }
.mockup-asset-icon.sol { background: #14f195; color: black; }

.mockup-asset-name {
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-asset-sym {
    font-size: 10px;
    color: var(--text-muted);
}

.mockup-asset-price {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.mockup-asset-change {
    font-size: 11px;
    font-weight: 600;
    text-align: right;
}
.mockup-asset-change.up { color: var(--green); }
.mockup-asset-change.down { color: var(--red); }


/* Live Crypto Ticker */
.ticker-container {
    background: rgba(18, 18, 42, 0.8);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.ticker-wrap {
    display: flex;
    width: 200%;
    animation: tickerAnimation 30s linear infinite;
}

.ticker-wrap:hover {
    animation-play-state: paused;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.ticker-item .sym {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.ticker-item .price {
    color: var(--text-heading);
}

.ticker-item .change.up { color: var(--green); }
.ticker-item .change.down { color: var(--red); }

@keyframes tickerAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}


/* Welcome / About Section */
.landing-welcome {
    padding: 100px 20px;
    background: #060613;
    position: relative;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 70px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-heading);
    line-height: 1.25;
}

.welcome-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* Portfolio Simulator */
.simulator-section {
    padding: 100px 20px;
    background: var(--bg-primary);
    position: relative;
}

.simulator-container {
    max-width: 1050px;
    margin: 0 auto;
    background: rgba(18, 18, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.simulator-header {
    text-align: center;
    margin-bottom: 15px;
}

.simulator-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.simulator-header p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.simulator-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 868px) {
    .simulator-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    .simulator-container {
        padding: 30px 20px;
    }
}

.sim-controls-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sim-control-group {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.sim-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sim-slider-header label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sim-slider-header label i {
    color: var(--accent-secondary);
    font-size: 14px;
}

.sim-slider-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-secondary);
    background: rgba(0, 206, 162, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 206, 162, 0.15);
}

.sim-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: -4px;
    font-weight: 500;
}

.sim-slider-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.sim-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-secondary);
    border: 3px solid #0c0c24;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 206, 162, 0.6);
    transition: transform 0.15s ease, background 0.15s ease;
}

.sim-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: #00e0b1;
}

.sim-slider-input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-secondary);
    border: 3px solid #0c0c24;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 206, 162, 0.6);
    transition: transform 0.15s ease;
}

.sim-strategy-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sim-strategy-label i {
    color: var(--accent-secondary);
    font-size: 14px;
}

.sim-strategy-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .sim-strategy-tabs {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.sim-strat-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 10px;
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.sim-strat-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.sim-strat-tab.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

.sim-strat-tab .strat-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sim-strat-tab .strat-apy {
    font-size: 12px;
    font-weight: 800;
    opacity: 0.85;
}

.sim-strat-tab.active .strat-apy {
    opacity: 1;
}

.sim-result-card-premium {
    background: linear-gradient(135deg, rgba(20, 20, 48, 0.95) 0%, rgba(10, 10, 30, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.sim-result-card-premium::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.sim-result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
    margin-bottom: 25px;
    z-index: 2;
}

.sim-result-card-header h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sim-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-secondary);
    background: rgba(0, 206, 162, 0.08);
    border: 1px solid rgba(0, 206, 162, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sim-balance-callout {
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.01);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.sim-balance-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sim-balance-val {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 6px;
    filter: drop-shadow(0 2px 10px rgba(108, 92, 231, 0.25));
}

.sim-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    z-index: 2;
}

.sim-stat-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sim-stat-lbl {
    font-size: 10.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.sim-stat-val-small {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.sim-stat-val-small.profit {
    color: var(--accent-secondary);
}

.sim-bar-wrapper {
    margin-bottom: 20px;
    z-index: 2;
}

.sim-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.sim-progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.sim-progress-bar-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    z-index: 2;
    text-align: left;
}

.sim-disclaimer i {
    margin-top: 2px;
    color: var(--accent-secondary);
}


/* Features Section Revamp */
.features-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.features-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-heading);
}

.features-section-header h2.premium-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.features-section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.feature-card {
    background: rgba(18, 18, 42, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(108, 92, 231, 0.3);
    background: rgba(18, 18, 42, 0.6);
}

.feature-card:hover::before {
    background: var(--accent-gradient);
}

.feature-card .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--accent-secondary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.badge-new {
    font-size: 9px;
    vertical-align: top;
    background: var(--accent-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* How it Works */
.workflow-section {
    padding: 100px 20px;
    background: #060613;
    position: relative;
    overflow: hidden;
}

/* Subtle glowing orb in the background of the workflow section */
.orb-workflow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.workflow-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-section-header h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.workflow-card {
    text-align: center;
    position: relative;
    background: rgba(18, 18, 42, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 50px 30px 40px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.1;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Large decorative number in background */
.workflow-bg-num {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 72px;
    font-weight: 900;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    user-select: none;
    transition: all 0.4s ease;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Icon wrap styling */
.workflow-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 26px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.workflow-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workflow-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-heading);
    transition: color 0.3s ease;
}

.workflow-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.workflow-card:hover p {
    color: var(--text-primary);
}

/* --- STEP 1: NEON CYAN THEME --- */
#workflow-step-1:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 229, 255, 0.18);
    background: rgba(0, 229, 255, 0.015);
    transform: translateY(-8px);
}
#workflow-step-1 .workflow-icon-wrap {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(0, 229, 255, 0.1);
}
#workflow-step-1:hover .workflow-icon-wrap {
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.55);
}
#workflow-step-1:hover .workflow-icon-wrap::after {
    background: linear-gradient(135deg, #00b4db, #00e5ff);
    opacity: 1;
}
#workflow-step-1:hover .workflow-bg-num {
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}
#workflow-step-1:hover h3 {
    color: #00e5ff;
}
#workflow-step-1:hover .fa-user-astronaut {
    animation: astronautFloat 2s ease-in-out infinite;
}

/* --- STEP 2: NEON GREEN THEME --- */
#workflow-step-2:hover {
    border-color: rgba(20, 241, 149, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(20, 241, 149, 0.18);
    background: rgba(20, 241, 149, 0.015);
    transform: translateY(-8px);
}
#workflow-step-2 .workflow-icon-wrap {
    color: #14f195;
    border-color: rgba(20, 241, 149, 0.2);
    box-shadow: inset 0 1px 1px rgba(20, 241, 149, 0.1);
}
#workflow-step-2:hover .workflow-icon-wrap {
    color: #fff;
    transform: scale(1.15) rotate(-5deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(20, 241, 149, 0.55);
}
#workflow-step-2:hover .workflow-icon-wrap::after {
    background: linear-gradient(135deg, #10b981, #14f195);
    opacity: 1;
}
#workflow-step-2:hover .workflow-bg-num {
    background: linear-gradient(180deg, rgba(20, 241, 149, 0.2) 0%, rgba(20, 241, 149, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}
#workflow-step-2:hover h3 {
    color: #14f195;
}
#workflow-step-2:hover .fa-coins {
    animation: coinSpin 1.8s linear infinite;
}

/* --- STEP 3: NEON PURPLE THEME --- */
#workflow-step-3:hover {
    border-color: rgba(189, 0, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(189, 0, 255, 0.18);
    background: rgba(189, 0, 255, 0.015);
    transform: translateY(-8px);
}
#workflow-step-3 .workflow-icon-wrap {
    color: #bd00ff;
    border-color: rgba(189, 0, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(189, 0, 255, 0.1);
}
#workflow-step-3:hover .workflow-icon-wrap {
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(189, 0, 255, 0.55);
}
#workflow-step-3:hover .workflow-icon-wrap::after {
    background: linear-gradient(135deg, #9b59b6, #bd00ff);
    opacity: 1;
}
#workflow-step-3:hover .workflow-bg-num {
    background: linear-gradient(180deg, rgba(189, 0, 255, 0.2) 0%, rgba(189, 0, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}
#workflow-step-3:hover h3 {
    color: #bd00ff;
}
#workflow-step-3:hover .fa-brain {
    animation: brainPulse 1.5s ease-in-out infinite;
}

/* Connective lines for workflow on desktop */
@media (min-width: 769px) {
    .workflow-grid::before {
        content: '';
        position: absolute;
        top: 88px; /* Centered with icon wraps */
        left: 15%;
        right: 15%;
        height: 3px;
        background: linear-gradient(90deg, 
            #00e5ff 0%, 
            #14f195 50%, 
            #bd00ff 100%);
        background-size: 200% auto;
        animation: pulseLine 3s linear infinite;
        z-index: 1;
        opacity: 0.6;
        filter: drop-shadow(0 0 4px rgba(20, 241, 149, 0.3));
    }
}

/* Animations Keyframes */
@keyframes astronautFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(189, 0, 255, 0.4)); }
    50% { transform: scale(1.18); filter: drop-shadow(0 0 15px rgba(189, 0, 255, 0.8)); }
}

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

@media (max-width: 992px) {
    .workflow-grid {
        gap: 20px;
    }
    .workflow-card {
        padding: 40px 20px 30px;
    }
}


/* FAQ Accordion Section */
.faq-section {
    padding: 100px 20px;
    background: radial-gradient(circle at 80% 20%, rgba(189, 0, 255, 0.04) 0%, rgba(0, 229, 255, 0.02) 50%, rgba(0, 0, 0, 0) 80%), var(--bg-primary);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(10, 10, 25, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Glowing Neon Animations for each card type */
@keyframes neon-glow-cyan {
    0%, 100% { 
        border-color: rgba(0, 229, 255, 0.15); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 229, 255, 0.02); 
    }
    50% { 
        border-color: rgba(0, 229, 255, 0.28); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 229, 255, 0.08); 
    }
}
@keyframes neon-glow-green {
    0%, 100% { 
        border-color: rgba(20, 241, 149, 0.15); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 5px rgba(20, 241, 149, 0.02); 
    }
    50% { 
        border-color: rgba(20, 241, 149, 0.28); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(20, 241, 149, 0.08); 
    }
}
@keyframes neon-glow-purple {
    0%, 100% { 
        border-color: rgba(189, 0, 255, 0.15); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 5px rgba(189, 0, 255, 0.02); 
    }
    50% { 
        border-color: rgba(189, 0, 255, 0.28); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(189, 0, 255, 0.08); 
    }
}

/* 3n+1 (Cyan) - Permanent styling and subtle glow */
.faq-item:nth-child(3n+1) {
    border: 1px solid rgba(0, 229, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.03) 0%, rgba(10, 10, 25, 0.5) 100%);
    animation: neon-glow-cyan 6s ease-in-out infinite;
}
.faq-item:nth-child(3n+1) .faq-trigger i {
    color: rgba(0, 229, 255, 0.7);
}
.faq-item:nth-child(3n+1):hover {
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
    animation: none;
}
.faq-item:nth-child(3n+1).active {
    border-color: rgba(0, 229, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06) 0%, rgba(10, 10, 25, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 229, 255, 0.2);
    animation: none;
}
.faq-item:nth-child(3n+1).active .faq-trigger i {
    color: #00e5ff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}
.faq-item:nth-child(3n+1).active .faq-content {
    border-top: 1px solid rgba(0, 229, 255, 0.18);
}

/* 3n+2 (Green) - Permanent styling and subtle glow */
.faq-item:nth-child(3n+2) {
    border: 1px solid rgba(20, 241, 149, 0.15);
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.03) 0%, rgba(10, 10, 25, 0.5) 100%);
    animation: neon-glow-green 6s ease-in-out infinite;
    animation-delay: 2s;
}
.faq-item:nth-child(3n+2) .faq-trigger i {
    color: rgba(20, 241, 149, 0.7);
}
.faq-item:nth-child(3n+2):hover {
    border-color: rgba(20, 241, 149, 0.45);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(20, 241, 149, 0.1);
    transform: translateY(-2px);
    animation: none;
}
.faq-item:nth-child(3n+2).active {
    border-color: rgba(20, 241, 149, 0.6);
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.06) 0%, rgba(10, 10, 25, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(20, 241, 149, 0.2);
    animation: none;
}
.faq-item:nth-child(3n+2).active .faq-trigger i {
    color: #14f195;
    text-shadow: 0 0 8px rgba(20, 241, 149, 0.6);
}
.faq-item:nth-child(3n+2).active .faq-content {
    border-top: 1px solid rgba(20, 241, 149, 0.18);
}

/* 3n+3 (Purple) - Permanent styling and subtle glow */
.faq-item:nth-child(3n+3) {
    border: 1px solid rgba(189, 0, 255, 0.15);
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.03) 0%, rgba(10, 10, 25, 0.5) 100%);
    animation: neon-glow-purple 6s ease-in-out infinite;
    animation-delay: 4s;
}
.faq-item:nth-child(3n+3) .faq-trigger i {
    color: rgba(189, 0, 255, 0.7);
}
.faq-item:nth-child(3n+3):hover {
    border-color: rgba(189, 0, 255, 0.45);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(189, 0, 255, 0.1);
    transform: translateY(-2px);
    animation: none;
}
.faq-item:nth-child(3n+3).active {
    border-color: rgba(189, 0, 255, 0.6);
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.06) 0%, rgba(10, 10, 25, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(189, 0, 255, 0.2);
    animation: none;
}
.faq-item:nth-child(3n+3).active .faq-trigger i {
    color: #bd00ff;
    text-shadow: 0 0 8px rgba(189, 0, 255, 0.6);
}
.faq-item:nth-child(3n+3).active .faq-content {
    border-top: 1px solid rgba(189, 0, 255, 0.18);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--text-primary);
}

.faq-trigger i {
    font-size: 12px;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, border-color 0.3s ease;
    padding: 0 28px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
    max-height: 250px;
    padding-top: 18px;
    padding-bottom: 22px;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}


/* Redesigned Auth forms */
.auth-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.12) 0%, rgba(0, 229, 255, 0.04) 50%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
    animation: authGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes authGlowPulse {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15) rotate(90deg); opacity: 0.95; }
}

.auth-card {
    background: rgba(10, 10, 25, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    overflow: hidden;
}

.auth-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00e5ff, #bd00ff);
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
}

.auth-subtitle {
    margin-bottom: 25px !important;
}

.auth-tabs {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    padding: 5px;
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    outline: none;
}

.auth-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.auth-tab.active {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(189, 0, 255, 0.12) 100%);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.05);
}

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

#loginForm .form-control:focus {
    border-color: rgba(0, 229, 255, 0.5);
    background: rgba(0, 229, 255, 0.02);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 229, 255, 0.15);
}

#registerForm .form-control:focus {
    border-color: rgba(189, 0, 255, 0.5);
    background: rgba(189, 0, 255, 0.02);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(189, 0, 255, 0.15);
}

#loginForm .form-group:focus-within .form-label {
    color: #00e5ff;
}

#registerForm .form-group:focus-within .form-label {
    color: #bd00ff;
}

/* Premium Google Sign-in Dark */
.btn-google-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.btn-google-premium img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-google-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.btn-google-premium:hover img {
    transform: scale(1.1);
}

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

.btn-block {
    width: 100%;
}


/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0) rotateY(-12deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateY(-8deg);
    }
}

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


/* Responsiveness media queries */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
        gap: 40px;
    }
    
    .hero-left h1 {
        font-size: 40px;
    }
    
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        transform: none !important;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mockup-container {
        transform: none !important;
    }
    
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .welcome-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 0 20px;
    }
    
    .landing-nav .logo img {
        height: 30px;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
