/* ============================================
   AI LAND FLIPPING - INSTITUTIONAL DESIGN
   BlackRock-Level Yellow & Black Theme
   ============================================ */

:root {
    /* Primary Colors */
    --gold: #F7C948;
    --gold-light: #FFE066;
    --gold-dark: #D4A012;
    --gold-glow: rgba(247, 201, 72, 0.15);

    /* Neutral Colors */
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    --gray-dark: #3A3A3A;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --white: #FFFFFF;
    --white-muted: #F5F5F5;

    /* Typography */
    --font-main: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(247, 201, 72, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-text .gold,
.gold {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--black-border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-cta {
    background: var(--gold);
    color: var(--black);
    padding: 20px 48px;
    font-size: 17px;
}

.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 var(--section-padding);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--gold-glow), transparent),
        radial-gradient(circle at 20% 80%, rgba(247, 201, 72, 0.05), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(247, 201, 72, 0.03), transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(48px, 5.5vw, 66px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(247, 201, 72, 0.1);
    border: 1px solid rgba(247, 201, 72, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
}

.hero-guarantee svg {
    color: var(--gold);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PLATFORM/METHOD SECTION
   ============================================ */

.platform {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.platform-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.platform-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.platform-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results {
    padding: var(--section-padding) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.1), transparent);
    border-color: rgba(247, 201, 72, 0.3);
}

.testimonial-result {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -1px;
}

.testimonial-timeframe {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info strong {
    display: block;
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.founder-content .section-tag,
.founder-content .section-title {
    text-align: left;
}

.founder-role {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 500;
}

.founder-bio {
    margin-bottom: 40px;
}

.founder-bio p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-bio strong {
    color: var(--white);
}

.founder-credentials {
    display: flex;
    gap: 40px;
}

.credential {
    text-align: left;
}

.credential-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -1px;
}

.credential-label {
    font-size: 13px;
    color: var(--gray);
}

/* Founder Visual Card */
.founder-visual {
    display: flex;
    justify-content: center;
}

.founder-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    max-width: 320px;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid var(--gold);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-card-content {
    text-align: center;
}

.founder-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.founder-title {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.founder-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-light);
}

.founder-location svg {
    color: var(--gold);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.features-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.feature-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

.feature-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--gold-glow), transparent 60%);
    pointer-events: none;
}

.cta-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    display: inline-flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 24px 32px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    text-align: left;
}

.cta-guarantee svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-guarantee strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.cta-guarantee span {
    font-size: 14px;
    color: var(--gray-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 80px 0 40px;
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 20px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--black-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founder-visual {
        order: -1;
    }

    .founder-content .section-tag,
    .founder-content .section-title {
        text-align: center;
    }

    .founder-role {
        text-align: center;
    }

    .founder-credentials {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger & Mobile Menu - hidden on desktop */
.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .logo-text {
        font-size: 17px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--black-border);
        padding: 20px 40px;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-light);
        border-bottom: 1px solid var(--black-border);
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover {
        color: var(--gold);
    }

    .mobile-menu-cta {
        margin-top: 8px;
        padding: 14px 0 !important;
        color: var(--gold) !important;
        font-weight: 600 !important;
        border-bottom: none !important;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .founder-credentials {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .credential {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-guarantee {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .features-grid.three-col {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */

.video-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-slide.active {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 500px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
    display: none;
}

.video-wrapper video.playing {
    display: block;
}

/* Video Poster / Thumbnail Overlay */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
}

.video-poster:hover {
    transform: scale(1.02);
}

.video-poster:hover .play-btn-overlay {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(247, 201, 72, 0.5);
}

.play-btn-overlay {
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 0 24px rgba(247, 201, 72, 0.35);
}

.play-btn-overlay svg {
    width: 28px;
    height: 28px;
    color: var(--black);
    margin-left: 3px;
}

.video-poster.hidden {
    display: none;
}

.video-info {
    padding: 24px;
    text-align: center;
}

.video-info .testimonial-result {
    font-size: 32px;
}

.video-info .testimonial-timeframe {
    margin-bottom: 16px;
}

.video-info .testimonial-author {
    justify-content: center;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: var(--transition);
}

.carousel-btn:hover svg {
    color: var(--black);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--gold-dark);
}

/* ============================================
   AS SEEN ON / PODCAST SECTION
   ============================================ */

.as-seen-on {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.podcast-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.podcast-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.podcast-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--black);
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.podcast-info {
    padding: 24px;
}

.podcast-show {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.podcast-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.podcast-info p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ============================================
   WHO THIS IS FOR SECTION
   ============================================ */

.who-for {
    padding: var(--section-padding) 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.who-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 40px;
}

.who-card.for {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), transparent);
}

.who-card.not-for {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
}

.who-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.who-header svg {
    width: 28px;
    height: 28px;
}

.who-card.for .who-header svg {
    color: #22c55e;
}

.who-card.not-for .who-header svg {
    color: #ef4444;
}

.who-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.who-card ul {
    list-style: none;
}

.who-card li {
    font-size: 15px;
    color: var(--gray-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--black-border);
    padding-left: 28px;
    position: relative;
}

.who-card li:last-child {
    border-bottom: none;
}

.who-card.for li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.who-card.not-for li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.timeline {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--black-border);
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-marker {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 24px;
}

.timeline-period {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: var(--section-padding) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.faq-item p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.1), transparent);
    border: 2px solid rgba(247, 201, 72, 0.3);
    border-radius: 20px;
    padding: 48px;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    color: var(--black);
}

.guarantee-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.guarantee-content > p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.guarantee-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.guarantee-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.guarantee-points svg {
    color: var(--gold);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-light);
}

.trust-badge svg {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */

@media (max-width: 1024px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .timeline-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-track::before {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .guarantee-points {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .timeline-track {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .guarantee-box {
        padding: 32px 24px;
    }

    .guarantee-content h2 {
        font-size: 24px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .who-card {
        padding: 28px;
    }

    .who-header h3 {
        font-size: 18px;
    }
}
