/* ============================================================
   TIMHustle.com — Complete Design System
   The Internet Marketing Hustle
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   0. GOOGLE FONTS & RESET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --th-primary:        #008751;
    --th-primary-dark:   #005a36;
    --th-primary-light:  #00b368;
    --th-accent:         #FF5722;
    --th-accent-dark:    #d84315;
    --th-gold:           #FFB800;
    --th-gold-dark:      #cc9200;
    --th-dark:           #0D1117;
    --th-dark-2:         #161B22;
    --th-dark-3:         #1C2333;
    --th-dark-4:         #21262D;
    --th-border:         rgba(255,255,255,0.08);
    --th-light:          #F0F6FF;
    --th-white:          #FFFFFF;
    --th-text:           #E6EDF3;
    --th-text-muted:     #8B949E;
    --th-text-dim:       #6E7681;

    --th-grad-primary:   linear-gradient(135deg, #008751 0%, #00c478 100%);
    --th-grad-dark:      linear-gradient(180deg, #0D1117 0%, #1A1A2E 100%);
    --th-grad-hero:      linear-gradient(135deg, #0D1117 0%, #0d1f17 60%, #0a2518 100%);
    --th-grad-fire:      linear-gradient(135deg, #FF5722 0%, #FFB800 100%);
    --th-grad-card:      linear-gradient(145deg, #161B22 0%, #1C2333 100%);
    --th-grad-text:      linear-gradient(135deg, #008751, #00c478);

    --th-shadow-sm:      0 2px 8px rgba(0,0,0,0.3);
    --th-shadow-md:      0 4px 24px rgba(0,0,0,0.4);
    --th-shadow-lg:      0 8px 48px rgba(0,0,0,0.5);
    --th-shadow-green:   0 4px 24px rgba(0,135,81,0.25);
    --th-shadow-orange:  0 4px 24px rgba(255,87,34,0.25);

    --th-font-head:      'Montserrat', -apple-system, sans-serif;
    --th-font-body:      'Open Sans', -apple-system, sans-serif;
    --th-font-display:   'Oswald', sans-serif;

    --th-radius-sm:      6px;
    --th-radius-md:      12px;
    --th-radius-lg:      20px;
    --th-radius-xl:      32px;
    --th-radius-full:    9999px;

    --th-container:      1200px;
    --th-transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   2. BASE & TYPOGRAPHY
   ============================================================ */
body {
    font-family: var(--th-font-body);
    background-color: var(--th-dark);
    color: var(--th-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--th-font-head);
    font-weight: 800;
    line-height: 1.2;
    color: var(--th-white);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; line-height: 1.75; }
strong { color: var(--th-white); font-weight: 700; }

.th-gradient-text {
    background: var(--th-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.th-accent-text { color: var(--th-accent); }
.th-gold-text   { color: var(--th-gold); }
.th-section-label {
    font-family: var(--th-font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--th-primary-light);
    margin-bottom: 0.75rem;
    display: block;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.th-container {
    max-width: var(--th-container);
    margin: 0 auto;
    padding: 0 20px;
}
.th-section { padding: 80px 0; }
.th-section-sm { padding: 48px 0; }
.th-section-lg { padding: 120px 0; }
.th-center { text-align: center; }
.th-flex   { display: flex; }
.th-grid   { display: grid; }
.th-hidden { display: none; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--th-radius-full);
    font-family: var(--th-font-head);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--th-transition);
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.th-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: var(--th-transition);
}
.th-btn:hover::before { opacity: 1; }

.th-btn-primary {
    background: var(--th-grad-primary);
    color: var(--th-white);
    box-shadow: var(--th-shadow-green);
}
.th-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,135,81,0.4);
    color: var(--th-white);
}

.th-btn-accent {
    background: var(--th-grad-fire);
    color: var(--th-white);
    box-shadow: var(--th-shadow-orange);
}
.th-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,87,34,0.4);
    color: var(--th-white);
}

.th-btn-outline {
    background: transparent;
    border-color: var(--th-border);
    color: var(--th-text);
    backdrop-filter: blur(8px);
}
.th-btn-outline:hover {
    border-color: var(--th-primary);
    color: var(--th-primary-light);
    transform: translateY(-2px);
}

.th-btn-gold {
    background: linear-gradient(135deg, #FFB800, #FF8C00);
    color: #0D1117;
    font-weight: 800;
}
.th-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,184,0,0.4);
    color: #0D1117;
}

.th-btn-lg  { padding: 18px 40px; font-size: 1.05rem; }
.th-btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.th-btn-full { width: 100%; justify-content: center; }

.th-badge-new {
    background: var(--th-accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--th-radius-full);
    letter-spacing: 0.05em;
    margin-left: 4px;
}

/* ============================================================
   5. NOTIFICATION BAR
   ============================================================ */
.th-notification-bar {
    background: linear-gradient(90deg, #005a36, #008751, #00b368);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}
.th-notification-bar p { margin: 0; }
.th-notif-link {
    color: var(--th-gold);
    font-weight: 700;
    text-decoration: underline;
}
.th-notif-link:hover { color: #fff; }
.th-notif-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    line-height: 1;
    transition: var(--th-transition);
}
.th-notif-close:hover { color: white; }

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.th-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(13,17,23,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--th-border);
    transition: var(--th-transition);
}
.th-header.scrolled {
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.th-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

/* Logo */
.th-logo a { display: flex; align-items: center; }
.th-logo-text { display: flex; align-items: baseline; gap: 0; }
.th-logo-tim {
    font-family: var(--th-font-head);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--th-primary-light);
    letter-spacing: -0.03em;
}
.th-logo-hustle {
    font-family: var(--th-font-head);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--th-white);
    letter-spacing: -0.03em;
}
.th-logo-dot {
    font-family: var(--th-font-head);
    font-size: 0.9rem;
    color: var(--th-text-muted);
    font-weight: 600;
}

/* Navigation */
.th-nav { flex: 1; display: flex; justify-content: center; }
.th-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.th-nav-menu li a {
    color: var(--th-text-muted);
    font-family: var(--th-font-head);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 14px;
    border-radius: var(--th-radius-sm);
    transition: var(--th-transition);
    display: block;
}
.th-nav-menu li a:hover,
.th-nav-menu li.current-menu-item a {
    color: var(--th-white);
    background: rgba(255,255,255,0.06);
}

/* Mobile toggle */
.th-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-sm);
    padding: 8px;
    cursor: pointer;
    color: var(--th-text);
}
.th-hamburger { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.th-hamburger span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: var(--th-transition);
}

/* Mobile menu */
.th-mobile-menu {
    display: none;
    background: var(--th-dark-2);
    border-top: 1px solid var(--th-border);
    padding: 20px;
}
.th-mobile-menu.is-open { display: block; }
.th-mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.th-mobile-nav-list li a {
    display: block;
    padding: 14px 16px;
    color: var(--th-text);
    font-family: var(--th-font-head);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--th-radius-md);
    transition: var(--th-transition);
    margin-bottom: 4px;
}
.th-mobile-nav-list li a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--th-white);
}
.th-mobile-cta { margin-top: 16px; }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.th-hero {
    background: var(--th-grad-hero);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.th-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 80% 50%, rgba(0,135,81,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,87,34,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.th-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,135,81,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,135,81,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.th-hero > .th-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.th-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,135,81,0.15);
    border: 1px solid rgba(0,135,81,0.3);
    color: var(--th-primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--th-font-head);
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: var(--th-radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.th-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.th-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--th-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}
.th-hero-subtitle strong { color: var(--th-primary-light); }

.th-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.th-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.th-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--th-text-muted);
    font-weight: 500;
}
.th-trust-icon { color: var(--th-primary); font-size: 1rem; }

/* Hero visual — floating cards */
.th-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 420px;
}
.th-hero-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}
.th-mockup-card {
    position: absolute;
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--th-shadow-md);
    backdrop-filter: blur(10px);
    animation: th-float 4s ease-in-out infinite;
}
.th-mockup-card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.th-mockup-card-2 { top: 45%; right: 5%; animation-delay: 1.3s; }
.th-mockup-card-3 { bottom: 8%; left: 20%; animation-delay: 2.6s; }

.th-mockup-icon { font-size: 2rem; }
.th-mockup-amount {
    font-family: var(--th-font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--th-primary-light);
}
.th-mockup-label {
    font-size: 0.75rem;
    color: var(--th-text-muted);
    font-weight: 500;
}

.th-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--th-text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: th-pulse 2s ease-in-out infinite;
}
.th-scroll-arrow { font-size: 1.2rem; }

@keyframes th-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes th-pulse {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* ============================================================
   8. STATS BAR
   ============================================================ */
.th-stats-bar {
    background: var(--th-grad-primary);
    padding: 28px 0;
}
.th-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.th-stat-item {
    padding: 8px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.th-stat-item:last-child { border-right: none; }
.th-stat-number {
    font-family: var(--th-font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--th-white);
    line-height: 1;
    margin-bottom: 6px;
}
.th-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   9. WHY TIMHUSTLE SECTION
   ============================================================ */
.th-why-section {
    background: var(--th-dark-2);
    padding: 96px 0;
}
.th-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.th-why-features { margin-top: 32px; }
.th-why-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--th-dark-3);
    border-radius: var(--th-radius-md);
    border: 1px solid var(--th-border);
    transition: var(--th-transition);
}
.th-why-feature:hover {
    border-color: rgba(0,135,81,0.3);
    transform: translateX(4px);
}
.th-why-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,135,81,0.15);
    border-radius: var(--th-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.th-why-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.th-why-feature p { font-size: 0.875rem; color: var(--th-text-muted); margin: 0; }

.th-why-visual {
    position: relative;
}
.th-why-card {
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-xl);
    padding: 40px;
    text-align: center;
}
.th-why-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--th-text);
    line-height: 1.8;
    margin-bottom: 24px;
}
.th-why-quote::before, .th-why-quote::after {
    content: '"';
    color: var(--th-primary);
    font-size: 2rem;
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -0.4em;
}

/* ============================================================
   10. HUSTLES GRID SECTION
   ============================================================ */
.th-hustles-section {
    background: var(--th-dark);
    padding: 96px 0;
}
.th-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.th-section-header p {
    font-size: 1.1rem;
    color: var(--th-text-muted);
    margin: 0;
}

.th-hustles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.th-hustle-card {
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 32px;
    transition: var(--th-transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.th-hustle-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--th-grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--th-transition);
}
.th-hustle-card:hover {
    border-color: rgba(0,135,81,0.4);
    transform: translateY(-6px);
    box-shadow: var(--th-shadow-lg);
}
.th-hustle-card:hover::before { transform: scaleX(1); }

.th-hustle-number {
    font-family: var(--th-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,135,81,0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.th-hustle-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}
.th-hustle-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--th-white);
}
.th-hustle-card p {
    font-size: 0.875rem;
    color: var(--th-text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.th-hustle-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--th-border);
    gap: 8px;
}
.th-hustle-income {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--th-primary-light);
    background: rgba(0,135,81,0.1);
    padding: 4px 10px;
    border-radius: var(--th-radius-full);
}
.th-hustle-level {
    font-size: 0.75rem;
    color: var(--th-text-dim);
    font-weight: 600;
}
.th-hustle-arrow {
    color: var(--th-primary);
    font-size: 1rem;
    opacity: 0;
    transition: var(--th-transition);
}
.th-hustle-card:hover .th-hustle-arrow { opacity: 1; transform: translateX(4px); }

.th-hustles-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   11. YOUTUBE SECTION
   ============================================================ */
.th-youtube-section {
    background: linear-gradient(135deg, #0d1117 0%, #1a0000 50%, #0d1117 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.th-youtube-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,0,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.th-yt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.th-yt-embed {
    position: relative;
    border-radius: var(--th-radius-xl);
    overflow: hidden;
    box-shadow: var(--th-shadow-lg);
    border: 1px solid rgba(255,0,0,0.2);
}
.th-yt-embed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}
.th-yt-content .th-section-label { color: #ff4444; }
.th-yt-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.th-yt-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-md);
    padding: 16px;
    text-align: center;
}
.th-yt-stat-num {
    font-family: var(--th-font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff4444;
    display: block;
    margin-bottom: 4px;
}
.th-yt-stat-label { font-size: 0.75rem; color: var(--th-text-muted); font-weight: 600; }

/* ============================================================
   12. BLOG PREVIEW
   ============================================================ */
.th-blog-section {
    background: var(--th-dark-2);
    padding: 96px 0;
}
.th-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.th-blog-card {
    background: var(--th-dark-3);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    overflow: hidden;
    transition: var(--th-transition);
    display: flex;
    flex-direction: column;
}
.th-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,135,81,0.3);
    box-shadow: var(--th-shadow-md);
}
.th-blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--th-dark-4);
}
.th-blog-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--th-dark-4), var(--th-dark-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.th-blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.th-blog-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--th-primary-light);
    background: rgba(0,135,81,0.1);
    padding: 3px 10px;
    border-radius: var(--th-radius-full);
    display: inline-block;
    margin-bottom: 12px;
}
.th-blog-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}
.th-blog-card h3 a { color: var(--th-white); }
.th-blog-card h3 a:hover { color: var(--th-primary-light); }
.th-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--th-text-dim);
    padding-top: 12px;
    border-top: 1px solid var(--th-border);
    margin-top: auto;
}
.th-blog-read-more {
    color: var(--th-primary-light);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--th-transition);
}
.th-blog-read-more:hover { gap: 8px; color: var(--th-primary-light); }

/* ============================================================
   13. MEMBERSHIP CTA SECTION
   ============================================================ */
.th-membership-cta {
    background: var(--th-dark);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.th-membership-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255,184,0,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(0,135,81,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.th-mem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}
.th-mem-content .th-section-label { color: var(--th-gold); }
.th-mem-perks { list-style: none; padding: 0; margin: 28px 0; }
.th-mem-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--th-border);
    font-size: 0.95rem;
    color: var(--th-text);
}
.th-mem-perks li:last-child { border-bottom: none; }
.th-perk-check {
    width: 22px;
    height: 22px;
    background: var(--th-grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    margin-top: 2px;
}

.th-mem-pricing {
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-xl);
    overflow: hidden;
}
.th-mem-pricing-header {
    background: linear-gradient(135deg, #FFB800, #FF8C00);
    padding: 28px 32px;
    text-align: center;
}
.th-mem-pricing-header h3 {
    color: #0D1117;
    margin: 0 0 6px;
    font-size: 1.3rem;
}
.th-mem-pricing-header p {
    color: rgba(13,17,23,0.7);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 600;
}
.th-mem-pricing-body { padding: 32px; }
.th-price-main {
    text-align: center;
    margin-bottom: 28px;
}
.th-price-amount {
    font-family: var(--th-font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--th-gold);
    line-height: 1;
}
.th-price-period {
    font-size: 0.85rem;
    color: var(--th-text-muted);
    display: block;
    margin-top: 4px;
}
.th-price-original {
    font-size: 0.9rem;
    color: var(--th-text-dim);
    text-decoration: line-through;
    margin-top: 4px;
}
.th-price-save {
    display: inline-block;
    background: rgba(0,135,81,0.15);
    color: var(--th-primary-light);
    border: 1px solid rgba(0,135,81,0.3);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--th-radius-full);
    margin-top: 8px;
}
.th-mem-items { list-style: none; padding: 0; margin: 0 0 28px; }
.th-mem-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--th-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.th-mem-items li::before {
    content: '✓';
    color: var(--th-primary-light);
    font-weight: 700;
    flex-shrink: 0;
}
.th-mem-guarantee {
    text-align: center;
    font-size: 0.78rem;
    color: var(--th-text-dim);
    margin-top: 12px;
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.th-testimonials {
    background: var(--th-dark-2);
    padding: 80px 0;
}
.th-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.th-testimonial-card {
    background: var(--th-dark-3);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 28px;
    transition: var(--th-transition);
    position: relative;
}
.th-testimonial-card:hover {
    border-color: rgba(0,135,81,0.3);
    transform: translateY(-4px);
}
.th-quote-icon {
    font-size: 2rem;
    color: var(--th-primary);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.th-testimonial-text {
    font-size: 0.9rem;
    color: var(--th-text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}
.th-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.th-author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--th-grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}
.th-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--th-white);
    display: block;
}
.th-author-location {
    font-size: 0.75rem;
    color: var(--th-text-dim);
    display: block;
}
.th-testimonial-income {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,135,81,0.15);
    border: 1px solid rgba(0,135,81,0.3);
    color: var(--th-primary-light);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--th-radius-full);
}

/* ============================================================
   15. NEWSLETTER SECTION
   ============================================================ */
.th-newsletter-section {
    background: var(--th-grad-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.th-newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.th-newsletter-inner {
    text-align: center;
    position: relative;
}
.th-newsletter-inner h2 { color: white; margin-bottom: 12px; }
.th-newsletter-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 36px;
}
.th-nl-form {
    display: flex;
    gap: 12px;
    max-width: 580px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.th-nl-form input {
    flex: 1;
    min-width: 220px;
    padding: 16px 20px;
    border-radius: var(--th-radius-full);
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 0.95rem;
    font-family: var(--th-font-body);
    backdrop-filter: blur(8px);
    transition: var(--th-transition);
}
.th-nl-form input::placeholder { color: rgba(255,255,255,0.6); }
.th-nl-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.2);
}
.th-nl-privacy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-top: 16px;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.th-footer-newsletter {
    background: var(--th-dark-3);
    padding: 60px 0;
    border-bottom: 1px solid var(--th-border);
}
.th-footer-nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.th-footer-nl-text h3 { font-size: 1.4rem; margin-bottom: 8px; }
.th-footer-nl-text p { color: var(--th-text-muted); margin: 0; font-size: 0.9rem; }
.th-footer-nl-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.th-footer-nl-form input {
    padding: 14px 18px;
    border-radius: var(--th-radius-full);
    border: 1px solid var(--th-border);
    background: var(--th-dark-4);
    color: var(--th-text);
    font-family: var(--th-font-body);
    font-size: 0.9rem;
    transition: var(--th-transition);
}
.th-footer-nl-form input:focus {
    outline: none;
    border-color: var(--th-primary);
    background: var(--th-dark-3);
}
.th-footer-nl-note {
    font-size: 0.75rem;
    color: var(--th-text-dim);
    margin: 0;
}

.th-footer-main { background: var(--th-dark); padding: 64px 0 40px; }
.th-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.th-footer-logo {
    font-family: var(--th-font-head);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.th-footer-tagline {
    color: var(--th-primary-light);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}
.th-footer-desc {
    font-size: 0.85rem;
    color: var(--th-text-dim);
    line-height: 1.7;
    margin-bottom: 24px;
}
.th-footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.th-social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--th-dark-3);
    border: 1px solid var(--th-border);
    color: var(--th-text-muted);
    transition: var(--th-transition);
}
.th-social-link:hover { transform: translateY(-3px); }
.th-social-yt:hover  { background: #ff0000; border-color: #ff0000; color: white; }
.th-social-ig:hover  { background: #e1306c; border-color: #e1306c; color: white; }
.th-social-tw:hover  { background: #000; border-color: #555; color: white; }
.th-social-tg:hover  { background: #0088cc; border-color: #0088cc; color: white; }
.th-social-wa:hover  { background: #25d366; border-color: #25d366; color: white; }

.th-footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--th-text-muted);
    margin-bottom: 20px;
}
.th-footer-links { list-style: none; padding: 0; margin: 0; }
.th-footer-links li { margin-bottom: 10px; }
.th-footer-links a {
    font-size: 0.875rem;
    color: var(--th-text-dim);
    transition: var(--th-transition);
}
.th-footer-links a:hover { color: var(--th-primary-light); padding-left: 4px; }
.th-footer-payment-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.th-payment-badge {
    background: var(--th-dark-3);
    border: 1px solid var(--th-border);
    color: var(--th-text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--th-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.th-footer-bottom {
    background: var(--th-dark-2);
    border-top: 1px solid var(--th-border);
    padding: 20px 0;
}
.th-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.th-footer-copy { font-size: 0.8rem; color: var(--th-text-dim); margin: 0; }
.th-footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.th-footer-legal a {
    font-size: 0.78rem;
    color: var(--th-text-dim);
    transition: var(--th-transition);
}
.th-footer-legal a:hover { color: var(--th-text-muted); }

/* ============================================================
   17. FLOATING BUTTONS
   ============================================================ */
.th-whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 900;
    background: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--th-transition);
    overflow: hidden;
}
.th-whatsapp-float:hover {
    width: auto;
    padding: 0 20px;
    border-radius: var(--th-radius-full);
    color: white;
    gap: 10px;
}
.th-whatsapp-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--th-transition);
}
.th-whatsapp-float:hover .th-whatsapp-label { max-width: 120px; }

.th-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    background: var(--th-dark-3);
    border: 1px solid var(--th-border);
    color: var(--th-text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--th-transition);
    pointer-events: none;
}
.th-scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.th-scroll-top:hover {
    background: var(--th-primary);
    border-color: var(--th-primary);
    color: white;
}

/* ============================================================
   18. INNER PAGES
   ============================================================ */
.th-page-hero {
    background: var(--th-dark-2);
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--th-border);
    text-align: center;
}
.th-breadcrumb {
    font-size: 0.8rem;
    color: var(--th-text-dim);
    margin-bottom: 16px;
}
.th-breadcrumb a { color: var(--th-text-dim); }
.th-breadcrumb a:hover { color: var(--th-primary-light); }

/* About Page */
.th-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.th-about-img {
    border-radius: var(--th-radius-xl);
    overflow: hidden;
    border: 2px solid var(--th-border);
}
.th-about-img-placeholder {
    aspect-ratio: 4/5;
    background: var(--th-grad-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}
.th-about-content h2 { font-size: 2rem; margin-bottom: 20px; }
.th-about-content p { color: var(--th-text-muted); margin-bottom: 16px; }
.th-about-values { margin-top: 36px; }
.th-value-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 18px;
    background: var(--th-dark-3);
    border-radius: var(--th-radius-md);
    border: 1px solid var(--th-border);
}

/* Membership Page */
.th-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
    align-items: start;
}
.th-plan-card {
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-xl);
    overflow: hidden;
    transition: var(--th-transition);
}
.th-plan-card.featured {
    border-color: var(--th-gold);
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(255,184,0,0.15);
}
.th-plan-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--th-border);
    text-align: center;
}
.th-plan-card.featured .th-plan-header {
    background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(255,140,0,0.1));
}
.th-plan-badge {
    display: inline-block;
    background: var(--th-gold);
    color: #0D1117;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: var(--th-radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.th-plan-name { font-size: 1.2rem; margin-bottom: 4px; }
.th-plan-price {
    font-family: var(--th-font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--th-gold);
    margin: 8px 0 4px;
}
.th-plan-period { font-size: 0.8rem; color: var(--th-text-dim); }
.th-plan-body { padding: 28px; }
.th-plan-features { list-style: none; padding: 0; margin: 0 0 28px; }
.th-plan-features li {
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--th-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}
.th-plan-features li::before { content: '✓'; color: var(--th-primary-light); font-weight: 800; }
.th-plan-features li.unavailable { color: var(--th-text-dim); opacity: 0.5; }
.th-plan-features li.unavailable::before { content: '✕'; color: var(--th-text-dim); }

/* Contact Page */
.th-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
}
.th-contact-form {
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-xl);
    padding: 40px;
}
.th-form-group { margin-bottom: 20px; }
.th-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--th-text-muted);
    margin-bottom: 8px;
}
.th-form-group input,
.th-form-group select,
.th-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--th-dark);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-md);
    color: var(--th-text);
    font-family: var(--th-font-body);
    font-size: 0.95rem;
    transition: var(--th-transition);
}
.th-form-group input:focus,
.th-form-group select:focus,
.th-form-group textarea:focus {
    outline: none;
    border-color: var(--th-primary);
    background: var(--th-dark-2);
}
.th-form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   19. SINGLE BLOG POST
   ============================================================ */
.th-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 60px 0;
}
.th-post-header {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--th-border);
}
.th-post-cats { margin-bottom: 16px; }
.th-post-title { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.th-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--th-text-dim);
    flex-wrap: wrap;
}
.th-post-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--th-text-muted);
}
.th-post-content h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.th-post-content h3 { font-size: 1.25rem; margin: 32px 0 14px; }
.th-post-content p { margin-bottom: 1.2rem; }
.th-post-content ul, .th-post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.th-post-content li { margin-bottom: 0.5rem; }
.th-post-content a { color: var(--th-primary-light); text-decoration: underline; }
.th-post-content blockquote {
    border-left: 4px solid var(--th-primary);
    margin: 2rem 0;
    padding: 20px 28px;
    background: rgba(0,135,81,0.08);
    border-radius: 0 var(--th-radius-md) var(--th-radius-md) 0;
    font-style: italic;
    color: var(--th-text);
}

/* Sidebar */
.th-sidebar { display: flex; flex-direction: column; gap: 24px; }
.th-sidebar-widget {
    background: var(--th-grad-card);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius-lg);
    padding: 24px;
}
.th-sidebar-widget .widget-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--th-text-muted);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--th-border);
}

/* ============================================================
   20. UTILITY & ANIMATIONS
   ============================================================ */
.th-divider {
    height: 1px;
    background: var(--th-border);
    margin: 0;
}
.th-alert {
    padding: 14px 20px;
    border-radius: var(--th-radius-md);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.th-alert-success { background: rgba(0,135,81,0.15); border: 1px solid rgba(0,135,81,0.3); color: var(--th-primary-light); }
.th-alert-error   { background: rgba(255,87,34,0.12); border: 1px solid rgba(255,87,34,0.3); color: #ff7043; }

.th-tag {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--th-border);
    color: var(--th-text-dim);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--th-radius-full);
    font-weight: 600;
    transition: var(--th-transition);
}
.th-tag:hover {
    background: rgba(0,135,81,0.1);
    border-color: rgba(0,135,81,0.3);
    color: var(--th-primary-light);
}

/* Animations */
@keyframes th-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes th-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.th-animate { animation: th-slide-up 0.6s ease forwards; }
.th-animate-delay-1 { animation-delay: 0.1s; }
.th-animate-delay-2 { animation-delay: 0.2s; }
.th-animate-delay-3 { animation-delay: 0.3s; }

/* Loading spinner */
.th-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: th-spin 0.6s linear infinite;
    display: inline-block;
}
@keyframes th-spin { to { transform: rotate(360deg); } }

/* ============================================================
   21. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .th-hero > .th-container { grid-template-columns: 1fr; text-align: center; }
    .th-hero-visual { display: none; }
    .th-hero-subtitle { margin: 0 auto 36px; }
    .th-hero-trust { justify-content: center; }
    .th-hero-cta { justify-content: center; }

    .th-hustles-grid { grid-template-columns: repeat(2, 1fr); }
    .th-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .th-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .th-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .th-plan-card.featured { transform: none; }
    .th-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .th-why-inner { grid-template-columns: 1fr; gap: 40px; }
    .th-mem-inner { grid-template-columns: 1fr; gap: 40px; }
    .th-yt-inner { grid-template-columns: 1fr; gap: 40px; }
    .th-about-grid { grid-template-columns: 1fr; }
    .th-contact-grid { grid-template-columns: 1fr; }
    .th-single-layout { grid-template-columns: 1fr; }
    .th-footer-nl-inner { grid-template-columns: 1fr; gap: 28px; }
    .th-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   22. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .th-section { padding: 56px 0; }
    .th-section-lg { padding: 72px 0; }

    .th-nav { display: none; }
    .th-mobile-toggle { display: flex; }
    .th-header-actions .th-btn { display: none; }
    .th-header-actions .th-mobile-toggle { display: flex; }

    .th-hustles-grid { grid-template-columns: 1fr; }
    .th-blog-grid { grid-template-columns: 1fr; }
    .th-testimonials-grid { grid-template-columns: 1fr; }
    .th-footer-grid { grid-template-columns: 1fr; }
    .th-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .th-hero { padding: 72px 0 60px; min-height: auto; }
    .th-hero-title { font-size: 2rem; }
    .th-nl-form { flex-direction: column; }
    .th-nl-form input, .th-nl-form .th-btn { width: 100%; }
    .th-footer-bottom-inner { flex-direction: column; text-align: center; }
    .th-footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .th-mem-pricing-body { padding: 24px; }
    .th-contact-form { padding: 24px; }
}

@media (max-width: 480px) {
    .th-container { padding: 0 16px; }
    .th-hero-cta { flex-direction: column; width: 100%; }
    .th-btn-lg { width: 100%; justify-content: center; }
    .th-stats-grid { grid-template-columns: 1fr 1fr; }
    .th-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
}
