/* ============================================================
   EASYCONV — Main Stylesheet  
   Fresh, modern design with teal-green-orange gradient theme
   ============================================================ */

:root {
    /* New fresh color palette - completely different from old purple */
    --ec-primary:       #0D9488;  /* Teal 600 */
    --ec-primary-dark:  #0F766E;  /* Teal 700 */
    --ec-primary-light: #5EEAD4;  /* Teal 300 */
    --ec-secondary:     #F97316;  /* Orange 500 */
    --ec-secondary-dark:#EA580C;  /* Orange 600 */
    --ec-accent:        #84CC16;  /* Lime 500 */
    --ec-gradient-start:#0D9488;
    --ec-gradient-end:  #F97316;
    
    /* Light theme backgrounds */
    --ec-bg:            #FAFAF9;  /* Stone 50 */
    --ec-bg-2:          #FFFFFF;
    --ec-bg-3:          #F5F5F4;  /* Stone 100 */
    --ec-dark:          #1C1917;  /* Stone 900 */
    --ec-dark-2:        #292524;  /* Stone 800 */
    
    /* Text colors */
    --ec-text:          #1C1917;
    --ec-text-muted:    #78716C;
    --ec-text-light:    #A8A29E;
    
    /* UI */
    --ec-border:        #E7E5E4;
    --ec-radius:        16px;
    --ec-radius-lg:     24px;
    --ec-radius-sm:     12px;
    --ec-shadow:        0 4px 20px rgba(0,0,0,.05);
    --ec-shadow-hover:  0 20px 40px rgba(13,148,136,.15);
    --ec-shadow-card:   0 2px 12px rgba(0,0,0,.04);
    --ec-transition:    .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--ec-text);
    background: var(--ec-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.py-7 { padding-top: 8rem; padding-bottom: 8rem; }

/* ============================================================
   NAVBAR - Clean light design
   ============================================================ */
.tb-navbar {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ec-border);
    padding: .65rem 0;
    z-index: 1050;
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
}

.tb-navbar .navbar-brand {
    color: var(--ec-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
}

.tb-accent { 
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tb-navbar .nav-link {
    color: var(--ec-text-muted) !important;
    font-size: .85rem;
    font-weight: 600;
    padding: .4rem .7rem !important;
    border-radius: 8px;
    transition: var(--ec-transition);
    margin: 0 .1rem;
    white-space: nowrap;
}
.tb-navbar .nav-link:hover { 
    color: var(--ec-primary) !important; 
    background: rgba(13,148,136,.08);
}

.tb-dropdown {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    min-width: 200px;
    padding: .5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.tb-dropdown .dropdown-item {
    color: var(--ec-text-muted);
    border-radius: 8px;
    padding: .5rem .75rem;
    font-size: .85rem;
    font-weight: 500;
    transition: var(--ec-transition);
    white-space: nowrap;
}
.tb-dropdown .dropdown-item:hover { 
    background: rgba(13,148,136,.1); 
    color: var(--ec-primary);
}

.tb-search-form { max-width: 180px; }
.tb-search-form .input-group {
    flex-wrap: nowrap;
}
.tb-search-input {
    background: var(--ec-bg-3);
    border: 2px solid transparent;
    color: var(--ec-text);
    font-size: .8rem;
    border-radius: 10px;
    padding: .4rem .75rem;
    min-width: 0;
}
.tb-search-input::placeholder { color: var(--ec-text-light); font-size: .8rem; }
.tb-search-input:focus { 
    background: var(--ec-bg-2); 
    border-color: var(--ec-primary); 
    box-shadow: 0 0 0 3px rgba(13,148,136,.15);
    color: var(--ec-text);
}

/* ============================================================
   BUTTONS - Fresh gradient styles
   ============================================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark));
    border: none;
    border-radius: 12px;
    padding: .75rem 1.5rem;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--ec-transition);
    box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,148,136,.45);
    background: linear-gradient(135deg, var(--ec-primary-dark), var(--ec-primary));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--ec-secondary), var(--ec-secondary-dark));
    border: none;
    border-radius: 12px;
    padding: .75rem 1.5rem;
    font-weight: 700;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,.4);
}

.btn-outline-primary {
    color: var(--ec-primary);
    border: 2px solid var(--ec-primary);
    border-radius: 12px;
    padding: .65rem 1.4rem;
    font-weight: 700;
    transition: var(--ec-transition);
}
.btn-outline-primary:hover {
    background: var(--ec-primary);
    border-color: var(--ec-primary);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--ec-bg-2);
    border: 2px solid var(--ec-border);
    color: var(--ec-text);
    border-radius: 12px;
    font-weight: 700;
}
.btn-light:hover {
    background: var(--ec-bg-3);
    border-color: var(--ec-primary);
    color: var(--ec-primary);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.tb-section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(249,115,22,.08));
    color: var(--ec-primary);
    border: 1px solid rgba(13,148,136,.2);
    border-radius: 50px;
    padding: .4rem 1.1rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.tb-section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--ec-accent);
    border-radius: 50%;
}

.tb-badge-ai {
    background: linear-gradient(135deg, rgba(132,204,22,.15), rgba(249,115,22,.1));
    color: var(--ec-accent);
    border-color: rgba(132,204,22,.25);
}
.tb-badge-ai::before {
    background: var(--ec-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.2); }
}

.tb-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-top: .75rem;
    margin-bottom: 1rem;
    color: var(--ec-text);
}
.tb-section-subtitle {
    color: var(--ec-text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   HERO - Completely redesigned
   ============================================================ */
.tb-hero {
    background: linear-gradient(180deg, var(--ec-bg-2) 0%, var(--ec-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 10rem 0 6rem;
    min-height: auto;
}

.tb-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* New organic blob shapes instead of particles */
.tb-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    animation: blobFloat 15s ease-in-out infinite;
}
.tb-hero-blob--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: linear-gradient(135deg, rgba(13,148,136,.4), rgba(94,234,212,.2));
    animation-delay: 0s;
}
.tb-hero-blob--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
    background: linear-gradient(135deg, rgba(249,115,22,.3), rgba(132,204,22,.2));
    animation-delay: -5s;
}
.tb-hero-blob--3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 20%;
    background: linear-gradient(135deg, rgba(132,204,22,.25), rgba(13,148,136,.15));
    animation-delay: -10s;
}
@keyframes blobFloat {
    0%,100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { transform: translate(30px, -30px) scale(1.05) rotate(5deg); border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { transform: translate(-20px, 20px) scale(0.95) rotate(-5deg); border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { transform: translate(20px, 10px) scale(1.02) rotate(3deg); border-radius: 60% 40% 60% 40% / 60% 30% 60% 40%; }
}

/* Grid pattern overlay */
.tb-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(13,148,136,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,148,136,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .5;
}

.tb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--ec-bg-2);
    border: 2px solid var(--ec-border);
    border-radius: 50px;
    padding: .5rem 1.2rem;
    color: var(--ec-text-muted);
    font-size: .88rem;
    font-weight: 600;
    box-shadow: var(--ec-shadow);
}
.tb-hero-badge i { 
    color: var(--ec-secondary);
    font-size: 1.1rem;
}

.tb-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ec-text);
    margin-bottom: 1.5rem;
}
.tb-hero h1 span {
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tb-hero p.lead {
    color: var(--ec-text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Hero stats */
.tb-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--ec-border);
}
.tb-hero-stat {
    text-align: center;
}
.tb-hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ec-text);
    line-height: 1;
}
.tb-hero-stat-label {
    font-size: .85rem;
    color: var(--ec-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: .3rem;
}

/* ============================================================
   TOOL CARDS - Professional Minimal Design
   ============================================================ */

/* Tool Grid Container */
.tb-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 576px) {
    .tb-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) {
    .tb-tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}
@media (min-width: 1200px) {
    .tb-tools-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Tool Card - Clean minimal design */
.tb-tool-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all .2s ease;
}
.tb-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border-color: rgba(13,148,136,.25);
    text-decoration: none;
}

/* Tool Badge - Subtle pill */
.tb-tool-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 3px 8px;
    border-radius: 100px;
}
.tb-tool-badge--popular {
    background: rgba(13,148,136,.1);
    color: var(--ec-primary);
}
.tb-tool-badge--hot {
    background: rgba(249,115,22,.1);
    color: var(--ec-secondary);
}
.tb-tool-badge--ai {
    background: rgba(132,204,22,.1);
    color: var(--ec-accent);
}
.tb-tool-badge--new {
    background: rgba(59,130,246,.1);
    color: #3B82F6;
}
.tb-tool-badge--free {
    background: rgba(16,185,129,.1);
    color: #10B981;
}

/* Tool Icon - Simple and clean */
.tb-tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    background: var(--ec-bg-3);
    transition: all .2s ease;
}
.tb-tool-card:hover .tb-tool-icon {
    transform: scale(1.05);
}
.tb-tool-icon.text-primary { 
    color: var(--ec-primary);
}
.tb-tool-icon.text-success { 
    color: var(--ec-accent);
}
.tb-tool-icon.text-warning { 
    color: var(--ec-secondary);
}
.tb-tool-icon.text-danger { 
    color: #EF4444;
}
.tb-tool-icon.text-info { 
    color: #3B82F6;
}

/* Tool Name - Clean typography */
.tb-tool-name {
    font-weight: 600;
    font-size: .9375rem;
    color: var(--ec-text);
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Tool Description - Subtle */
.tb-tool-desc {
    color: var(--ec-text-muted);
    font-size: .8125rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Category Section */
.tb-tools-category {
    margin-bottom: 48px;
}
.tb-tools-category:last-child {
    margin-bottom: 0;
}

/* Category Header - Clean with subtle icon */
.tb-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ec-border);
}
.tb-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ec-bg-3);
    font-size: 1rem;
}
.tb-cat-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ec-text);
    margin: 0;
}
.tb-cat-count {
    font-size: .8125rem;
    color: var(--ec-text-muted);
    font-weight: 500;
    margin-left: auto;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.tb-feature-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 2rem;
    height: 100%;
    transition: var(--ec-transition);
}
.tb-feature-card:hover {
    box-shadow: var(--ec-shadow-hover);
    border-color: rgba(13,148,136,.2);
}

.tb-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER - Clean light design
   ============================================================ */
.tb-footer {
    background: var(--ec-dark);
    color: #fff;
}
.tb-footer-newsletter {
    background: linear-gradient(135deg, var(--ec-primary-dark), var(--ec-primary));
    padding: 4rem 0;
}
.tb-footer-main {
    padding: 5rem 0 3rem;
}
.tb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 2rem 0;
}

.tb-footer-links a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--ec-transition);
    display: block;
    padding: .3rem 0;
}
.tb-footer-links a:hover {
    color: var(--ec-primary-light);
}

.tb-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    transition: var(--ec-transition);
}
.tb-social-btn:hover {
    background: var(--ec-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   CONVERTER INTERFACE - Redesigned
   ============================================================ */
.tb-converter-zone {
    background: var(--ec-bg-2);
    border: 2px dashed var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 4rem 2rem;
    text-align: center;
    transition: var(--ec-transition);
    position: relative;
}
.tb-converter-zone:hover,
.tb-converter-zone.dragover {
    border-color: var(--ec-primary);
    background: rgba(13,148,136,.03);
}
.tb-converter-zone i {
    font-size: 4rem;
    color: var(--ec-primary);
    margin-bottom: 1.5rem;
    opacity: .8;
}

/* Progress bar */
.tb-progress {
    height: 8px;
    background: var(--ec-bg-3);
    border-radius: 4px;
    overflow: hidden;
}
.tb-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
    border-radius: 4px;
    transition: width .3s ease;
}

/* ============================================================
   PRICING - Professional Minimal Design
   ============================================================ */

/* Pricing Toggle - Modern pill switch */
.tb-pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--ec-bg-3);
    border-radius: 100px;
    padding: 4px;
    gap: 4px;
}
.tb-pricing-toggle__option {
    padding: 8px 20px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ec-text-muted);
    cursor: pointer;
    border-radius: 100px;
    transition: all .2s ease;
    user-select: none;
}
.tb-pricing-toggle__option.active {
    background: var(--ec-bg-2);
    color: var(--ec-text);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.tb-pricing-toggle__save {
    font-size: .75rem;
    color: var(--ec-accent);
    font-weight: 700;
    margin-left: 6px;
}

/* Pricing Cards - Clean minimal design */
.tb-pricing-card {
    background: var(--ec-bg-2);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 1px solid var(--ec-border);
}
.tb-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,.08);
    border-color: rgba(13,148,136,.2);
}
.tb-pricing-card--popular {
    border: 1px solid rgba(13,148,136,.25);
    box-shadow: 0 0 0 1px rgba(13,148,136,.1), 0 20px 40px -12px rgba(13,148,136,.15);
}
.tb-pricing-card--popular:hover {
    box-shadow: 0 0 0 1px rgba(13,148,136,.15), 0 28px 56px -12px rgba(13,148,136,.2);
}

/* Popular badge - Modern ribbon style */
.tb-pricing-badge {
    position: absolute;
    top: 0;
    right: 32px;
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark));
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 8px 14px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(13,148,136,.3);
}

/* Plan header */
.tb-pricing-plan {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ec-text);
    margin-bottom: 4px;
}
.tb-pricing-desc {
    font-size: .9375rem;
    color: var(--ec-text-muted);
    font-weight: 500;
}

/* Price display - Large clean typography */
.tb-pricing-price-wrap {
    margin: 32px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--ec-border);
}
.tb-pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.tb-pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ec-text-muted);
    margin-top: 6px;
}
.tb-pricing-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--ec-text);
    line-height: 1;
    letter-spacing: -0.02em;
}
.tb-pricing-period {
    font-size: 1rem;
    color: var(--ec-text-muted);
    font-weight: 500;
    margin-top: 8px;
}
.tb-pricing-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .8125rem;
    color: var(--ec-accent);
    font-weight: 600;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(132,204,22,.1);
    border-radius: 100px;
}

/* Features list - Clean minimal */
.tb-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}
.tb-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: .9375rem;
    color: var(--ec-text);
    font-weight: 500;
}
.tb-pricing-features li.included {
    color: var(--ec-text);
}
.tb-pricing-features li.not-included {
    color: var(--ec-text-light);
}
.tb-pricing-features li.highlight {
    font-weight: 600;
}
.tb-pricing-features li i {
    flex-shrink: 0;
    font-size: 1.125rem;
}
.tb-pricing-features li i.check {
    color: var(--ec-primary);
}
.tb-pricing-features li i.cross {
    color: var(--ec-text-light);
    opacity: .5;
}

/* CTA Button - Full width, prominent */
.tb-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: .9375rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all .2s ease;
}
.tb-pricing-btn--primary {
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.tb-pricing-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,148,136,.45);
    color: #fff;
}
.tb-pricing-btn--secondary {
    background: var(--ec-bg-3);
    color: var(--ec-text);
    border: 1px solid var(--ec-border);
}
.tb-pricing-btn--secondary:hover {
    background: var(--ec-bg-2);
    border-color: var(--ec-primary);
    color: var(--ec-primary);
}

/* Guarantee badge */
.tb-pricing-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: 100px;
    font-size: .9375rem;
    color: var(--ec-text);
}
.tb-pricing-guarantee i {
    color: var(--ec-accent);
    font-size: 1.25rem;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.tb-auth-section {
    background: linear-gradient(135deg, var(--ec-bg) 0%, var(--ec-bg-3) 100%);
    min-height: 100vh;
    padding: 3rem 0;
}
.tb-auth-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 3rem;
    box-shadow: var(--ec-shadow);
}

/* ============================================================
   CODE WINDOW
   ============================================================ */
.tb-code-window {
    background: var(--ec-dark);
    border-radius: var(--ec-radius);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}
.tb-code-header {
    background: var(--ec-dark-2);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.tb-code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #EF4444;
}
.tb-code-dot--2 { background: #F59E0B; }
.tb-code-dot--3 { background: #10B981; }
.tb-code-lang {
    margin-left: auto;
    color: var(--ec-text-light);
    font-size: .8rem;
    font-weight: 600;
}
.tb-code-body {
    padding: 1.5rem;
    margin: 0;
    background: transparent;
    color: #E7E5E4;
    font-family: 'JetBrains Mono', monospace;
    font-size: .9rem;
    line-height: 1.7;
    overflow-x: auto;
}

/* ============================================================
   COMPARISON TABLE - Professional Clean Design
   ============================================================ */
.tb-compare-wrap {
    background: var(--ec-bg-2);
    border-radius: 24px;
    border: 1px solid var(--ec-border);
    overflow: hidden;
}
.tb-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}
.tb-compare-table th,
.tb-compare-table td {
    padding: 20px 24px;
    border: none;
    vertical-align: middle;
}

/* Header row */
.tb-compare-table thead th {
    background: var(--ec-bg-3);
    font-size: .875rem;
    font-weight: 600;
    color: var(--ec-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid var(--ec-border);
}
.tb-compare-table thead th:first-child {
    text-align: left;
    width: 40%;
}
.tb-compare-table thead th:not(:first-child) {
    text-align: center;
    width: 20%;
}
.tb-compare-table thead th.popular-col {
    background: rgba(13,148,136,.08);
    color: var(--ec-primary);
    font-weight: 700;
}

/* Category rows */
.tb-compare-table .category-row td {
    background: var(--ec-bg);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ec-text-muted);
    padding: 14px 24px;
    border-bottom: 1px solid var(--ec-border);
}

/* Feature rows */
.tb-compare-table tbody tr:not(.category-row) {
    transition: background .15s ease;
}
.tb-compare-table tbody tr:not(.category-row):hover {
    background: rgba(13,148,136,.02);
}
.tb-compare-table tbody tr:not(.category-row) td {
    border-bottom: 1px solid var(--ec-border);
}
.tb-compare-table tbody tr:not(.category-row):last-child td {
    border-bottom: none;
}
.tb-compare-table tbody td:first-child {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--ec-text);
}
.tb-compare-table tbody td:not(:first-child) {
    text-align: center;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--ec-text-muted);
}
.tb-compare-table tbody td.popular-col {
    background: rgba(13,148,136,.04);
    color: var(--ec-text);
    font-weight: 600;
}

/* Checkmarks and values */
.tb-compare-table .check-yes {
    color: var(--ec-primary);
    font-size: 1.25rem;
}
.tb-compare-table .check-no {
    color: var(--ec-text-light);
    opacity: .4;
}
.tb-compare-table .value {
    color: var(--ec-text);
    font-weight: 500;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.min-vh-auth { min-height: 100vh; }

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--ec-primary);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--ec-transition);
    z-index: 1040;
    box-shadow: 0 4px 15px rgba(13,148,136,.4);
}
#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}
#scrollToTop:hover {
    transform: translateY(-3px);
    background: var(--ec-primary-dark);
}

/* Toast notifications */
.tb-toast {
    background: var(--ec-dark);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
}

/* Form inputs */
.tb-input {
    border: 2px solid var(--ec-border);
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: var(--ec-transition);
}
.tb-input:focus {
    border-color: var(--ec-primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .tb-navbar { padding: .65rem 0; }
    .tb-hero { padding: 7rem 0 4rem; }
    .tb-hero-stats { flex-direction: column; gap: 1.5rem; }
    .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
}

@media (max-width: 576px) {
    .tb-auth-card { padding: 2rem 1.5rem; }
    .tb-section-title { font-size: 1.75rem; }
}

/* ============================================================
   HERO UPLOAD ZONE
   ============================================================ */
.tb-upload-zone {
    background: var(--ec-bg-2);
    border: 2px dashed var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--ec-transition);
    cursor: pointer;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--ec-shadow);
}
.tb-upload-zone:hover,
.tb-upload-zone.dragover {
    border-color: var(--ec-primary);
    background: rgba(13,148,136,.03);
    box-shadow: var(--ec-shadow-hover);
}
.tb-upload-icon {
    font-size: 3.5rem;
    color: var(--ec-primary);
    margin-bottom: 1rem;
    opacity: .8;
}
.tb-upload-text {
    font-size: 1.1rem;
    color: var(--ec-text);
    margin-bottom: .5rem;
    font-weight: 600;
}
.tb-upload-browse {
    color: var(--ec-primary);
    text-decoration: underline;
    cursor: pointer;
}
.tb-upload-hint {
    font-size: .85rem;
    color: var(--ec-text-light);
    margin: 0;
}

/* Upload detected state */
.tb-upload-detected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.tb-upload-detected-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--ec-primary);
}
.tb-upload-detected-name {
    font-weight: 700;
    color: var(--ec-text);
    font-size: 1rem;
}
.tb-upload-detected-size {
    font-size: .85rem;
    color: var(--ec-text-muted);
}

/* Quick tools pills */
.tb-quick-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2.5rem;
}
.tb-quick-label {
    color: var(--ec-text-light);
    font-size: .85rem;
    font-weight: 600;
}
.tb-quick-pill {
    display: inline-flex;
    align-items: center;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: 50px;
    padding: .5rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ec-text-muted);
    text-decoration: none;
    transition: var(--ec-transition);
}
.tb-quick-pill:hover {
    background: var(--ec-primary);
    border-color: var(--ec-primary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}
.tb-quick-pill--more {
    background: transparent;
    border-style: dashed;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.tb-stats {
    background: linear-gradient(180deg, var(--ec-bg) 0%, var(--ec-bg-2) 100%);
    border-bottom: 1px solid var(--ec-border);
}
.tb-stat-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--ec-transition);
}
.tb-stat-card:hover {
    box-shadow: var(--ec-shadow-hover);
    transform: translateY(-3px);
}
.tb-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}
.tb-stat-icon--primary {
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
    color: var(--ec-primary);
}
.tb-stat-icon--success {
    background: linear-gradient(135deg, rgba(132,204,22,.15), rgba(132,204,22,.05));
    color: var(--ec-accent);
}
.tb-stat-icon--warning {
    background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05));
    color: var(--ec-secondary);
}
.tb-stat-icon--info {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.05));
    color: #3B82F6;
}
.tb-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ec-text);
    line-height: 1;
    margin-bottom: .5rem;
}
.tb-stat-label {
    font-size: .9rem;
    color: var(--ec-text-muted);
    font-weight: 600;
}

/* ============================================================
   TRUSTED BRANDS
   ============================================================ */
.tb-trusted {
    background: var(--ec-bg-2);
    border-bottom: 1px solid var(--ec-border);
    overflow: hidden;
}
.tb-brands-scroll {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.tb-brands-track {
    display: flex;
    gap: 4rem;
    animation: scrollBrands 30s linear infinite;
}
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tb-brand-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ec-text-light);
    opacity: .6;
    white-space: nowrap;
}

/* ============================================================
   CATEGORY TABS
   ============================================================ */
.tb-category-tabs,
.tb-tool-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    padding: 0;
    list-style: none;
}
.tb-tab-btn,
.tb-tool-tab {
    padding: 10px 20px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ec-text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tb-tab-btn:hover,
.tb-tool-tab:hover {
    color: var(--ec-text);
    background: var(--ec-bg-3);
}
.tb-tab-btn.active,
.tb-tool-tab.active {
    color: var(--ec-primary);
    background: rgba(13,148,136,.08);
    border-color: rgba(13,148,136,.15);
}
.tb-tool-tab i,
.tb-tab-btn i {
    font-size: 1rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.tb-how-it-works {
    background: linear-gradient(180deg, var(--ec-bg-2) 0%, var(--ec-bg) 100%);
}
.tb-step-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--ec-transition);
}
.tb-step-card:hover {
    box-shadow: var(--ec-shadow-hover);
    transform: translateY(-5px);
}
.tb-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark));
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    padding: .4rem 1rem;
    border-radius: 20px;
}
.tb-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(13,148,136,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--ec-primary);
    margin: 0 auto 1.5rem;
}

/* ============================================================
   AI SECTION
   ============================================================ */
.tb-ai-section {
    background: linear-gradient(135deg, rgba(13,148,136,.05) 0%, rgba(249,115,22,.05) 100%);
}
.tb-ai-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    margin-bottom: 1rem;
    transition: var(--ec-transition);
}
.tb-ai-item:hover {
    box-shadow: var(--ec-shadow);
    border-color: rgba(13,148,136,.2);
}
.tb-ai-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(132,204,22,.15), rgba(132,204,22,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--ec-accent);
    flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tb-testimonial-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--ec-transition);
}
.tb-testimonial-card:hover {
    box-shadow: var(--ec-shadow-hover);
}
.tb-testimonial-stars {
    color: #FBBF24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.tb-testimonial-text {
    color: var(--ec-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.tb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tb-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.tb-cta-final {
    background: linear-gradient(135deg, var(--ec-dark) 0%, var(--ec-dark-2) 100%);
    position: relative;
    overflow: hidden;
}
.tb-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,148,136,.2) 0%, transparent 70%);
    pointer-events: none;
}
.tb-cta-inner {
    position: relative;
    z-index: 1;
}
.tb-cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(249,115,22,.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

/* Tool CTA Banner */
.tb-tool-cta-banner {
    background: linear-gradient(135deg, rgba(13,148,136,.08) 0%, rgba(249,115,22,.05) 100%);
}

/* ============================================================
   FAQ
   ============================================================ */
.tb-accordion {
    border: none;
}
.tb-accordion-item {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}
.tb-accordion-btn {
    background: var(--ec-bg-2);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--ec-text);
    box-shadow: none;
}
.tb-accordion-btn:not(.collapsed) {
    background: rgba(13,148,136,.05);
    color: var(--ec-primary);
}
.tb-accordion-btn:focus {
    box-shadow: none;
}
.tb-accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--ec-text-muted);
    line-height: 1.7;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.tb-blog-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    overflow: hidden;
    transition: var(--ec-transition);
    height: 100%;
}
.tb-blog-card:hover {
    box-shadow: var(--ec-shadow-hover);
    transform: translateY(-5px);
}
.tb-blog-cover {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.tb-blog-body {
    padding: 1.75rem;
}
.tb-blog-category {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.tb-page-hero {
    background: linear-gradient(135deg, var(--ec-bg-2) 0%, var(--ec-bg) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--ec-border);
}
.tb-page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--ec-text);
    margin-bottom: 1rem;
}

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.tb-legal-content {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 3rem;
}
.tb-legal-toc {
    background: var(--ec-bg-3);
    border-radius: var(--ec-radius-sm);
    padding: 1.5rem 2rem;
}
.tb-legal-toc ol {
    margin: 0;
    padding-left: 1.25rem;
}
.tb-legal-toc li {
    margin-bottom: .5rem;
}
.tb-legal-toc a {
    color: var(--ec-text-muted);
    text-decoration: none;
    transition: var(--ec-transition);
}
.tb-legal-toc a:hover {
    color: var(--ec-primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.tb-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    transition: var(--ec-transition);
}
.tb-contact-info-card:hover {
    box-shadow: var(--ec-shadow);
    border-color: rgba(13,148,136,.2);
}
.tb-contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================================
   ACCOUNT DASHBOARD
   ============================================================ */
.tb-account-sidebar {
    background: var(--ec-dark);
    min-height: 100vh;
    padding: 1.5rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    z-index: 1060;
}
.tb-sidebar-brand {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.tb-sidebar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,.05);
    border-radius: var(--ec-radius-sm);
    margin-bottom: 2rem;
}
.tb-sidebar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}
.tb-sidebar-section-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: .75rem;
    padding-left: .75rem;
}
.tb-sidebar-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--ec-transition);
    margin-bottom: .25rem;
}
.tb-sidebar-link:hover,
.tb-sidebar-link.active {
    background: rgba(13,148,136,.2);
    color: #fff;
}
.tb-sidebar-link--danger:hover {
    background: rgba(239,68,68,.2);
    color: #EF4444;
}

.tb-dash-section {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2rem;
}
.tb-plan-badge {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: .25rem .6rem;
    border-radius: 6px;
}
.tb-plan-badge--free {
    background: var(--ec-bg-3);
    color: var(--ec-text-muted);
}
.tb-plan-badge--pro {
    background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(13,148,136,.1));
    color: var(--ec-primary);
}

/* ============================================================
   TOOL CONVERTER PAGE
   ============================================================ */
.tb-tool-hero {
    background: linear-gradient(135deg, var(--ec-bg-2) 0%, var(--ec-bg) 100%);
    padding: 7rem 0 3rem;
    border-bottom: 1px solid var(--ec-border);
}
.tb-tool-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}
@media (max-width: 991px) {
    .tb-tool-layout {
        grid-template-columns: 1fr;
    }
}

/* Accordion guide */
.tb-guide-accordion {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    overflow: hidden;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fadeInUp {
    animation: fadeInUp .6s ease forwards;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 991px) {
    .tb-account-sidebar {
        transform: translateX(-100%);
        transition: transform .3s ease;
    }
    .tb-account-sidebar.open {
        transform: translateX(0);
    }
    .tb-upload-zone {
        padding: 2rem 1.5rem;
    }
    .tb-quick-tools {
        gap: .5rem;
    }
    .tb-quick-pill {
        padding: .4rem .75rem;
        font-size: .8rem;
    }
    /* Mobile navbar adjustments */
    .tb-search-form {
        max-width: 100%;
        margin: 1rem 0;
    }
    .tb-navbar .nav-link {
        padding: .75rem 1rem !important;
    }
    .tb-navbar .navbar-collapse {
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .tb-legal-content {
        padding: 1.5rem;
    }
    .tb-stat-value {
        font-size: 1.75rem;
    }
}

/* ============================================================
   TOOLS PAGE SPECIFIC STYLES
   ============================================================ */

/* Tool Hero */
.tb-tool-hero {
    background: linear-gradient(180deg, var(--ec-bg-2) 0%, var(--ec-bg) 100%);
    padding: 8rem 0 3rem;
    border-bottom: 1px solid var(--ec-border);
    text-align: center;
}

.tb-tool-hero-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(13,148,136,.05));
    color: var(--ec-primary);
}

.tb-tool-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--ec-text);
    margin-bottom: 1rem;
}

/* Converter Card */
.tb-converter-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2.5rem;
    box-shadow: var(--ec-shadow);
}

/* Upload Zone Dark Variant */
.tb-upload-zone--dark {
    background: var(--ec-dark-2);
    border-color: rgba(255,255,255,.1);
    color: #fff;
}
.tb-upload-zone--dark .tb-upload-text {
    color: #fff;
}

/* File Info Bar */
.tb-file-info-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--ec-bg-3);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
}

.tb-file-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
}

/* Converter Steps */
.tb-conv-step {
    animation: fadeInUp 0.4s ease;
}

/* Spinner */
.tb-conv-spinner {
    font-size: 3rem;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success State */
.tb-conv-success {
    font-size: 4rem;
    color: var(--ec-accent);
}

/* Tool Features Strip */
.tb-tool-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tb-tool-feature {
    display: inline-flex;
    align-items: center;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: 50px;
    padding: .6rem 1.2rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ec-text-muted);
    box-shadow: var(--ec-shadow-card);
}

.tb-tool-feature i {
    font-size: 1rem;
}

.tb-tool-feature i.text-success { color: var(--ec-accent) !important; }
.tb-tool-feature i.text-primary { color: var(--ec-primary) !important; }
.tb-tool-feature i.text-warning { color: var(--ec-secondary) !important; }
.tb-tool-feature i.text-info { color: #3B82F6 !important; }

/* Color variants for tool hero icons */
.tb-tool-hero--primary .tb-tool-hero-icon {
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
    color: var(--ec-primary);
}
.tb-tool-hero--success .tb-tool-hero-icon {
    background: linear-gradient(135deg, rgba(132,204,22,.15), rgba(132,204,22,.05));
    color: var(--ec-accent);
}
.tb-tool-hero--warning .tb-tool-hero-icon {
    background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05));
    color: var(--ec-secondary);
}
.tb-tool-hero--danger .tb-tool-hero-icon {
    background: linear-gradient(135deg, rgba(239,68,68,.15), rgba(239,68,68,.05));
    color: #EF4444;
}
.tb-tool-hero--info .tb-tool-hero-icon {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.05));
    color: #3B82F6;
}

/* Tool Page Buttons */
.btn-success {
    background: linear-gradient(135deg, var(--ec-accent), #65A30D);
    border: none;
    border-radius: 12px;
    padding: .75rem 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(132,204,22,.35);
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132,204,22,.45);
}

.btn-danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    border: none;
    border-radius: 12px;
    padding: .75rem 1.5rem;
    font-weight: 700;
}

/* Alert styles */
.alert-success {
    background: rgba(132,204,22,.1);
    border: 1px solid rgba(132,204,22,.3);
    color: #3F6212;
    border-radius: 12px;
}
.alert-danger {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    color: #991B1B;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .tb-converter-card {
        padding: 1.5rem;
    }
    .tb-tool-hero {
        padding: 6rem 0 2rem;
    }
    .tb-tool-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .tb-tool-features {
        gap: .5rem;
    }
    .tb-tool-feature {
        padding: .5rem 1rem;
        font-size: .8rem;
    }
}

/* ============================================================
   TOOL PAGE HERO V2 (used in specific tool pages)
   ============================================================ */

.tb-tool-hero-v2 {
    background: linear-gradient(180deg, var(--ec-bg-2) 0%, var(--ec-bg) 100%);
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--ec-border);
    text-align: center;
}

.tb-tool-hero-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(13,148,136,.05));
    color: var(--ec-primary);
}

.tb-hero-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(249,115,22,.08));
    color: var(--ec-primary);
    border: 1px solid rgba(13,148,136,.2);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.tb-hero-sub {
    color: var(--ec-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.tb-hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.tb-hero-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: 50px;
    padding: .5rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ec-text-muted);
}

/* Accent color variants for hero v2 */
.tb-tool-hero-v2.accent-primary .tb-tool-hero-icon-large {
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
    color: var(--ec-primary);
}
.tb-tool-hero-v2.accent-success .tb-tool-hero-icon-large {
    background: linear-gradient(135deg, rgba(132,204,22,.15), rgba(132,204,22,.05));
    color: var(--ec-accent);
}
.tb-tool-hero-v2.accent-warning .tb-tool-hero-icon-large {
    background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05));
    color: var(--ec-secondary);
}
.tb-tool-hero-v2.accent-danger .tb-tool-hero-icon-large {
    background: linear-gradient(135deg, rgba(239,68,68,.15), rgba(239,68,68,.05));
    color: #EF4444;
}
.tb-tool-hero-v2.accent-info .tb-tool-hero-icon-large {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.05));
    color: #3B82F6;
}

/* ============================================================
   CONVERTER V2 STYLES
   ============================================================ */

.tb-converter-v2 {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2rem;
    box-shadow: var(--ec-shadow);
}

/* Dropzone v2 */
.tb-dropzone-v2 {
    background: var(--ec-bg-3);
    border: 2px dashed var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--ec-transition);
    cursor: pointer;
}
.tb-dropzone-v2:hover,
.tb-dropzone-v2.dragover {
    border-color: var(--ec-primary);
    background: rgba(13,148,136,.03);
}
.tb-dropzone-v2 i {
    font-size: 3rem;
    color: var(--ec-primary);
    margin-bottom: 1rem;
    opacity: .8;
}

/* ============================================================
   COMPARISON TABLE ENHANCED
   ============================================================ */

.tb-comparison-section {
    background: linear-gradient(180deg, var(--ec-bg) 0%, var(--ec-bg-2) 100%);
}

/* ============================================================
   GUIDE ACCORDION
   ============================================================ */

.tb-guide-accordion .accordion-item {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    margin-bottom: .75rem;
    overflow: hidden;
}
.tb-guide-accordion .accordion-button {
    background: var(--ec-bg-2);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--ec-text);
    box-shadow: none;
}
.tb-guide-accordion .accordion-button:not(.collapsed) {
    background: rgba(13,148,136,.05);
    color: var(--ec-primary);
}
.tb-guide-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--ec-text-muted);
}

/* ============================================================
   SCREEN RECORDER SPECIFIC
   ============================================================ */

.tb-screen-recorder {
    background: var(--ec-dark);
    border-radius: var(--ec-radius);
    padding: 2rem;
    color: #fff;
}

.tb-screen-preview {
    background: var(--ec-dark-2);
    border-radius: var(--ec-radius-sm);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* ============================================================
   IMAGE CROPPER SPECIFIC
   ============================================================ */

.tb-crop-container {
    position: relative;
    background: var(--ec-dark);
    border-radius: var(--ec-radius-sm);
    overflow: hidden;
}

.tb-crop-toolbar {
    display: flex;
    gap: .5rem;
    padding: 1rem;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    margin-bottom: 1rem;
}

/* ============================================================
   RESPONSIVE FOR TOOL PAGES
   ============================================================ */

@media (max-width: 768px) {
    .tb-tool-hero-v2 {
        padding: 6rem 0 3rem;
    }
    .tb-tool-hero-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.25rem;
    }
    .tb-hero-benefits {
        gap: .5rem;
    }
    .tb-hero-benefit-pill {
        padding: .4rem .75rem;
        font-size: .8rem;
    }
    .tb-converter-v2 {
        padding: 1.5rem;
    }
    .tb-dropzone-v2 {
        padding: 2rem 1.5rem;
    }
}

/* ============================================================
   ADDITIONAL TOOL PAGE STYLES
   ============================================================ */

/* Gradient text (used in headlines) */
.tb-gradient-text {
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Converter card v2 (used in specific tool pages) */
.tb-converter-card-v2 {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2rem;
    box-shadow: var(--ec-shadow);
}

/* Scale radio buttons (image upscaler) */
.tb-scale-radio {
    cursor: pointer;
    margin: 0 .5rem;
}
.tb-scale-radio input {
    position: absolute;
    opacity: 0;
}
.tb-scale-radio input:checked + .tb-scale-btn {
    background: var(--ec-primary);
    border-color: var(--ec-primary);
    color: #fff;
}
.tb-scale-btn {
    display: inline-block;
    transition: var(--ec-transition);
}

/* ============================================================
   PASSWORD TOGGLE BUTTON
   ============================================================ */

.tb-pwd-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* ============================================================
   FORM STYLES
   ============================================================ */

.form-label {
    font-weight: 600;
    color: var(--ec-text);
    margin-bottom: .5rem;
}

.form-select {
    border: 2px solid var(--ec-border);
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: var(--ec-transition);
}
.form-select:focus {
    border-color: var(--ec-primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,.15);
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */

.progress {
    background: var(--ec-bg-3);
    border-radius: 6px;
    overflow: hidden;
}
.progress-bar {
    background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.bg-light {
    background: var(--ec-bg-3) !important;
}

.text-primary { color: var(--ec-primary) !important; }
.text-success { color: var(--ec-accent) !important; }
.text-warning { color: var(--ec-secondary) !important; }
.text-danger { color: #EF4444 !important; }
.text-info { color: #3B82F6 !important; }
.text-muted { color: var(--ec-text-muted) !important; }

/* ============================================================
   BOOTSTRAP OVERRIDES
   ============================================================ */

.container {
    max-width: 1200px;
}

/* Fix for Bootstrap buttons to use our new colors */
.btn-primary {
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark)) !important;
    border: none !important;
}

.badge.bg-primary {
    background: var(--ec-primary) !important;
}
.badge.bg-success {
    background: var(--ec-accent) !important;
}
.badge.bg-warning {
    background: var(--ec-secondary) !important;
}

/* Alert overrides */
.alert {
    border-radius: 12px;
    border: none;
}

/* ============================================================
   AI SECTION VISUAL DEMO
   ============================================================ */

.tb-ai-visual {
    position: relative;
}

.tb-ai-card-demo {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    overflow: hidden;
    box-shadow: var(--ec-shadow);
    max-width: 480px;
    margin: 0 auto;
}

.tb-ai-demo-header {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1rem;
    background: var(--ec-bg-3);
    border-bottom: 1px solid var(--ec-border);
}

.tb-ai-demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EF4444;
}
.tb-ai-demo-dot--2 { background: #F59E0B; }
.tb-ai-demo-dot--3 { background: #10B981; }

.tb-ai-demo-body {
    padding: 1.5rem;
}

/* Waveform container - limit height */
.tb-ai-waveform {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    height: 60px; /* Fixed height container */
    padding: .5rem 0;
}

/* Individual wave bars */
.tb-wave-bar {
    flex: 1;
    min-width: 3px;
    max-width: 6px;
    border-radius: 2px;
    transition: height 0.3s ease;
}

/* Before processing - noisy/dirty (red/orange) */
.tb-wave-bar--before {
    background: linear-gradient(to top, #F97316, #EF4444);
    opacity: 0.8;
}

/* After processing - clean (teal/green) */
.tb-wave-bar--after {
    background: linear-gradient(to top, var(--ec-primary), var(--ec-accent));
    opacity: 0.9;
}

/* Scale down the inline heights */
.tb-wave-bar {
    height: 20px !important; /* Override inline styles */
}

/* Animate the bars */
.tb-wave-bar--before {
    animation: wavePulse 1.2s ease-in-out infinite;
}

.tb-wave-bar--after {
    animation: wavePulse 1.2s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes wavePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Processing badge */
.tb-ai-processing-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(249,115,22,.05));
    border: 1px solid rgba(13,148,136,.2);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ec-primary);
    margin: .5rem 0;
}

.tb-ai-progress {
    width: 60px;
    height: 4px;
    background: var(--ec-border);
    border-radius: 2px;
    overflow: hidden;
}

.tb-ai-progress-bar {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
    border-radius: 2px;
    animation: progressMove 2s ease-in-out infinite;
}

@keyframes progressMove {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Responsive */
@media (max-width: 991px) {
    .tb-ai-waveform {
        height: 50px;
    }
    .tb-wave-bar {
        min-width: 2px;
        max-width: 4px;
    }
}

/* ============================================================
   CONVERSION STEPS - PROGRESS, DONE, ERROR
   ============================================================ */

/* Progress Step */
.tb-progress-wrap {
    text-align: center;
    padding: 2rem 1rem;
}

.tb-progress-icon-wrap {
    margin-bottom: 1.5rem;
}

.tb-progress-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(13,148,136,.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: spin 1s linear infinite;
}

.tb-progress-label {
    margin-bottom: 1.5rem;
}

.tb-progress-msg {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ec-text);
}

.tb-progress-bar-wrap {
    max-width: 400px;
    margin: 0 auto;
}

.tb-progress-bar-track {
    height: 8px;
    background: var(--ec-bg-3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: .75rem;
}

.tb-progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
}

.tb-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--ec-text-muted);
    font-weight: 600;
}

.tb-progress-pct {
    color: var(--ec-primary);
}

/* Done Step */
.tb-done-wrap {
    text-align: center;
    padding: 1.5rem;
}

.tb-done-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(132,204,22,.1), rgba(132,204,22,.05));
    border: 1px solid rgba(132,204,22,.2);
    border-radius: var(--ec-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.tb-done-check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ec-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.tb-done-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ec-text);
}

.tb-done-sub {
    font-size: .9rem;
    color: var(--ec-text-muted);
}

.tb-done-file-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--ec-bg-3);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.tb-done-file-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.tb-done-file-info {
    flex: 1;
    min-width: 0;
}

.tb-done-filename {
    font-weight: 700;
    color: var(--ec-text);
    margin-bottom: .5rem;
    word-break: break-all;
}

.tb-done-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tb-done-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: 6px;
    padding: .25rem .6rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--ec-text-muted);
}

.tb-done-pill--size {
    background: rgba(13,148,136,.1);
    border-color: rgba(13,148,136,.2);
    color: var(--ec-primary);
}

.tb-done-pill--time {
    background: rgba(249,115,22,.1);
    border-color: rgba(249,115,22,.2);
    color: var(--ec-secondary);
}

.tb-done-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--ec-accent), #65A30D);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(132,204,22,.35);
    transition: var(--ec-transition);
}

.tb-done-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132,204,22,.45);
}

.tb-done-another-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: none;
    color: var(--ec-text-muted);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ec-transition);
}

.tb-done-another-btn:hover {
    color: var(--ec-primary);
}

/* Error Step */
.tb-error-wrap {
    text-align: center;
    padding: 2rem 1rem;
}

.tb-error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239,68,68,.1), rgba(239,68,68,.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #EF4444;
    margin-bottom: 1.5rem;
}

.tb-error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ec-text);
    margin-bottom: .5rem;
}

.tb-error-msg {
    color: var(--ec-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tb-error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 576px) {
    .tb-progress-wrap {
        padding: 1.5rem 1rem;
    }
    .tb-progress-ring {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }
    .tb-progress-msg {
        font-size: 1.1rem;
    }
    .tb-done-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    .tb-done-file-card {
        flex-direction: column;
        text-align: center;
    }
    .tb-done-download-btn {
        width: 100%;
    }
}

/* ============================================================
   URL INPUT FORM
   ============================================================ */

.tb-url-input-zone {
    background: var(--ec-bg-3);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 1.5rem;
}

.tb-url-input-zone h5 {
    color: var(--ec-text);
}

/* Input group styling */
.input-group-lg .form-control,
.input-group-lg .input-group-text {
    padding: .75rem 1rem;
    font-size: 1rem;
}

.input-group-text {
    background: var(--ec-bg-2);
    border-color: var(--ec-border);
    color: var(--ec-text-light);
}

/* Paste button */
#pasteUrlBtn {
    border-color: var(--ec-border);
    color: var(--ec-text-muted);
}
#pasteUrlBtn:hover {
    background: var(--ec-bg-3);
    color: var(--ec-primary);
}

/* Platform hint icons */
.tb-url-input-zone .bi-youtube { color: #FF0000 !important; }
.tb-url-input-zone .bi-vimeo { color: #1AB7EA !important; }
.tb-url-input-zone .bi-twitter { color: #000000 !important; }
.tb-url-input-zone .bi-facebook { color: #1877F2 !important; }
.tb-url-input-zone .bi-instagram { color: #E4405F !important; }

/* Tracking utility */
.tracking-wide {
    letter-spacing: 0.05em;
}

/* ============================================================
   TOOL PAGE PARTIALS - MISSING STYLES
   ============================================================ */

/* Article / Guide Section */
.tb-article-section {
    background: var(--ec-bg-3);
}

.tb-article {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2.5rem;
}

.tb-article-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ec-text);
    margin-bottom: 1rem;
}

.tb-article-intro {
    font-size: 1.1rem;
    color: var(--ec-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tb-article-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ec-border);
}

.tb-article-h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ec-text);
    margin-bottom: 1rem;
}

.tb-article-body {
    color: var(--ec-text-muted);
    line-height: 1.8;
}

.tb-article-body p {
    margin-bottom: 1rem;
}

.tb-article-body strong {
    color: var(--ec-text);
    font-weight: 600;
}

/* Formats Table */
.tb-formats-table {
    background: var(--ec-bg-2);
    border-radius: var(--ec-radius);
    overflow: hidden;
    box-shadow: var(--ec-shadow);
}

.tb-formats-table thead {
    background: var(--ec-bg-3);
}

.tb-formats-table th {
    font-weight: 700;
    color: var(--ec-text);
    padding: 1rem 1.25rem;
    border-bottom: 2px solid var(--ec-border);
}

.tb-formats-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ec-border);
    vertical-align: middle;
}

.tb-formats-table tbody tr:hover {
    background: rgba(13,148,136,.03);
}

.tb-fmt-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(249,115,22,.08));
    color: var(--ec-primary);
    border: 1px solid rgba(13,148,136,.2);
    border-radius: 6px;
    padding: .35rem .75rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Tech Specs */
.tb-tech-section {
    background: linear-gradient(180deg, var(--ec-bg) 0%, var(--ec-bg-2) 100%);
}

.tb-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-spec-list li {
    padding: .5rem 0;
    color: var(--ec-text-muted);
    display: flex;
    align-items: center;
}

.tb-tech-tag {
    display: inline-block;
    background: var(--ec-bg-3);
    border: 1px solid var(--ec-border);
    border-radius: 6px;
    padding: .4rem .75rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ec-text-muted);
}

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

.tb-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 1.25rem;
}

.tb-spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(13,148,136,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tb-spec-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ec-text-light);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .25rem;
}

.tb-spec-value {
    font-weight: 600;
    color: var(--ec-text);
    line-height: 1.4;
}

/* Why Use / Benefits */
.tb-benefit-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 1.75rem;
    transition: var(--ec-transition);
}

.tb-benefit-card:hover {
    box-shadow: var(--ec-shadow);
    transform: translateY(-3px);
}

.tb-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Use Cases */
.tb-usecase-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius-sm);
    padding: 1.75rem;
    transition: var(--ec-transition);
}

.tb-usecase-card:hover {
    box-shadow: var(--ec-shadow-hover);
}

.tb-usecase-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.tb-usecase-persona {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ec-primary);
    margin-bottom: .5rem;
}

/* How To */
.tb-howto-card {
    background: var(--ec-bg-2);
    border: 1px solid var(--ec-border);
    border-radius: var(--ec-radius);
    padding: 2rem;
    position: relative;
    transition: var(--ec-transition);
}

.tb-howto-card:hover {
    box-shadow: var(--ec-shadow);
}

.tb-howto-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    opacity: .3;
}

.tb-howto-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
}

/* File Upload Form */
.tb-upload-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(13,148,136,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
}

.tb-upload-zone--multi {
    min-height: 200px;
}

.tb-multi-file-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* CTA Banner */
.tb-cta-sub {
    color: var(--ec-text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.tb-cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tb-cta-trust-item {
    display: inline-flex;
    align-items: center;
    font-size: .85rem;
    color: var(--ec-text-muted);
    font-weight: 500;
}

/* Screen Recorder */
.tb-screen-recorder {
    background: var(--ec-dark);
    border-radius: var(--ec-radius);
    padding: 2rem;
    color: #fff;
}

.tb-screen-preview-wrap {
    position: relative;
    background: var(--ec-dark-2);
    border-radius: var(--ec-radius-sm);
    aspect-ratio: 16/9;
    overflow: hidden;
}

.tb-screen-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tb-screen-preview-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: 3rem;
}

.tb-record-status {
    font-size: .9rem;
    padding: .5rem 1rem;
}

/* Responsive for tool partials */
@media (max-width: 991px) {
    .tb-spec-grid {
        grid-template-columns: 1fr;
    }
    .tb-article {
        padding: 1.5rem;
    }
    .tb-article-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .tb-formats-table {
        font-size: .85rem;
    }
    .tb-formats-table th,
    .tb-formats-table td {
        padding: .75rem;
    }
    .tb-spec-item {
        padding: 1rem;
    }
}

/* ============================================================
   COLOR UTILITY CLASSES FOR TOOL PARTIALS
   ============================================================ */

/* Text color variants for benefit/usecase icons */
.text-pink { color: #EC4899 !important; }
.text-blue { color: #3B82F6 !important; }
.text-amber { color: #F59E0B !important; }
.text-violet { color: #8B5CF6 !important; }
.text-green { color: #10B981 !important; }
.text-teal { color: #14B8A6 !important; }
.text-orange { color: #F97316 !important; }
.text-red { color: #EF4444 !important; }
.text-cyan { color: #06B6D4 !important; }
.text-indigo { color: #6366F1 !important; }

/* Background color variants for icons */
.tb-benefit-icon.text-pink,
.tb-usecase-icon.text-pink {
    background: linear-gradient(135deg, rgba(236,72,153,.15), rgba(236,72,153,.05));
}

.tb-benefit-icon.text-blue,
.tb-usecase-icon.text-blue {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.05));
}

.tb-benefit-icon.text-amber,
.tb-usecase-icon.text-amber {
    background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.05));
}

.tb-benefit-icon.text-violet,
.tb-usecase-icon.text-violet {
    background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(139,92,246,.05));
}

.tb-benefit-icon.text-green,
.tb-usecase-icon.text-green {
    background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.05));
}

.tb-benefit-icon.text-teal,
.tb-usecase-icon.text-teal {
    background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(20,184,166,.05));
}

/* Status badge backgrounds */
.badge.bg-secondary {
    background: var(--ec-text-light) !important;
}

.badge.bg-success {
    background: var(--ec-accent) !important;
}

.badge.bg-danger {
    background: #EF4444 !important;
}

.badge.bg-warning {
    background: var(--ec-secondary) !important;
}

/* Fix for text colors in tool pages */
.tb-tool-hero-v2 .text-success { color: var(--ec-accent) !important; }
.tb-tool-hero-v2 .text-primary { color: var(--ec-primary) !important; }
.tb-tool-hero-v2 .text-warning { color: var(--ec-secondary) !important; }
