/* =============================================
   INDIVIDUALS PAGE — v3 Rebuild
   Accent: #E96529  |  Max-width: 980px
   Body: ~20px  |  Font: Montserrat
   ============================================= */

/* ---------- Layout wrapper ---------- */
.ind-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ---------- Shared label style ---------- */
.ind-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 24px;
}

/* ---------- Accent line ---------- */
.ind-accent-line {
    width: 3px;
    background: #E96529;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 1px;
}

/* ---------- Nav active ---------- */
.nav-menu li a.active {
    color: #E96529 !important;
}

/* ===========================================
   1. HERO BANNER
   =========================================== */
.ind-hero {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.ind-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ind-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: blur(1px);
}

.ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 30px;
}

.ind-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.35;
    letter-spacing: 1px;
}

.ind-hero-content h1 strong {
    font-weight: 700;
}

/* ===========================================
   2. MY INTEREST - Full Bleed 50/50 Layout
   =========================================== */
.ind-interest {
    background: #fff;
    padding: 0;
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.ind-interest-grid {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.ind-interest-left {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #fff;
}

.ind-interest-left-content {
    max-width: 550px;
    display: flex;
    gap: 24px;
}

.ind-interest-body {
    flex: 1;
}

.ind-interest-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.65;
    color: #222;
    margin-bottom: 18px;
}

.ind-interest-body strong {
    font-weight: 700;
    color: #0D0D0D;
}

.ind-interest-right {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.ind-interest-right img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   3. WHY PEOPLE COME HERE — Grid Layout (No Slider)
   =========================================== */
.ind-why-section {
    background: #fff;
    padding: 100px 0;
}

.ind-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #0D0D0D;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Grid of cards */
.ind-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Cards --- */
.ind-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 40px 35px;
    box-sizing: border-box;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.ind-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 60px;
    background: #E96529;
}

.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ind-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0D0D0D;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ind-card h3 strong {
    font-weight: 600;
}

.ind-card-rule {
    display: none;
}

.ind-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ===========================================
   4. HOW I WORK — Grid Layout (No Slider)
   =========================================== */
.ind-how-section {
    background: #f8f6f3;
    padding: 100px 0;
}

.ind-how-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.ind-how-heading-col {
    text-align: center;
    margin-bottom: 60px;
}

.ind-how-heading-col .ind-section-heading {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0;
}

.ind-how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Hide slider controls */
.ind-progress-row {
    display: none;
}

.ind-how-slider-col {
    width: 100%;
}

.ind-slider-viewport {
    overflow: visible;
}

.ind-slider-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ind-how-slide {
    display: contents;
}

/* --- Compact cards --- */
.ind-card.compact {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 35px 30px;
    position: relative;
}

.ind-card.compact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 50px;
    background: #E96529;
}

.ind-card.compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ind-card.compact h3 {
    font-size: 1.2rem;
    color: #0D0D0D;
    font-weight: 600;
}

.ind-card.compact p {
    font-size: 0.95rem;
}

/* ===========================================
   5. FULL-BLEED IMAGE
   =========================================== */
.ind-fullbleed-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ind-fullbleed-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

/* ===========================================
   6. DARK SECTION
   =========================================== */
.ind-dark {
    position: relative;
    background: #0A0A0A;
    color: #F5F5F5;
    padding: 90px 0 100px;
}

/* Orange accent stripe on far left */
.ind-dark-accent-stripe {
    position: absolute;
    left: 75px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E96529;
}

/* Tagline row */
.ind-dark-tagline-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.ind-dark-tagline-line {
    width: 3px;
    height: 44px;
    background: #E96529;
    flex-shrink: 0;
    border-radius: 1px;
}

.ind-dark-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
}

/* Two-column grid */
.ind-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ind-dark-col h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E96529;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

/* List blocks */
.ind-dark-list-block {
    margin-bottom: 28px;
}

.ind-dark-list-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ind-dark-list-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-dark-list-block li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.ind-dark-list-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #E96529;
    border-radius: 50%;
}

/* Right column paragraph */
.ind-dark-col p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: #bbb;
    margin-bottom: 32px;
}

.ind-dark-col strong {
    color: #fff;
    font-weight: 700;
}

/* CTA link */
.ind-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ind-cta:hover {
    color: #E96529;
}

.ind-cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.ind-cta:hover .ind-cta-arrow {
    transform: translateX(5px);
}

/* ===========================================
   RESPONSIVE — 1024px
   =========================================== */
@media (max-width: 1024px) {
    .ind-wrap {
        padding: 0 30px;
    }

    .ind-hero-content h1 {
        font-size: 2.4rem;
    }

    .ind-interest-grid {
        gap: 40px;
    }

    .ind-how-layout {
        grid-template-columns: 1fr 180px;
        gap: 30px;
    }

    .ind-dark-grid {
        gap: 50px;
    }

    .ind-dark-accent-stripe {
        left: 30px;
    }
}

/* ===========================================
   RESPONSIVE — 768px
   =========================================== */
@media (max-width: 768px) {
    .ind-wrap {
        padding: 0 24px;
    }

    /* Hero */
    .ind-hero {
        height: 440px;
    }

    .ind-hero-content h1 {
        font-size: 1.65rem;
    }

    /* Interest */
    .ind-interest {
        padding: 0;
        min-height: auto;
    }

    .ind-interest-grid {
        flex-direction: column;
    }

    .ind-interest-left,
    .ind-interest-right {
        flex: 1 1 auto;
        position: relative;
        height: auto;
    }

    .ind-interest-left {
        padding: 60px 24px;
    }

    .ind-interest-right {
        height: auto;
        padding: 40px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
    }

    .ind-interest-right img {
        height: auto;
        max-height: 400px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .ind-interest-body p {
        font-size: 1.05rem;
    }

    /* Why */
    .ind-why-section {
        padding: 70px 0 60px;
    }

    .ind-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ind-card {
        padding: 32px 26px;
    }

    .ind-card h3 {
        font-size: 1.25rem;
    }

    /* How I Work - FIX OVERFLOW */
    .ind-how-section {
        padding: 60px 0;
    }

    .ind-how-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ind-how-heading-col {
        justify-content: flex-start;
    }

    .ind-how-heading-col .ind-section-heading {
        text-align: left;
    }

    .ind-slider-viewport {
        overflow: hidden;
    }

    .ind-slider-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ind-how-slide {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ind-card.compact {
        width: 100%;
        box-sizing: border-box;
    }

    /* Full-bleed image */
    .ind-fullbleed-image img {
        height: 300px;
    }

    /* Dark section */
    .ind-dark {
        padding: 70px 0 80px;
    }

    .ind-dark-accent-stripe {
        display: none;
    }

    .ind-dark-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ind-dark-col h2 {
        font-size: 1.3rem;
    }
}

/* ===========================================
   RESPONSIVE — 480px
   =========================================== */
@media (max-width: 480px) {
    .ind-wrap {
        padding: 0 16px;
    }

    .ind-hero {
        height: 380px;
    }

    .ind-hero-content h1 {
        font-size: 1.3rem;
    }

    .ind-interest {
        padding: 0;
    }

    .ind-interest-left {
        padding: 50px 16px;
    }

    .ind-interest-right {
        padding: 30px 16px;
    }

    .ind-interest-right img {
        max-height: 350px;
    }

    .ind-interest-body p {
        font-size: 0.95rem;
    }

    .ind-why-section {
        padding: 50px 0;
    }

    .ind-card {
        padding: 26px 20px;
    }

    .ind-card h3 {
        font-size: 1.1rem;
    }

    .ind-card p {
        font-size: 0.9rem;
    }

    .ind-card.compact {
        padding: 22px 18px;
    }

    .ind-slider-track {
        gap: 24px;
    }

    .ind-how-slide {
        gap: 24px;
    }

    .ind-fullbleed-image img {
        height: 220px;
    }

    .ind-dark {
        padding: 50px 0 60px;
    }

    .ind-dark-col h2 {
        font-size: 1.15rem;
    }

    .ind-cta {
        font-size: 0.9rem;
    }
}
