/* Fonts are loaded in the HTML head via link tags to avoid double-loading */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* --- RESET & VARIABLES --- */
.tlb-tc-wrapper {
    --c-bg: #0D0D0D;
    --c-bg-card: rgba(255, 255, 255, 0.03);
    --c-lime: #C2F707;
    --c-lime-dim: rgba(194, 247, 7, 0.1);
    --c-text-white: #FFFFFF;
    --c-text-gray: #A1A1AA;
    --c-border: rgba(255, 255, 255, 0.1);

    font-family: 'SUIT', sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text-white);
    line-height: 1.6;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.tlb-tc-wrapper *,
.tlb-tc-wrapper *::before,
.tlb-tc-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global Typography - Relying on inheritance from wrapper and global site styles */
.tlb-tc-wrapper {
    font-family: 'SUIT', sans-serif;
}

.tlb-tc-h2,
.tlb-tc-h3-highlight,
.tlb-tc-hero-title,
.tlb-tc-benefits-h3,
.tlb-tc-feature-h3-v2,
.tlb-tc-section-h2,
.tlb-tc-how-h2,
.tlb-tc-module-h2,
.tlb-tc-recommend-h2,
.tlb-tc-faq-h2,
.tlb-tc-final-h2,
.tlb-tc-final-footer-h3,
.tlb-tc-feature-h3,
.tlb-tc-what-h2,
.tlb-tc-solution-h3 {
    font-family: 'SUITE', sans-serif !important;
    /* Keep essential override for headers */
    letter-spacing: -0.025em;
}

/* Ensure all children of headers inherit the header's font (SUITE) */
[class^="tlb-tc-"][class$="-h2"] *,
[class^="tlb-tc-"][class$="-h3"] *,
.tlb-tc-hero-title *,
.tlb-tc-h3-highlight * {
    font-family: inherit !important;
}

.tlb-tc-wrapper strong,
.tlb-tc-wrapper b {
    font-weight: 700;
    color: var(--c-text-white);
    font-family: inherit;
    /* Naturally inherit SUITE if inside header, otherwise SUIT */
}

.tlb-tc-wrapper a {
    text-decoration: none;
    color: inherit;
}

.tlb-tc-wrapper ul {
    list-style: none;
}

/* --- UTILITIES --- */
.tlb-tc-container {
    max-width: 860px;
    /* Reduced from 1000px for better balance */
    margin: 0 auto;
    padding: 0 20px;
}


.tlb-tc-text-lime {
    color: var(--c-lime);
}

.tlb-tc-text-gray {
    color: var(--c-text-gray);
}

.tlb-tc-text-center {
    text-align: center;
}

.tlb-tc-fw-700 {
    font-weight: 700;
}

.tlb-tc-fw-900 {
    font-weight: 700;
}

.tlb-tc-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tlb-tc-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tlb-tc-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.tlb-tc-grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .tlb-tc-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlb-tc-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tlb-tc-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .tlb-tc-grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .tlb-tc-desktop-flex-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}

/* --- COMPONENTS --- */
.tlb-tc-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.tlb-tc-card:hover {
    border-color: rgba(194, 247, 7, 0.3);
    transform: translateY(-3px);
}

.tlb-tc-btn-lime {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--c-lime);
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 40px;
    height: 64px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(194, 247, 7, 0.2);
    transition: all 0.2s;
    width: 100%;
    max-width: 360px;
    cursor: pointer;
}

.tlb-tc-btn-lime:hover {
    box-shadow: 0 0 40px rgba(194, 247, 7, 0.5);
    transform: scale(1.02);
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

.tlb-tc-badge {

    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tlb-tc-badge.lime {
    background: var(--c-lime);
    color: #000;
}

.tlb-tc-badge.outline {
    border: 1px solid var(--c-lime);
    color: var(--c-lime);
}

/* --- SECTIONS --- */
.tlb-tc-wrapper section {
    padding: 80px 0;
    position: relative;
}


/* 1. HERO */
.tlb-tc-hero {
    padding-top: 140px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 50% 0%, rgba(194, 247, 7, 0.08) 0%, transparent 60%);
    text-align: center;
}

.tlb-tc-hero h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 700;
}

.tlb-tc-hero p {
    font-size: 1.2rem;
    color: var(--c-text-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- NEW HERO INFO BAR --- */
.tlb-tc-info-bar {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    /* Center wider for Duration */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    max-width: 800px;
    /* Limit width */
    margin-left: auto;
    margin-right: auto;
}

.tlb-tc-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tlb-tc-info-item:last-child {
    border-right: none;
}

.tlb-tc-info-item label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile: Stack if too narrow? Or keep horizontal?
   User asked for 3-slot readability. Horizontal is likely preferred if fits. */
@media (max-width: 600px) {
    .tlb-tc-info-bar {
        grid-template-columns: 1fr 1.6fr 1fr;
    }

    .tlb-tc-info-item {
        padding: 15px 5px;
    }

    .tlb-tc-info-item label {
        font-size: 0.7rem;
    }

    .tlb-tc-info-item strong {
        font-size: 1.1rem !important;
    }
}

.tlb-tc-chip-lime {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(194, 247, 7, 0.1);
    color: var(--c-lime);
    border: 1px solid rgba(194, 247, 7, 0.3);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tlb-tc-info-tab strong {
    display: block;
    font-size: 1rem;
}

/* 2. WHY */
.tlb-tc-dilemma-box {
    border-left: 4px solid var(--c-lime);
    background: linear-gradient(90deg, rgba(194, 247, 7, 0.05) 0%, transparent 100%);
    padding: 30px;
    margin: 40px 0;
    font-size: 1.1rem;
    color: #ddd;
}

.tlb-tc-dilemma-item {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.tlb-tc-dilemma-item::before {
    content: '•';
    color: var(--c-lime);
}

/* 3. SOLUTION */
.tlb_tc_solution_section {
    background-color: #1a1a1a;
}

.tlb-tc-solution-banner {
    background: #111;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #222;
    margin-top: 40px;
}

/* 4. WHAT */
.tlb-tc-feature-card {
    position: relative;
    height: 100%;
}

.tlb-tc-feature-num {
    font-size: 4rem;
    font-weight: 700;
    color: #222;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.tlb-tc-feature-list li {
    font-size: 0.9rem;
    color: #888;
    margin-top: 8px;
    padding-left: 12px;
    position: relative;
}

.tlb-tc-feature-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--c-lime);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.tlb-tc-how-section {
    background: #1a1b23;
    /* Significantly lighter and more distinct */
    padding: 100px 0;
}


/* CSS v28 */
.tlb-tc-calendar-board {
    margin-top: 40px;
    margin-bottom: 30px;

    /* Reduced from 80px */
    background: #1a1b23;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tlb-tc-cal-col {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.tlb-tc-cal-col:last-child {
    border-right: none;
}

.tlb-tc-cal-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tlb-tc-cal-col.active .tlb-tc-cal-header {
    background: rgba(194, 247, 7, 0.1);
}

.tlb-tc-cal-day-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
}

.tlb-tc-cal-col.active .tlb-tc-cal-day-name {
    color: var(--c-lime);
}

.tlb-tc-cal-body {
    flex: 1;
    padding: 40px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.tlb-tc-cal-content {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    word-break: keep-all;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tlb-tc-cal-sub {
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
}

.tlb-tc-cal-col.active .tlb-tc-cal-sub {
    color: rgba(194, 247, 7, 0.6);
}


.tlb-tc-cal-col.dim .tlb-tc-cal-content {
    color: #555;
}

.tlb-tc-cal-col.active .tlb-tc-cal-content {
    color: var(--c-lime);
}

@media (max-width: 767px) {
    .tlb-tc-calendar-board {
        grid-template-columns: 1fr;
    }

    .tlb-tc-cal-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: row;
        align-items: center;
    }

    .tlb-tc-cal-header {
        width: 80px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px 10px;
    }

    .tlb-tc-cal-body {
        padding: 20px;
        min-height: auto;
        text-align: left;
        align-items: flex-start;
    }
}



/* 5. STATS: Immersive Scoreboard Redesign */
.tlb-tc-stats-immersive {
    margin: 40px 0 10px;
    /* Reduced bottom margin from 30px */
    padding: 60px 40px 20px;
    /* Reduced bottom padding from 40px */
    background: radial-gradient(circle at center, rgba(194, 247, 7, 0.05) 0%, transparent 70%);
    text-align: center;
}




.tlb-tc-stats-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    /* Reduced from 60px */
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}


.tlb-tc-stat-unit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    /* Reduced from 180px */
    position: relative;
}


/* Atmospheric Glow Background for each unit */
.tlb-tc-stat-unit-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.tlb-tc-stat-main-label {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.tlb-tc-stat-big-num {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: 'SUITE', sans-serif;
    letter-spacing: -0.025em;
}


.tlb-tc-stat-big-num .unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    margin-left: 2px;
    letter-spacing: 0;
}

.tlb-tc-stat-sub-info {
    font-size: 1.1rem;
    color: var(--c-lime);
    font-weight: 700;
    margin-top: 10px;
    opacity: 0.8;
}

.tlb-tc-stat-divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    align-self: center;
}

/* TOTAL Score Area */
.tlb-tc-stats-total-wrapper {
    margin-top: 40px;
    /* Reduced from 60px */
    padding: 30px 0 10px;
    /* Reduced padding from 40px */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}



.tlb-tc-total-intro {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.tlb-tc-total-giant {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Stacked for perfect centering and to avoid overlap */
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* Tight gap between number and unit */
    white-space: nowrap;
}



.tlb-tc-total-giant .tlb-tc-stat-giant-num {
    font-size: 10rem;
    /* Slightly larger since it's stacked now */
    font-weight: 700;
    color: var(--c-lime);
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 50px rgba(194, 247, 7, 0.4);
    font-family: 'SUITE', sans-serif;
    /* Imweb Conflict Fix: Override global .num styles */
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}




.tlb-tc-total-giant .unit {
    font-size: 1.8rem;
    /* Scaled down for stack layout */
    font-weight: 700;
    color: #fff;
    opacity: 0.9;
}



.tlb-tc-total-footer {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    /* Reduced from 15px */
    opacity: 0.9;
}



@media (max-width: 767px) {
    .tlb-tc-stats-container {
        gap: 40px;
    }

    .tlb-tc-stat-divider {
        display: none;
    }

    .tlb-tc-stat-big-num {
        font-size: 4rem;
    }

    .tlb-tc-total-giant .num {
        font-size: 8rem;
        letter-spacing: -4px;
    }

    .tlb-tc-total-giant .unit {
        font-size: 2rem;
    }
}




/* 6. MODULE */
.tlb-tc-module-viz {
    display: flex;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.tlb-tc-mod-box {
    flex: 1;
    max-width: 150px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid #333;
    background: #111;
    color: #666;
    height: 120px;
}

.tlb-tc-mod-box.active {
    background: var(--c-lime);
    color: #000;
    border: none;
    height: 160px;
    box-shadow: 0 0 30px rgba(194, 247, 7, 0.2);
    font-size: 1.2rem;
    flex-direction: column;
}

/* 8. FAQ */
.tlb-tc-wrapper details {
    background: #151515;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.tlb-tc-wrapper summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tlb-tc-wrapper summary::-webkit-details-marker {
    display: none;
}

.tlb-tc-wrapper summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
}

.tlb-tc-wrapper details[open] summary::after {
    content: '-';
}

.tlb-tc-wrapper details[open] summary {
    color: var(--c-lime);
}

.tlb-tc-faq-ans {
    padding: 0 20px 20px;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* 9. PRICE */
.tlb-tc-price-card {
    background: #111;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

/* --- SCROLL ANIMATION --- */
.tlb_tc_scroll_reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.tlb_tc_scroll_reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HERO V2 (Split Layout) --- */
.tlb-tc-hero-v2 {
    position: relative;
    padding: 60px 0 40px;
    /* Background Image: Center centered and covers full section height 100% */
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.8) 50%, rgba(5, 5, 5, 0.4) 100%),
        url('../images/hero_bg_neon.png') no-repeat center center / cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}




.tlb-tc-hero-logo-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .tlb-tc-hero-logo-row {
        justify-content: center;
    }
}

.tlb-tc-hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 768px) {
    .tlb-tc-hero-split {
        flex-direction: column;
        text-align: center;
    }
}

.tlb-tc-hero-text {
    flex: 1;
    min-width: 0;
}

.tlb-tc-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tlb-tc-hero-img-3d {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(194, 247, 7, 0.2));
    animation: tlb-float 4s ease-in-out infinite;
}

@keyframes tlb-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tlb-tc-hero-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
}

.tlb-tc-hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tlb-tc-hero-title {
        font-size: 2.2rem;
    }
}

/* Ticket Info Grid (Mini Table) */
.tlb-tc-hero-info-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

@media (max-width: 768px) {
    .tlb-tc-hero-info-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 20px;
        text-align: center;
        justify-content: center;
    }
}

.tlb-tc-info-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tlb-tc-info-cell label {
    font-size: 0.85rem;
    color: var(--c-lime);
    font-weight: 700;
    opacity: 0.8;
}

.tlb-tc-info-cell strong {
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

/* --- BENEFITS BAR (Floating Box) --- */
.tlb-tc-benefits-section-v2 {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 30px;
}

.tlb-tc-benefits-header-v2 {
    text-align: center;
    margin-bottom: 2px;
}

.tlb-tc-benefits-box {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px 18px 24px;
    /* Restored top padding, kept bottom tight */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}




.tlb-tc-benefits-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Back to 6 columns as requested */
    gap: 20px 10px;
}

.tlb-tc-benefits-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'SUITE', sans-serif !important;
}

@media (max-width: 900px) {
    .tlb-tc-benefits-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    .tlb-tc-benefits-h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .tlb-tc-benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


.tlb-tc-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.tlb-tc-icon-lime {
    font-size: 40px;
    /* Increased size */
    color: var(--c-lime);
    background: rgba(194, 247, 7, 0.1);
    padding: 12px;
    /* Increased padding */
    border-radius: 50%;
}



.tlb-tc-benefit-item p {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

/* Scroll Reveal Base (Reuse existing or ensure defined) */
/* Already defined above */



/* --- LEET Dilemma Section (Centered Chips) --- */
.tlb-tc-dilemma-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    /* Ensures chips are centered in container */
    margin: 40px 0;
    width: 100%;
    /* Full width */
}

/* --- SECTION HEADERS (Generic) --- */
.tlb-tc-section-header {
    text-align: center !important;
    width: 100% !important;
    max-width: 1000px;
    margin: 0 auto 3rem auto !important;
    display: block !important;
}

.tlb-tc-h2 {
    font-weight: 700;
    line-height: 1.3;
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.tlb-tc-dilemma-chip {
    /* Neon Lime Gradient (Subtle) */
    background: linear-gradient(90deg, #C2F707 0%, #E2FF80 100%);
    border: 1px solid rgba(194, 247, 7, 0.3);
    color: #000000 !important;
    /* Force Black Text */
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    /* Center content horizontally inside chip */
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    max-width: 95%;
    /* Neon Glow */
    box-shadow: 0 0 25px rgba(194, 247, 7, 0.25) !important;
}

.tlb-tc-dilemma-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    /* Subtle hover shadow */
}

.tlb-tc-dilemma-chip span,
.tlb-tc-dilemma-chip strong {
    color: #000000 !important;
    /* Ensure child elements are also black */
}

.tlb-tc-dilemma-icon {
    color: #d00000 !important;
    /* Cleaner Red */
    font-size: 32px;
    font-weight: 700;
}

.tlb-tc-h3-highlight {
    font-size: 1.92rem;
    line-height: 1.35;
    color: #fff;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .tlb-tc-dilemma-chip {
        font-size: 0.95rem;
        padding: 15px 20px;
        text-align: left;
        border-radius: 12px;
        /* Less rounded on mobile for text wrap */
    }

    .tlb-tc-h3-highlight {
        font-size: 1.3rem;
    }
}

/* --- REFACTOR UTILITIES (Added to replace inline styles) --- */
.tlb-tc-logo-img {
    height: 22px;
    opacity: 0.9;
}

.tlb-tc-text-lime-underline {
    color: var(--c-lime);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(194, 247, 7, 0.5);
}

.tlb-tc-text-caption-sm {
    color: #555;
    font-size: 0.75rem;
    letter-spacing: -0.5px;
}

.tlb-tc-logo-img-tc {
    height: 22px;
}

.tlb-tc-logo-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 12px;
}

.tlb-tc-benefits-wrapper {
    margin-top: 10px;
}

.tlb-tc-header-mb-3rem {
    margin-bottom: 3rem;
}

.tlb-tc-mb-3rem {
    margin-bottom: 3rem;
}

.tlb-tc-desc-center {
    font-size: 1.25rem;
    color: #bbb;
    margin-top: 24px;
    line-height: 1.6;
    text-align: center;
}

.tlb-tc-conclusion-wrapper {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
}

.tlb-tc-conclusion-text {
    margin-bottom: 30px;
    font-size: 1.25rem;
    color: #bbb;
    line-height: 1.6;
}

.tlb-tc-solution-mb {
    margin-bottom: 20px;
}

.tlb-tc-solution-grid-wrapper {
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tlb-tc-solution-card {
    padding: 15px;
    font-size: 0.95rem;
}

.tlb-tc-solution-h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tlb-tc-txt-gray-mt40-sm {
    color: var(--c-text-gray);
    margin-top: 40px;
    font-size: 0.9rem;
}

.tlb-tc-what-h2 {
    margin-bottom: 40px;
}

.tlb-tc-feature-h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tlb-tc-feature-desc {
    color: var(--c-text-gray);
    margin-bottom: 15px;
}

.tlb-tc-how-flex-row {
    margin-bottom: 30px;
}

.tlb-tc-how-h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tlb-tc-cal-day-dim {
    opacity: 0.5;
}

.tlb-tc-cal-summary {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.tlb-tc-cal-note {
    font-size: 0.9rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--c-text-gray);
}

.tlb-tc-task-stack {
    max-width: 750px;
    /* Even more compact to reduce empty space on the right */
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}



.tlb-tc-task-row {
    display: flex;
    align-items: center;
    /* Center chip and content vertically */
    gap: 30px;
    /* Reduced gap between chip and text area for better balance */
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tlb-tc-task-row:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(194, 247, 7, 0.2);
    transform: translateX(10px);
}

.tlb-tc-task-head {
    flex-shrink: 0;
    width: auto;
    /* Let it fit the content */
    min-width: 140px;
}


.tlb-tc-task-head .tlb-tc-badge {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 10px 18px;
    border-color: rgba(194, 247, 7, 0.4);
    white-space: nowrap;
    /* Prevents line breaks */
}


.tlb-tc-task-head .tlb-tc-badge {
    margin-bottom: 0;
}

.tlb-tc-task-content {
    flex: 1;
}


.tlb-tc-feature-list.v3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Increased slightly */
    margin: 0;
    /* Reset default margins */
    padding: 0;
    /* Reset default padding */
    list-style: none;
    /* Ensure no default bullets if any */
}


.tlb-tc-feature-list.v3 li {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    /* Natural, balanced gap after fixing the overlapping issue */
    line-height: 1.2;
    margin: 0;
    padding: 0;
    position: relative;
}






.tlb-tc-feature-list.v3 li::before {
    content: "";
    position: static;
    /* Vital: Override base position: absolute */
    top: auto;
    left: auto;
    width: 8px;
    height: 8px;
    background: var(--c-lime);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--c-lime);
    margin: 0;
}



@media (max-width: 767px) {
    .tlb-tc-task-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }

    .tlb-tc-task-head {
        width: auto;
    }

    .tlb-tc-feature-list.v3 li {
        font-size: 1.2rem;
    }
}


.tlb-tc-stat-label {
    font-size: 0.8rem;
    color: var(--c-text-gray);
}

.tlb-tc-stat-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-left: 4px;
}

.tlb-tc-stat-item-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlb-tc-stat-total-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-lime);
}

.tlb-tc-stat-total-val {
    font-size: 2rem;
}

.tlb-tc-how-footer {
    margin-top: 5px;
    /* Significantly reduced to fix wide gap */
    text-align: center;
}



/* --- COMPACT CURRICULUM PILLAR DESIGN --- */
.tlb-tc-curriculum-compact {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    max-width: 900px;
    margin: 20px auto 40px;
    /* Reduced top margin to 20px for chip spacing */
    background: rgba(10, 10, 10, 0.8);
    /* Semi-transparent */
    backdrop-filter: blur(10px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.tlb-tc-curr-labels {
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.tlb-tc-curr-lab {
    height: 48px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    letter-spacing: -0.01em;
}

.tlb-tc-curr-lab:last-child {
    border-bottom: none;
}

.tlb-tc-curr-pillar {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-rows: repeat(6, 48px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tlb-tc-curr-pillar:last-child {
    border-right: none;
}

.tlb-tc-curr-pillar:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Module Colors - Deepened for better contrast on glass */
.tlb-mod-a {
    --mod-color: #c2f707;
    --mod-bg: rgba(194, 247, 7, 0.08);
}

.tlb-mod-b {
    --mod-color: #ff9d42;
    --mod-bg: rgba(255, 157, 66, 0.08);
}

.tlb-mod-c {
    --mod-color: #00b4ff;
    --mod-bg: rgba(0, 180, 255, 0.08);
}

.tlb-tc-curr-pillar.active {
    background: var(--mod-bg);
    border-left: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
}

/* Central Module Tag Split */
.tlb-tc-curr-mod-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    opacity: 0.12;
    transition: all 0.5s ease;
}

.tlb-tc-curr-mod-tag small {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    color: inherit;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.tlb-tc-curr-mod-tag strong {
    display: block;
    font-family: 'SUITE', sans-serif !important;
    font-weight: 700;
    font-size: 2.8rem;
    color: inherit;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 0 10px transparent);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform, opacity, filter;
}

/* Remove hover to prevent manual overrides, only active class drives animation */
.tlb-tc-curr-pillar.active .tlb-tc-curr-mod-tag {
    opacity: 1;
    color: var(--mod-color);
    filter: drop-shadow(0 0 25px var(--mod-color));
}

.tlb-tc-curr-pillar.active .tlb-tc-curr-mod-tag small {
    transform: translateY(-8px);
    /* More spacing */
}

.tlb-tc-curr-pillar.active .tlb-tc-curr-mod-tag strong {
    transform: scale(1.8) translateY(8px);
    /* Dramatic scale + spacing */
}

/* Background Image for Section */
.tlb_tc_rotation_section {
    background-color: #000;
    background-image: url('../images/tlb-tc-practice-cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    /* Slightly more vertical breathing room */
}

/* Extreme subtlety overlay */
.tlb_tc_rotation_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.94);
    /* Extreme subtlety */
    z-index: 1;
}

.tlb_tc_rotation_section .tlb-tc-container {
    position: relative;
    z-index: 2;
}

/* Bottom Text Sync */
.tlb_tc_rotation_section .tlb-tc-desc-center {
    color: #888 !important;
}


.tlb-tc-curr-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.tlb-tc-curr-box:last-child {
    border-bottom: none;
}


@media (max-width: 768px) {
    .tlb-tc-curriculum-compact {
        grid-template-columns: 130px repeat(3, 1fr);
    }

    .tlb-tc-curr-lab {
        padding-left: 12px;
        font-size: 0.75rem;
        height: 42px;
    }

    .tlb-tc-curr-pillar {
        grid-template-rows: repeat(6, 42px);
    }

    .tlb-tc-curr-mod-tag strong {
        font-size: 1.6rem;
    }
}




/* --- CURRICULUM CHIP --- */
.tlb-tc-curr-chip-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    /* Requested gap */
}

.tlb-tc-curr-chip {
    background: rgba(194, 247, 7, 0.1);
    border: 1px solid rgba(194, 247, 7, 0.3);
    color: #c2f707;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- RECOMMENDED FOR SECTION (White Chips) --- */
.tlb_tc_recommend_section {
    background: #0f1115;
    /* Contrasting dark background */
    padding: 100px 0;
}

.tlb-tc-recommend-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 50px auto 0;
    width: fit-content;
    /* Container shrinks to fit longest child */
}

.tlb-tc-recommend-chip {
    background: rgba(255, 255, 255, 0.03);
    /* Soft glass */
    color: #e0e0e0;
    /* Soft contrast white */
    padding: 16px 35px;
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: tlbFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes tlbFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tlb-tc-recommend-chip:nth-child(1) {
    animation-delay: 0.1s;
}

.tlb-tc-recommend-chip:nth-child(2) {
    animation-delay: 0.25s;
}

.tlb-tc-recommend-chip:nth-child(3) {
    animation-delay: 0.4s;
}

.tlb-tc-recommend-chip:nth-child(4) {
    animation-delay: 0.55s;
}

.tlb-tc-recommend-chip:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(194, 247, 7, 0.3);
    /* Subtle lime glow on border */
    box-shadow: 0 10px 30px rgba(194, 247, 7, 0.05);
}

.tlb-tc-recommend-chip .material-symbols-outlined {
    font-size: 28px;
    color: var(--c-lime);
    font-variation-settings: 'FILL' 1, 'wght' 700;
}

.tlb-tc-recommend-chip span:last-child {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tlb_tc_recommend_section {
        padding: 70px 0;
    }

    .tlb-tc-recommend-grid {
        width: 100%;
    }

    .tlb-tc-recommend-chip {
        padding: 16px 25px;
        border-radius: 12px;
    }

    .tlb-tc-recommend-chip span:last-child {
        font-size: 0.95rem;
        white-space: normal;
        line-height: 1.4;
    }
}

.tlb-tc-faq-h2 {
    margin-bottom: 30px;
}

.tlb-tc-final-section {
    background: #000;
    padding: 120px 0;
    border: none;
}

.tlb-tc-final-price-label {
    font-size: 0.9rem;
    color: var(--c-lime);
    font-weight: 700;
    margin-bottom: 5px;
}

.tlb-tc-final-h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.tlb-tc-final-info-box {
    text-align: left;
    background: #1A1A1A;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.tlb-tc-final-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tlb-tc-final-price-val {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.tlb-tc-final-footer {
    margin-top: 80px;
    text-align: center;
}

.tlb-tc-final-footer-h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tlb-tc-final-footer-desc {
    color: var(--c-text-gray);
    margin-bottom: 40px;
}

.tlb-tc-final-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.tlb-tc-text-spacing-tight {
    letter-spacing: -0.5px;
}

/* --- Speech Bubble Problem Cards (Section 3) --- */
.tlb-tc-solution-bubbles-wrapper {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Tighter gap */
}

.tlb-tc-bubble-item {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.tlb-tc-bubble-item.tlb-char-right {
    justify-content: flex-end;
}

.tlb-tc-char-box {
    flex-shrink: 0;
    width: 160px;
    /* Increased from 130px */
    height: 160px;
    /* Increased from 130px */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tlbEmojiFloat 3s infinite ease-in-out;
    position: relative;
    z-index: 2;
    /* Ensure it stays on top */
}

.tlb-char-left .tlb-tc-char-box {
    margin-right: -40px;
    /* Overlap right */
}

.tlb-char-right .tlb-tc-char-box {
    margin-left: -40px;
    /* Overlap left */
}

.tlb-tc-bubble-item:nth-child(2) .tlb-tc-char-box {
    animation-delay: 0.5s;
}

.tlb-tc-bubble-item:nth-child(3) .tlb-tc-char-box {
    animation-delay: 1s;
}

@keyframes tlbEmojiFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.tlb-tc-char-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    /* Deepened shadow for layer effect */
}

@media (max-width: 768px) {
    .tlb-tc-solution-bubbles-wrapper {
        gap: 30px;
        /* Increase gap slightly for vertical stack */
    }

    .tlb-tc-bubble-item {
        flex-direction: column !important;
        /* Stack vertically */
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    /* Reorder for Right Character to appear visually logical if needed, 
       but default column stack is Image -> Bubble or Bubble -> Image depending on markup order.
       Let's enforce Image First for consistent "Speaker" feel */

    .tlb-tc-bubble-item.tlb-char-right {
        flex-direction: column-reverse !important;
        /* Image on top */
    }

    .tlb-tc-char-box {
        width: 80px;
        /* Reduced from 130px */
        height: 80px;
    }

    .tlb-tc-problem-card {
        max-width: 100%;
        width: 100%;
        padding: 24px 20px;
        text-align: center;
    }

    .tlb-tc-problem-label {
        font-size: 1.1rem;
    }

    .tlb-tc-problem-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.tlb-tc-problem-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    /* Sharper, modern radius */
    padding: 24px 28px;
    /* Significantly reduced padding */
    flex: 1;
    max-width: 540px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tlb-tc-problem-label {
    font-size: 1.25rem;
    font-weight: 700;
    /* Extra bold */
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.tlb-tc-problem-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.tlb-tc-problem-card::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: inherit;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-50%) rotate(45deg);
    z-index: -1;
}

/* Bubble Tail - Left Character */
.tlb-char-left .tlb-tc-problem-card::before {
    left: -8px;
}

/* Bubble Tail - Right Character */
.tlb-char-right .tlb-tc-problem-card::before {
    right: -8px;
    border-left: none;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tlb-tc-problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 247, 7, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.tlb-tc-section-head.center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tlb-tc-section-h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tlb-tc-section-p {
    font-size: 1.25rem;
    color: #999;
    line-height: 1.6;
    word-break: keep-all;
}


/* Remove old icon styles */


@media (max-width: 768px) {
    .tlb-tc-bubble-item {
        flex-direction: column !important;
        align-items: center;
        gap: 15px;
    }

    .tlb-tc-char-box {
        width: 100px;
        height: 100px;
    }

    .tlb-tc-problem-card {
        padding: 30px;
        border-radius: 20px;
        text-align: center;
    }

    .tlb-tc-problem-card::before {
        display: none;
        /* Hide tail on mobile stack */
    }

    .tlb-tc-problem-label {
        font-size: 1.1rem;
    }

    .tlb-tc-problem-text {
        font-size: 1rem;
    }
}

/* --- 1-Column Feature Rows (Section 4) --- */
.tlb-tc-feature-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.tlb-tc-feature-row {
    display: flex;
    align-items: stretch;
    /* Content and image same height */
    gap: 0;
    /* Flush to the edge */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    /* Remove overall padding */
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 420px;
    /* Reduced from 480px */
}


.tlb-tc-feature-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(194, 247, 7, 0.3);
}

.tlb-tc-feature-img-box {
    flex: 0 0 32%;
    /* Fixed width for image */
    overflow: hidden;
    position: relative;
}


.tlb-tc-feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the area */
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tlb-tc-feature-row:hover .tlb-tc-feature-img-box img {
    transform: scale(1.05);
}

.tlb-tc-feature-content {
    flex: 0 0 68%;
    padding: 35px 50px;
    /* Reduced from 50px 60px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensure top alignment */
}



.tlb-tc-feature-h3-v2 {
    font-size: 2rem;
    /* Slighly smaller for tighter fit */
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    /* Reduced from 24px */
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -0.5px;
}



.tlb-tc-feature-num-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    background: var(--c-lime);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom-right-radius: 15px;
    /* Only bottom-right rounded */
    z-index: 2;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}


.tlb-tc-feature-desc-v2 {
    font-size: 1.05rem;
    /* Reduced from 1.15rem */
    color: #bbb;
    line-height: 1.55;
    margin-bottom: 20px;
    /* Reduced from 24px */
    word-break: keep-all;
}



.tlb-tc-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tlb-tc-check-list li {
    position: relative;
    padding-left: 40px;
    font-size: 1.25rem;
    color: #eee;
    line-height: 1.4;
    font-weight: 600;
    /* Increased from 500 */
}

.tlb-tc-list-caption {
    display: block;
    font-size: 0.95rem;
    color: #888;
    margin-top: 4px;
    font-weight: 400;
}

.tlb-tc-feature-note {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
    font-style: italic;
}


.tlb-tc-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-lime);
    font-size: 1.7rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .tlb-tc-feature-row {
        flex-direction: column;
        border-radius: 20px;
    }

    .tlb-tc-feature-img-box {
        flex: 0 0 240px;
        /* Fixed height for mobile image */
        min-width: 100%;
    }

    .tlb-tc-feature-content {
        flex: 1;
        padding: 40px 30px;
    }

    .tlb-tc-feature-h3-v2 {
        font-size: 1.8rem;
    }

    .tlb-tc-feature-desc-v2 {
        font-size: 1.2rem;
    }

    .tlb-tc-check-list li {
        font-size: 1.15rem;
        padding-left: 35px;
    }
}

@media (max-width: 768px) {
    .tlb-tc-feature-h3-v2 {
        font-size: 1.6rem;
    }

    .tlb-tc-feature-desc-v2 {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .tlb-tc-check-list li {
        font-size: 1rem;
        /* Better readability */
        padding-left: 30px;
    }

    /* --- Global Mobile Font Adjustments --- */
    .tlb-tc-h2 {
        font-size: 1.8rem;
        /* Reduced from 2.8rem */
        line-height: 1.35;
    }

    .tlb-tc-section-h2 {
        font-size: 2rem;
        /* Reduced from 2.8rem */
    }

    .tlb-tc-section-p {
        font-size: 1.05rem;
        line-height: 1.65;
        word-break: keep-all;
    }

    .tlb-tc-desc-center {
        font-size: 1.05rem;
        line-height: 1.65;
        word-break: keep-all;
    }

    .tlb-tc-hero-h1 {
        font-size: 2.2rem;
        /* If class exists, safeguard */
        line-height: 1.2;
    }

    .tlb-tc-feature-num-tag {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    /* Stats Mobile */
    .tlb-tc-stats-container {
        gap: 30px;
    }

    .tlb-tc-stat-big-num {
        font-size: 3rem;
        /* Reduced from 4.5rem */
    }

    .tlb-tc-stat-main-label {
        font-size: 0.85rem;
    }
}