/* ===========================================
   CLEARWAGE - TRULY FIXED VERSION
   All issues corrected
   =========================================== */

:root {
    --black: #000000;
    --near-black: #0f0f0f;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #3a3a3a;
    --border-gray: #333333;
    --green-primary: #00ff88;
    --blue-primary: #463afe;
    --blue-hover: #3730d8;
    --gold: #b59658;
    --white: #ffffff;
    --text-gray: #cccccc;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero-section {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 20px;

    background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("moneypic.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*without pic/ black hero
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at top, #0f1419, #000000);
    padding: 80px 20px 20px;
}

*/

.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #b59658 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtitle {
    font-size: 2.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.3;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
   
}

.btn-unlock {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 44px;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 4px transparent,
                0 8px 32px rgba(70, 58, 254, 0.4);
    position: relative;
}

.btn-unlock::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-unlock:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px transparent,
                0 12px 48px rgba(70, 58, 254, 0.6);
}

.lock-icon {
    flex-shrink: 0;
}

.arrow-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-unlock:hover .arrow-icon {
    transform: translateX(4px);
}

.already-added-link {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.already-added-link:hover {
    color: var(--blue-primary);
}

/* ===========================================
   SAMPLE CARDS SECTION
   =========================================== */

.sample-cards-section {
    padding: 0px 20px 120px;
    background: var(--black);
}

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

.sample-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.count-number {
    
    font-weight: 800;
    text-decoration: underline;
}

.sample-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

/* ===========================================
   SALARY CARDS (Results-demo style)
   =========================================== */

.salary-card {
    background: var(--dark-gray);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.salary-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: var(--near-black);
    box-shadow: 0 20px 40px rgba(181, 150, 88, 0.25);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.salary-display {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dollar-icon {
    flex-shrink: 0;
    color: var(--green-primary);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    width: 38px;
    height: 38px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.dollar-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.salary-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.salary-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.practice-area {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.job-title {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.yoe-badge {
    background: var(--gold);
    border: none;
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(181, 150, 88, 0.5);
    flex-shrink: 0;
    height: 38px;
    display: flex;
    align-items: center;
}

.card-body {
    display: grid;
    gap: 12px;
}

.card-field {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.card-label {
    color: var(--text-gray);
}

.card-value {
    color: var(--white);
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top:  1px solid var(--medium-gray);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}


/* ===========================================
   POWERED BY SECTION
   =========================================== */

.powered-by-section {
    padding: 100px 20px;
    background: var(--near-black);
    border-top: 1px solid var(--medium-gray);
}

.powered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.powered-content h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 700;
}

.powered-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
    .sample-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .main-subtitle {
        font-size: 1.5rem;
    }

    .btn-unlock {
        width: 100%;
        justify-content: center;
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .cta-container {
        margin-bottom: 60px;
        width: 100%;
    }

    .sample-grid {
        grid-template-columns: 1fr;
    }

    .sample-title {
        font-size: 2rem;
    }

    .salary-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .main-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-container {
        margin-bottom: 50px;
    }

    .salary-card {
        padding: 20px;
    }

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

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .yoe-badge {
        align-self: flex-start;
    }
}



/* Footer */
        .footer {
            background: var(--near-black);
            border-top: 1px solid var(--medium-gray);
            padding: 60px 20px 30px;
            margin-top: 0px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--blue-primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--medium-gray);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .footer-privacy a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-privacy a:hover {
            color: var(--blue-primary);
        }

        /* Powered By Badge */
        /* Powered By Badge */
        .powered-badge {
             background: rgba(181, 150, 88, 0.15);
            border: 1px solid var(--gold);
            border-radius: 8px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .powered-badge-text {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .powered-badge-logo {
            height: 24px;
        }