/* ===== DESIGN TOKENS ===== */
:root {
    --bg-dark: #070707;
    --bg-card: #111111;
    --text-main: #fcfcfc;
    --text-muted: #888888;
    --accent-primary: #10b981;
    --accent-red: #ef4444;
    --border-color: rgba(255, 255, 255, 0.06);
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
.clash-font {
    font-family: var(--font-display);
    line-height: 0.95;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, #34d399, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.logo .logo-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo .logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.45em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-outline {
    padding: 0.65rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    background: transparent;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    padding: 0.85rem 1.75rem;
    background: var(--accent-primary);
    color: #000;
    border-radius: 4px;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.problem-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-primary);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem 5%;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-copy {
    flex: 1;
    max-width: 55%;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.guarantee {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ai-benefits {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.benefit-item {
    min-width: 0;
}

.benefit-item i {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== HERO VIDEO ===== */
.hero-media {
    flex: 0 0 auto;
    width: min(340px, 40vw);
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.audio-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #fff;
    transition: background 0.2s ease;
    z-index: 3;
}

.audio-hint:hover {
    background: rgba(0, 0, 0, 0.8);
}

.audio-hint i {
    width: 14px;
    height: 14px;
}

/* Replay overlay */
.replay-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.replay-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.replay-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.replay-btn i {
    width: 16px;
    height: 16px;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    padding: 2.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
}

.marquee-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 700;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.04);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    will-change: transform;
}

/* ===== SCROLL SECTIONS ===== */
.scroll-section {
    padding: 7rem 5%;
    position: relative;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.align-left .section-inner {
    max-width: 60%;
    margin-right: auto;
    margin-left: 10%;
}

.align-right .section-inner {
    max-width: 60%;
    margin-left: auto;
    margin-right: 10%;
}

.align-center .section-inner {
    text-align: center;
}

/* ========================================
   ABOUT / FOUNDER SECTION
   ======================================== */
.section-about {
    padding: 8rem 5%;
    min-height: auto;
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .section-heading {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.founder-heading {
    font-size: clamp(1.6rem, 3vw, 2.6rem) !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.about-text .section-body {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-text .section-body strong {
    color: #fff;
}

.about-visual {
    width: 100%;
    max-width: 650px;
    justify-self: end;
}

.founder-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.08), 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.founder-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 0 80px rgba(16, 185, 129, 0.12), 0 25px 60px rgba(0, 0, 0, 0.5);
}

.founder-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   BLUEPRINT (MASSIVE TYPOGRAPHY + NO CARDS)
   ======================================== */
.blueprint-massive {
    font-size: clamp(5rem, 12vw, 14rem);
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.blueprint-step .section-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-huge {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 700;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.06);
    transition: color 0.6s ease;
}

.step-huge.step-active {
    color: var(--accent-primary);
}

.step-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    margin-top: -1.5rem;
}

.step-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ========================================
   SPEC ADS GRID
   ======================================== */
.spec-ads-section {
    padding: 6rem 5%;
    background: rgba(16, 185, 129, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.portfolio-heading {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.spec-ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #0a0a0a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.spec-card video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.spec-card-info {
    padding: 1.25rem;
}

.spec-card-info h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.spec-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Card expand hint */
.card-expand-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.card-expand-hint i {
    width: 16px;
    height: 16px;
    color: #fff;
}

.spec-card:hover .card-expand-hint {
    opacity: 1;
}

/* Coming soon banner */
.coming-soon-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
}

.coming-soon-banner span {
    font-family: var(--font-display);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.coming-soon-banner .loading-ring {
    width: 20px;
    height: 20px;
}

/* Loading ring animation */
.loading-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 6rem 5%;
    border-top: 1px solid var(--border-color);
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.cta-hero {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-mega {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 4px;
}

/* zcal embed */
.zcal-embed-wrap {
    max-width: 1100px;
    margin: 2rem auto 0;
    min-height: 550px;
}

/* ========================================
   VIDEO LIGHTBOX
   ======================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close i {
    width: 22px;
    height: 22px;
}

.lightbox-content {
    width: min(90vw, 900px);
    max-height: 90vh;
}

.lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

/* ===== FOOTER ===== */
footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 5% 3rem 5%;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3.2rem);
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-media {
        width: min(300px, 80vw);
        order: -1;
    }

    .ai-benefits {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        min-width: auto;
        max-width: 260px;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-visual {
        justify-self: center;
        max-width: min(400px, 85vw);
    }

    .align-left .section-inner,
    .align-right .section-inner {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .step-heading {
        margin-top: -0.5rem;
    }

    .step-desc {
        margin: 0 auto;
    }

    .spec-ads-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-hero {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .scroll-section {
        padding: 5rem 5%;
    }
}

@media (max-width: 480px) {
    .hero-media {
        width: 240px;
    }

    .scroll-section {
        padding: 5rem 5%;
    }

    .about-visual {
        max-width: 320px;
    }

    .spec-ads-grid {
        max-width: 100%;
    }
}

/* ========================================
   THE AWARENESS STACK (METHODOLOGY)
   ======================================== */
.section-methodology {
    padding: 8rem 5%;
    position: relative;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
}

.methodology-centered {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.methodology-text-center .section-heading {
    margin-bottom: 2rem;
}

.true-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
    perspective: 1000px;
}

.pyramid-focus-group, .pyramid-bloodbath-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.pyramid-focus-group {
    margin-bottom: 4px;
}

.focus-label {
    position: absolute;
    top: -35px;
    font-family: var(--font-display);
    color: var(--accent-primary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.focus-label span {
    font-weight: 700;
}

.bloodbath-label {
    margin-top: 15px;
    font-family: var(--font-display);
    color: #ff4a4a;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.bloodbath-label span {
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pyramid-layer {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    border-bottom: none;
}

/* Connect the block physically */
.pl-1 { 
    width: 100%; 
    border-top-left-radius: 12px; 
    border-top-right-radius: 12px;
}
.pl-2 { width: 85%; }
.pl-3 { 
    width: 70%; 
    border-bottom-left-radius: 12px; 
    border-bottom-right-radius: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pl-4 { 
    width: 55%; 
    border-radius: 12px;
    border-bottom: 1px solid rgba(255, 74, 74, 0.4);
}

.highlight-layer:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.08);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
    border-radius: 8px; /* break out */
    border-bottom: 1px solid rgba(16, 185, 129, 0.5);
    z-index: 10;
}

.bloodbath-layer {
    background: rgba(40, 10, 10, 0.6);
    border-color: rgba(255, 74, 74, 0.2);
    opacity: 0.6;
}

.bloodbath-layer:hover {
    opacity: 1;
    border-color: rgba(255, 74, 74, 0.5);
    background: rgba(50, 15, 15, 0.8);
    box-shadow: 0 0 20px rgba(255, 74, 74, 0.2);
}

.pyramid-percent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;
    min-width: 90px;
    text-align: right;
}

.highlight-layer .pyramid-percent {
    color: var(--accent-primary);
}

.bloodbath-layer .pyramid-percent {
    color: #ff4a4a;
}

.pyramid-label {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .pyramid-layer { width: 100% !important; flex-direction: column; text-align: center; gap: 0.5rem; padding: 1rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .pl-1 { border-top-left-radius: 8px; border-top-right-radius: 8px; }
    .pl-3, .pl-4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
    .pyramid-percent { text-align: center; }
}

/* ========================================
   COLLABORATION PATHS
   ======================================== */
.section-paths {
    padding: 6rem 5% 8rem 5%;
    border-top: 1px solid var(--border-color);
}

.paths-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.paths-header {
    text-align: center;
    margin-bottom: 4rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .paths-grid {
        grid-template-columns: 1fr;
    }
}

.path-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.path-card:hover {
    background: rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.path-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.path-title {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.path-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.path-features {
    list-style: none;
    margin-bottom: 2rem;
}

.path-features li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.path-features li i {
    color: var(--accent-primary);
    width: 16px;
    height: 16px;
}

.path-card .btn-outline {
    width: 100%;
    justify-content: center;
    border-color: rgba(16, 185, 129, 0.3);
}

.path-card:hover .btn-outline {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
}