/*
 Theme Name:   TopToolsCompare
 Theme URI:    https://toptoolscompare.com
 Description:  GeneratePress child theme for a SaaS affiliate review website. Optimized for conversion and readability with a modern SaaS aesthetic.
 Author:       Antigravity
 Author URI:   https://google.com
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  toptoolscompare
 */

/**
 * BRAND DESIGN SYSTEM
 * 
 * Primary: #6366f1 (Indigo) - Trust and Professionalism
 * Accent:  #00d4aa (Mint) - Conversion and Action
 * Dark:    #1a1a2e (Navy) - Depth and Hierarchy
 * Font:    Inter (Sans-serif)
 */

:root {
    /* Colors (Darkened for ADA/WCAG AA Compliance) */
    --ttc-primary: #4f46e5;
    --ttc-primary-dark: #3730a3;
    --ttc-primary-light: #f5f7ff;
    --ttc-primary-soft: #6366f1;
    --ttc-accent: #00d4aa;
    --ttc-dark: #111827;
    --ttc-gray-50: #f9fafb;
    --ttc-gray-100: #f3f4f6;
    --ttc-gray-300: #d1d5db;
    --ttc-gray-500: #6b7280;
    --ttc-gray-700: #4b5563;
    --ttc-gray-800: #1f2937;
    --ttc-gray-900: #111827;
    --ttc-white: #ffffff;
    --ttc-success: #059669;
    --ttc-danger: #dc2626;

    /* Layout & High-Gloss Aesthetic Design Tokens */
    --ttc-border-radius: 12px;
    --ttc-radius: 12px;
    --ttc-radius-lg: 20px;
    --ttc-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --ttc-shadow-md: 0 4px 10px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
    --ttc-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --ttc-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --ttc-content-width: 800px;
    --ttc-wide-width: 1200px;
}

/* Base Adjustments */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Source Sans Pro', 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ttc-gray-800);
    background-color: #fcfdfe;
    background-image: radial-gradient(#6366f105 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Hide stray GP secondary navigation / top bar / Knowledge Base text */
.secondary-navigation,
.mobile-header-navigation,
#secondary-navigation,
.top-bar,
.widget-area h2.widget-title:first-child,
[id^="knowledgebase"],
[class*="knowledge-base"],
[class*="knowledgebase"] {
    display: none !important;
}

/* Remove admin bar on front-end if logged in and it shifts layout */
.admin-bar .site-header {
    top: 0 !important;
}

.ttc-breadcrumb {
    font-size: .78rem;
    color: var(--ttc-gray-500);
    margin-bottom: 30px;
    padding: 8px 12px;
    background: var(--ttc-gray-50);
    display: inline-flex;
    border-radius: 4px;
    border: 1px solid var(--ttc-gray-100);
}

.ttc-breadcrumb a {
    color: var(--ttc-primary);
    text-decoration: none;
}

/* ============================================================
   REVIEW TEMPLATE: Override GP Page Hero addon which renders
   a large gray wave section above the TTC review hero block.
   Without this, the page shows a huge empty header area.
   ============================================================ */
.page-template-templates-template-review-php .page-hero {
    display: none !important;
}

/* Remove excess top padding from article container on review pages */
.page-template-templates-template-review-php .inside-article {
    padding-top: 0 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* ============================================================
   FULL-BLEED FIX: Remove ALL default GP container margins and
   padding that create the white frame around page content.
   GP separate-containers adds margin:40px to site-main and
   padding:30px lateral to inside-article by default.
   ============================================================ */

/* Remove outer margin on the main content column */
.separate-containers .site-main,
.one-container .site-main {
    margin: 0 !important;
    padding-top: 0 !important;
}

/* Remove lateral padding from the article wrapper */
.separate-containers .inside-article,
.one-container .inside-article {
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* Review template pages: restore controlled padding */
.page-template-templates-template-review-php .inside-article {
    padding-left: 30px !important;
    padding-right: 30px !important;
    background: #fff !important;
}

/* Content width: constrain to 1200px on non-home pages via the inner containers */
body:not(.home) .site-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.one-container .content-area {
    width: 100%;
}

/* Hide GP entry-title (H1 duplicate) on review pages */
.page-template-templates-template-review-php .entry-title {
    display: none !important;
}

/* Hide featured image on review pages — template uses its own hero */
.page-template-templates-template-review-php .post-thumbnail,
.page-template-templates-template-review-php .featured-image,
.page-template-templates-template-review-php .wp-post-image,
.page-template-templates-template-review-php .generate-featured-image,
.page-template-templates-template-review-php .generate-page-header-image,
.page-template-templates-template-review-php img.attachment-full,
.page-template-templates-template-review-php img.wp-post-image {
    display: none !important;
}

/* Minimal Overrides for Premium SaaS Feel */
/* Split Header Design: White Logo Tier, Dark Menu Tier */
.site-header,
.inside-header {
    background-color: #ffffff !important;
    background-image: none !important;
}

.main-navigation,
.sticky-navigation-transition,
.mobile-header-navigation,
.inside-navigation {
    background-color: #111827 !important;
    /* Premium Navy for Menu */
    background-image: none !important;
}

/* Center the navigation items within the dark nav bar — DESKTOP only */
@media (min-width: 769px) {
    .main-navigation {
        overflow: visible !important;
        position: relative !important;
        z-index: 100;
    }

    .inside-navigation {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 24px !important;
        min-height: 54px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .inside-navigation .main-nav {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: visible;
    }

    /* Sub-menu alignment fix */
    .main-navigation ul li {
        position: relative !important;
    }

    /* Sub-menu Dropdowns (Desktop) */
    .main-navigation ul ul,
    .main-navigation .sub-menu {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99999 !important;
        background-color: #1a1a2e !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        min-width: 260px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 12px 12px;
        pointer-events: none;
        overflow: hidden !important;
        /* Ensure nothing spills out */
    }

    .main-navigation ul li:hover>ul,
    .main-navigation ul li:hover>.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-navigation ul ul li,
    .main-navigation .sub-menu li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        float: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .main-navigation ul ul li a,
    .main-navigation .sub-menu li a {
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        line-height: 1.4 !important;
        white-space: nowrap !important;
        color: #ffffff !important;
        background: transparent !important;
        text-align: left !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        /* Anchor for underline */
        text-decoration: none !important;
        box-sizing: border-box !important;
    }

    .main-navigation ul ul li a:hover,
    .main-navigation .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #fff !important;
    }

    /* Animated underline for sub-menu items too */
    .main-navigation ul ul li a::after,
    .main-navigation .sub-menu li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 20px;
        height: 2px;
        background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
        transition: width 0.3s ease;
        border-radius: 2px;
        width: 0;
    }

    .main-navigation ul ul li a:hover::after,
    .main-navigation .sub-menu li a:hover::after {
        width: calc(100% - 40px);
    }
}

/* Mobile nav: dropdown (not slideout) */
@media (max-width: 768px) {

    /* Hamburger button */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        padding: 12px 16px;
        z-index: 100;
    }

    /* Nav bar row */
    .inside-navigation {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 16px !important;
        min-height: 54px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    /* Override GP slideout: cancel fixed positioning */
    .slideout-navigation,
    .main-navigation,
    .main-navigation.toggled {
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    /* Remove GP slideout overlay/backdrop */
    .slide-opened,
    .slideout-overlay {
        pointer-events: none !important;
        opacity: 0 !important;
        display: none !important;
    }

    /* Dropdown: hidden by default, full-width below nav bar */
    .main-navigation .main-nav {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        background: #111827;
    }

    /* When toggled: expand downward */
    .main-navigation.toggled .main-nav {
        max-height: 480px !important;
    }

    /* Vertical list layout */
    .main-navigation .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 8px 0 !important;
        width: 100%;
    }

    .main-navigation .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-navigation .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-navigation .main-nav ul li a {
        display: block !important;
        padding: 13px 20px !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .main-navigation .main-nav ul li a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff !important;
    }

    /* Sub-menu (Mobile) */
    .main-navigation .main-nav ul ul {
        display: block !important;
        position: static !important;
        background: #0f172a !important;
        /* Slightly darker than main */
        box-shadow: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .main-navigation .main-nav ul ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    .main-navigation .main-nav ul ul li a {
        padding: 11px 35px !important;
        /* Extra left padding to indent */
        font-size: 0.88rem !important;
        color: rgba(255, 255, 255, 0.65) !important;
        background: transparent !important;
        /* Remove any white background */
    }

    .main-navigation .main-nav ul ul li a:hover {
        color: var(--ttc-accent) !important;
    }
}

/* ============================================================
   CRITICAL: Force header-wrap to relative to avoid GP's
   position:absolute overlay that covers page content
   ============================================================ */
.header-wrap {
    position: relative !important;
}

.site-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--ttc-gray-100);
    z-index: 1001;
    position: relative;
}

.main-navigation {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

/* ============================================================
   CRITICAL FIX: Prevent slideout nav from covering the page.
   On DESKTOP only — scope both rules to min-width:769px so
   mobile/GP's own toggle JS still works.
   ============================================================ */
@media (min-width: 769px) {

    /* Slideout hidden unless toggled (desktop fallback) */
    .slideout-navigation:not(.toggled) {
        display: none !important;
    }

    /* Regular (non-slideout) nav always visible on desktop */
    .main-navigation:not(.slideout-navigation) {
        display: block !important;
    }
}

/* Secondary hairline border for glass definition */
.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.inside-header {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo: centered, constrained height, no distortion */
.site-logo img,
.custom-logo {
    max-height: 70px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide redundant components & GP Logo Clones */
@media (min-width: 769px) {

    .menu-toggle,
    .mobile-header-navigation,
    .sticky-navigation-transition .navigation-branding {
        /* Hide redundant components */
        display: none !important;
    }
}

.main-title a {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--ttc-dark) !important;
    /* Dark for white background */
}

.main-title a span {
    color: var(--ttc-primary);
}

.main-navigation {
    background-color: #111827 !important;
}

.main-navigation .main-nav>ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .main-nav>ul>li>a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff !important;
    /* Force absolute visibility on dark BG */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 0;
}

/* Animated Underline */
.main-navigation .main-nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-navigation .main-nav>ul>li>a:hover {
    color: #ffffff;
}

/* Underline Logic: Show hover state primarily, active item only if not hovering others */
.main-navigation .main-nav>ul>li:hover>a::after {
    width: 100% !important;
}

/* Subtract chevron width (approx 18px) for items with submenus */
.main-navigation .main-nav>ul>li.menu-item-has-children:hover>a::after {
    width: calc(100% - 18px) !important;
}

.main-navigation .main-nav>ul:not(:hover)>li.current-menu-item>a::after {
    width: 100%;
}

.main-navigation .main-nav>ul:not(:hover)>li.current-menu-item.menu-item-has-children>a::after {
    width: calc(100% - 18px);
}

.main-navigation .main-nav>ul>li.current-menu-item>a {
    color: var(--ttc-primary);
}

/* Header Action Button styling */
.main-navigation .main-nav ul li.nav-button a {
    background: linear-gradient(135deg, var(--ttc-primary) 0%, var(--ttc-primary-dark) 100%);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    /* Modern pill shape */
    font-weight: 700;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.main-navigation .main-nav ul li.nav-button a::after {
    display: none;
}

.main-navigation .main-nav ul li.nav-button a:hover {
    background: var(--ttc-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Custom UI Components for Affiliate Focus */
.ttc-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--ttc-primary) 0%, var(--ttc-primary-dark) 100%);
    color: var(--ttc-white) !important;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    border-radius: var(--ttc-border-radius);
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

.ttc-button-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.4);
    color: var(--ttc-white) !important;
}

.ttc-button-outline {
    background: var(--ttc-white);
    color: var(--ttc-primary) !important;
    border: 2px solid var(--ttc-primary);
}

.ttc-button-outline:hover {
    background: var(--ttc-primary-light);
    box-shadow: none;
}

.ttc-badge-accent {
    background-color: var(--ttc-accent);
    color: var(--ttc-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
}

/* Review Template Specifics */
.ttc-review-hero {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 40px;
    border-radius: var(--ttc-radius-lg);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: var(--ttc-shadow-md);
    position: relative;
    overflow: hidden;
}

.ttc-review-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.ttc-product-logo {
    z-index: 1;
    background: #fff;
    padding: 10px;
    border-radius: var(--ttc-radius);
    box-shadow: var(--ttc-shadow-sm);
}

/* Hero Left Column (title, rating, summary capsule) */
.ttc-hero-left {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hero Right Column (logo + CTA block) */
.ttc-hero-right {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ttc-gray-100);
    border-radius: var(--ttc-radius);
    padding: 28px 24px;
    box-shadow: var(--ttc-shadow-sm);
    text-align: center;
}

/* Legacy alias – keep for backward compatibility */
.ttc-hero-content {
    z-index: 1;
}

.ttc-hero-left h1 {
    margin: 0 0 8px 0;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ttc-dark);
    line-height: 1.15;
}

/* Logo inside the hero right column */
.ttc-hero-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--ttc-radius);
    box-shadow: var(--ttc-shadow-sm);
}

/* Letter placeholder when logo image is missing */
.ttc-hero-logo-placeholder {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ttc-primary) 0%, var(--ttc-primary-dark) 100%);
    border-radius: var(--ttc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    text-transform: uppercase;
    user-select: none;
}

/* CTA block inside hero right */
.ttc-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
    width: 100%;
}

.ttc-hero-price {
    font-size: 0.85rem;
    color: var(--ttc-gray-700);
}

.ttc-hero-price strong {
    color: var(--ttc-dark);
    font-size: 1.1rem;
}

.ttc-cta-trust,
.ttc-hero-trust {
    font-size: 0.75rem;
    color: var(--ttc-gray-500);
    display: block;
}

.ttc-cta-trust {
    color: var(--ttc-success);
    font-weight: 600;
}

/* AI capsule label */
.ttc-ai-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ttc-primary);
    margin-bottom: 8px;
}

/* Button variant for hero CTA – full width */
.ttc-button-hero {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.88rem;
}

/* Sticky bar logo */
.ttc-sticky-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.ttc-sticky-logo-placeholder {
    flex-shrink: 0;
}

.ttc-sticky-prod-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Related cards */
.ttc-related-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ttc-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttc-related-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ttc-related-thumb-placeholder {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ttc-gray-300);
}

.ttc-related-rating {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.ttc-related-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.ttc-related-content {
    padding: 16px;
}

.ttc-related-content h4 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    color: var(--ttc-dark);
    line-height: 1.3;
}

.ttc-related-label {
    font-size: 0.78rem;
    color: var(--ttc-primary);
    font-weight: 600;
}

.ttc-star-rating {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

/* Verdict Box */
.ttc-verdict-box {
    background: linear-gradient(135deg, var(--ttc-dark) 0%, #2a2a4a 100%);
    color: #fff;
    padding: 36px 40px;
    border-radius: var(--ttc-radius-lg);
    margin-bottom: 50px;
    box-shadow: var(--ttc-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ttc-verdict-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--ttc-primary-soft);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.ttc-verdict-item strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.ttc-verdict-box.ttc-verdict-final {
    background: linear-gradient(135deg, var(--ttc-primary-light) 0%, #e0e7ff 100%);
    border: 1px solid rgba(99, 102, 241, .3);
    text-align: center;
    color: var(--ttc-dark);
    box-shadow: var(--ttc-shadow-md);
    padding: 28px 36px;
    gap: 10px;
}

.ttc-verdict-box.ttc-verdict-final h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--ttc-dark);
}

.ttc-verdict-box.ttc-verdict-final p {
    color: var(--ttc-gray-700);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.ttc-verdict-box.ttc-verdict-final .ttc-button-primary {
    margin-top: 8px;
}

.ttc-verdict-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
}

.ttc-verdict-text h3 {
    color: #fff;
    margin-bottom: 10px;
}

.ttc-verdict-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ttc-verdict-meta {
    min-width: 220px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--ttc-radius);
    padding: 16px 20px;
}

.ttc-verdict-meta ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: .9rem;
}

.ttc-verdict-meta li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.ttc-verdict-meta li:last-child {
    border-bottom: none;
}

.ttc-verdict-meta li strong {
    color: #fff;
}

/* Pros and Cons */
.ttc-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.ttc-pros,
.ttc-cons {
    padding: 30px;
    border-radius: var(--ttc-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--ttc-shadow-sm);
}

.ttc-pros {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-top: 3px solid #10b981;
}

.ttc-cons {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border-top: 3px solid #ef4444;
}

.ttc-pros h3,
.ttc-cons h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.ttc-pros ul,
.ttc-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ttc-pros li,
.ttc-cons li {
    font-size: .9rem;
    color: var(--ttc-gray-700);
    padding: 5px 0;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.ttc-pros li:last-child,
.ttc-cons li:last-child {
    border-bottom: none;
}

.ttc-pros h4 {
    color: #10b981;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 14px;
}

.ttc-cons h4 {
    color: #ef4444;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 14px;
}

.ttc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Main Content */
.ttc-content-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

/* Related Grid */
.ttc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.ttc-related-card {
    background: #fff;
    border: 1px solid var(--ttc-gray-100);
    border-radius: var(--ttc-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.ttc-related-card:hover {
    box-shadow: var(--ttc-shadow-lg);
    border-color: var(--ttc-primary-soft);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .ttc-review-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .ttc-hero-left h1 {
        font-size: 2rem;
    }

    .ttc-verdict-box,
    .ttc-pros-cons,
    .ttc-related-grid {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .ttc-verdict-item strong {
        font-size: 1.3rem;
    }
}

/* Comparison Template Specifics */
.ttc-compare-hero {
    text-align: center;
    padding: 0px 0;
    background: linear-gradient(135deg, var(--ttc-gray-50) 0%, #fff 100%);
    margin-bottom: 40px;
    border-radius: var(--ttc-border-radius);
}

.ttc-compare-hero h1 {
    margin-bottom: 10px;
}

.ttc-compare-hero p {
    font-size: 1.25rem;
    color: var(--ttc-gray-800);
    opacity: 0.8;
}

.ttc-winner-banner {
    background: #fff;
    border: 2px solid var(--ttc-accent);
    padding: 30px;
    border-radius: var(--ttc-border-radius);
    margin-bottom: 50px;
    position: relative;
    box-shadow: var(--ttc-shadow-md);
}

.ttc-winner-banner .ttc-badge-accent {
    position: absolute;
    top: -15px;
    left: 30px;
    padding: 8px 16px;
}

.ttc-winner-banner h3 {
    margin-bottom: 10px;
    color: var(--ttc-dark);
}

.ttc-compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--ttc-gray-100);
    border: 1px solid var(--ttc-gray-100);
    border-radius: var(--ttc-border-radius);
    overflow: hidden;
    margin-bottom: 50px;
}

.ttc-compare-col {
    background: #fff;
    padding: 30px;
    text-align: center;
}

.ttc-compare-col h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ttc-cat-winners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.ttc-cat-card {
    background: var(--ttc-gray-50);
    padding: 25px;
    border-radius: var(--ttc-border-radius);
    text-align: center;
    border: 1px solid var(--ttc-gray-100);
}

.ttc-cat-card span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ttc-primary);
    margin-bottom: 10px;
}

.ttc-cat-card strong {
    font-size: 1.1rem;
    display: block;
}

.ttc-verdict-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

/* Professional FAQ (Pure CSS details/summary) */
.ttc-faq-section {
    margin-top: 60px;
}

.ttc-faq-section h3 {
    margin-bottom: 30px;
}

.ttc-faq-item {
    background: #fff;
    border: 1px solid var(--ttc-gray-100);
    border-radius: var(--ttc-border-radius);
    margin-bottom: 12px;
    box-shadow: var(--ttc-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.ttc-faq-item[open] {
    box-shadow: var(--ttc-shadow-md);
    border-color: rgba(99, 102, 241, 0.2);
}

.ttc-faq-item summary {
    font-weight: 700;
    color: var(--ttc-dark);
    font-size: 1.05rem;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
}

.ttc-faq-item summary:hover {
    background: #fafbff;
    color: var(--ttc-primary);
}

.ttc-faq-item summary::-webkit-details-marker {
    display: none;
}

.ttc-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ttc-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    display: inline-block;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 12px;
}

.ttc-faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--ttc-primary-dark);
}

.ttc-faq-answer {
    padding: 0 25px 22px;
    color: var(--ttc-gray-700);
    line-height: 1.7;
    font-size: 0.97rem;
    animation: faqFadeIn 0.3s ease forwards;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

/* Sticky Comparison Bar (CLS Optimized) */
.ttc-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 15, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.35s ease, visibility 0.3s;
}

.ttc-sticky-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: stickySlideIn 0.35s ease forwards;
}

@keyframes stickySlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.ttc-sticky-container {
    max-width: var(--ttc-wide-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ttc-sticky-prod strong,
.ttc-sticky-prod {
    color: #ffffff;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ttc-sticky-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ttc-sticky-prod .ttc-star-rating {
    margin-bottom: 0 !important;
    font-size: 1.1rem;
    transform: translateY(1px);
}

/* E-E-A-T Methodology Box */
.ttc-methodology {
    background: var(--ttc-white);
    border: 1px solid var(--ttc-gray-100);
    border-left: 5px solid var(--ttc-primary);
    padding: 30px;
    border-radius: var(--ttc-radius);
    margin: 50px 0;
    font-size: 0.92rem;
    box-shadow: var(--ttc-shadow-sm);
}

.ttc-methodology h4 {
    margin: 0 0 12px 0;
    color: var(--ttc-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

/* Author Box */
.ttc-author-box {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--ttc-gray-100);
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Clear separation between author box and related reviews */
.ttc-related-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid var(--ttc-gray-200, #e5e7eb);
}

.ttc-related-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ttc-dark);
    margin-bottom: 28px;
}

.ttc-author-info span {
    font-size: 0.85rem;
    color: var(--ttc-gray-800);
    text-transform: uppercase;
    font-weight: 700;
}

.ttc-author-info p {
    margin: 5px 0 0;
    font-weight: 500;
}

/* Last Updated Tag */
.ttc-last-updated {
    font-size: 0.7rem;
    color: var(--ttc-gray-500);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ttc-last-updated::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--ttc-accent);
    border-radius: 50%;
}

/* AI GEO Optimizations - Senior Polish */
.ttc-answer-capsule {
    background: linear-gradient(to right, #ffffff, var(--ttc-primary-light));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-left: 5px solid var(--ttc-primary);
    padding: 24px 30px;
    margin-bottom: 40px;
    border-radius: var(--ttc-radius);
    color: var(--ttc-gray-800);
    line-height: 1.7;
    box-shadow: var(--ttc-shadow-sm);
    position: relative;
    max-width: var(--ttc-content-width);
}

.ttc-answer-capsule::before {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
}

.ttc-answer-capsule strong {
    color: var(--ttc-gray-900);
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

.ttc-scoring-table {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ttc-scoring-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    background: #fff;
    border-radius: var(--ttc-radius);
    overflow: hidden;
    box-shadow: var(--ttc-shadow-md);
    border: 1px solid var(--ttc-gray-100);
}

.ttc-scoring-table thead {
    background: var(--ttc-primary);
    color: #ffffff;
}

.ttc-scoring-table th {
    padding: 14px 22px;
    text-align: left;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #ffffff;
    background: var(--ttc-primary);
    border-bottom: none;
}

.ttc-scoring-table td {
    padding: 15px 22px;
    font-size: 0.97rem;
    border-bottom: 1px solid var(--ttc-gray-100);
    color: var(--ttc-dark);
}

.ttc-scoring-table tbody tr:last-child td {
    border-bottom: none;
}

.ttc-scoring-table tbody tr:nth-child(even) {
    background: var(--ttc-gray-50);
}

.ttc-scoring-table tbody tr:hover {
    background: var(--ttc-primary-light);
}

.ttc-scoring-table td:not(:first-child) {
    font-weight: 700;
    color: var(--ttc-primary);
    text-align: right;
}

.ttc-logo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;
    background: var(--ttc-gray-50);
    border-radius: var(--ttc-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--ttc-gray-200);
}

.ttc-logo-placeholder::after {
    content: 'No Logo';
    color: var(--ttc-gray-400);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Rating block */

.ttc-rating-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.ttc-rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ttc-primary);
    line-height: 1;
}



/* Category Landing Template Styles */
.ttc-cta-spaced {
    margin-top: 20px;
}

.ttc-button-accent {
    background: var(--ttc-accent) !important;
    color: var(--ttc-dark) !important;
}

.ttc-button-full {
    width: 100%;
    text-align: center;
}

.ttc-button-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.ttc-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}


.ttc-category-hero h1 {
    margin-bottom: 5px;
    font-weight: 800;
}

.ttc-category-subtitle {
    display: block;
    font-size: 1.25rem;
    color: var(--ttc-gray-500);
    margin-bottom: 15px;
}

.ttc-hero-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ttc-tool-count-badge {
    background: var(--ttc-accent);
    color: var(--ttc-dark);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ttc-cat-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ttc-gray-500);
    background: var(--ttc-gray-100);
    padding: 2px 8px;
    border-radius: 100px;
}

.ttc-winner-banner {
    background: var(--ttc-gray-50);
    border: 1px solid var(--ttc-primary);
    border-radius: var(--ttc-border-radius);
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--ttc-shadow-md);
}

.ttc-badge-winner {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--ttc-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ttc-winner-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ttc-winner-text {
    flex: 1;
}

.ttc-winner-text h3 {
    margin-bottom: 10px;
    color: var(--ttc-primary);
}

.ttc-winner-meta {
    flex: 0 0 220px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ttc-winner-meta span {
    display: block;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .ttc-winner-content {
        flex-direction: column;
        text-align: center;
    }

    .ttc-winner-meta {
        flex: 0 0 auto;
        text-align: center;
        width: 100%;
    }
}

/* Alternatives Template Specifics */
.ttc-top-pick {
    background: linear-gradient(135deg, var(--ttc-primary) 0%, var(--ttc-dark) 100%);
    color: #fff;
    padding: 3rem;
    border-radius: var(--ttc-border-radius);
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.ttc-top-pick-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.ttc-top-pick-content {
    flex: 1;
}

.ttc-top-pick h3 {
    color: var(--ttc-accent);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1rem 0;
    letter-spacing: -0.02em;
}

.ttc-top-pick p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.ttc-top-pick-visual {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttc-trophy-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.ttc-button-accent {
    background: var(--ttc-accent);
    color: var(--ttc-dark) !important;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 255, 178, 0.2);
    transition: all 0.3s ease;
}

.ttc-button-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 178, 0.4);
    background: #fff;
}

@media (max-width: 768px) {
    .ttc-top-pick {
        padding: 2rem;
    }

    .ttc-top-pick-inner {
        flex-direction: column;
        text-align: center;
    }

    .ttc-top-pick h3 {
        font-size: 1.8rem;
    }

    .ttc-top-pick-visual {
        order: -1;
        width: 100px;
        height: 100px;
    }

    .ttc-top-pick p {
        font-size: 1.1rem;
    }
}

.ttc-alt-card {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 30px;
    background: #fff;
    border: 1px solid var(--ttc-gray-100);
    padding: 30px;
    border-radius: var(--ttc-border-radius);
    margin-bottom: 30px;
    align-items: center;
    box-shadow: var(--ttc-shadow-sm);
    transition: transform 0.2s ease;
}

.ttc-alt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ttc-shadow-md);
}

.ttc-alt-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ttc-primary), var(--ttc-primary-dark));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ttc-alt-info h3 {
    margin-bottom: 8px;
    color: var(--ttc-dark);
}

.ttc-alt-best-for {
    font-style: italic;
    color: var(--ttc-gray-800);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .ttc-verdict-main {
        grid-template-columns: 1fr;
    }

    .inside-header {
        padding: 10px 0;
    }

    .ttc-alt-card {
        grid-template-columns: 40px 1fr;
    }

    .ttc-alt-action {
        grid-column: 1 / -1;
    }

    .ttc-sticky-products {
        display: none;
    }

    .ttc-verdict-actions {
        flex-direction: column;
    }

    .ttc-verdict-actions .ttc-button-primary {
        width: 100%;
    }

    .ttc-alt-number {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }

    .ttc-compare-table,
    .ttc-cat-winners {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* ============================================================
   TTC HOMEPAGE — child theme styles
   Prefix: ttch-   (TopToolsCompare Home)
   Paste at the end of style.css in your child theme
   ============================================================ */

/* ── VARIABLES & RESET ─────────────────────────────────────── */
.ttch-wrap {
    --ttch-ac: #5c62e8;
    --ttch-ac2: #192b80;
    --ttch-al: #eef0ff;
    --ttch-dk: #1b1b42;
    --ttch-ink: #141414;
    --ttch-ink3: #9898b1;
    --ttch-bg2: #f2f5fa;
    --ttch-bg3: #e1e6ed;
    --ttch-bdr: #e1e6ed;
    --ttch-gn: #0f7b50;
    --ttch-gl: #e8f5f0;
    --ttch-s2: 0 4px 16px rgba(0, 0, 0, .08);
    --ttch-s3: 0 12px 40px rgba(0, 0, 0, .12);
    --ttch-r: 10px;
    --ttch-rs: 6px;
}

.ttch-wrap,
.ttch-wrap * {
    font-family: 'Source Sans 3', sans-serif;
    box-sizing: border-box;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.ttch-tbar {
    background: var(--ttch-ac2);
    color: rgba(255, 255, 255, .75);
    font-size: .75rem;
    text-align: center;
    padding: 8px 20px;
    letter-spacing: .01em;
}

.ttch-tbar strong {
    color: #fff;
}

.ttch-sep {
    margin: 0 12px;
    opacity: .35;
}

/* ── HERO ───────────────────────────────────────────────────── */
.ttch-hero {
    background: linear-gradient(155deg, var(--ttch-bg2) 0%, #fff 55%);
    border-bottom: 1px solid var(--ttch-bdr);
    padding: 64px 40px 56px;
}

.ttch-hero-in {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 52px;
    align-items: center;
}

.ttch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--ttch-ac);
    text-transform: uppercase;
    letter-spacing: .09em;
    background: var(--ttch-al);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.ttch-eyebrow::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--ttch-ac);
    border-radius: 50%;
}

.ttch-wrap .ttch-h1 {
    font-size: clamp(1.9rem, 3vw, 2.75rem) !important;
    font-weight: 700 !important;
    line-height: 1.14 !important;
    letter-spacing: -.02em;
    color: var(--ttch-dk);
    margin-bottom: 14px !important;
}

.ttch-wrap .ttch-h1 em {
    font-style: italic;
    color: var(--ttch-ac);
    font-weight: 300;
}

.ttch-hero-sub {
    font-size: 1rem;
    color: var(--ttch-ink3);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 28px;
}

.ttch-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ttch-btn-primary {
    background: var(--ttch-ac);
    color: #fff !important;
    font-size: .88rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: var(--ttch-rs);
    text-decoration: none !important;
    transition: background .15s, transform .1s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ttch-btn-primary:hover {
    background: #4a50d4;
    transform: translateY(-1px);
}

.ttch-btn-ghost {
    background: transparent;
    color: var(--ttch-dk) !important;
    font-size: .88rem;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: var(--ttch-rs);
    text-decoration: none !important;
    border: 1.5px solid var(--ttch-bdr);
    transition: border-color .15s, background .15s;
    display: inline-flex;
    align-items: center;
}

.ttch-btn-ghost:hover {
    border-color: var(--ttch-ink3);
    background: var(--ttch-bg2);
}

.ttch-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ttch-bdr);
}

.ttch-stat-n {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ttch-dk);
    display: block;
    line-height: 1;
}

.ttch-stat-l {
    font-size: .72rem;
    color: var(--ttch-ink3);
    margin-top: 3px;
}

/* ── HERO CARD ──────────────────────────────────────────────── */
.ttch-hero-card {
    background: #fff;
    border: 1px solid var(--ttch-bdr);
    border-radius: var(--ttch-r);
    padding: 24px;
    box-shadow: var(--ttch-s3);
    position: relative;
    overflow: hidden;
}

.ttch-hero-card::after {
    content: "EDITOR'S CHOICE";
    position: absolute;
    top: 13px;
    right: -30px;
    background: var(--ttch-ac);
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 44px;
    transform: rotate(45deg);
}

.ttch-card-tag {
    font-size: .68rem;
    font-weight: 700;
    color: var(--ttch-ink3);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 13px;
}

.ttch-card-prod {
    display: flex;
    align-items: flex-end;
    gap: 13px;
    margin-bottom: 14px;
}

.ttch-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    border: 1px solid var(--ttch-bdr);
    background: var(--ttch-bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ttch-ac);
    overflow: hidden;
    flex-shrink: 0;
}

.ttch-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.ttch-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ttch-dk);
}

.ttch-card-cat {
    font-size: .73rem;
    color: var(--ttch-ink3);
}

.ttch-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
}

.ttch-rating-big {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ttch-dk);
}

.ttch-stars {
    color: #f59e0b;
    font-size: .83rem;
}

.ttch-rating-sub {
    font-size: .7rem;
    color: var(--ttch-ink3);
}

.ttch-card-verdict {
    background: var(--ttch-gl);
    border-left: 3px solid var(--ttch-gn);
    padding: 8px 12px;
    font-size: .8rem;
    color: var(--ttch-gn);
    font-weight: 600;
    border-radius: 0 var(--ttch-rs) var(--ttch-rs) 0;
    margin-bottom: 14px;
}

.ttch-card-list {
    list-style: none !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
}

.ttch-card-list li {
    font-size: .8rem;
    color: var(--ttch-ink);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--ttch-bg2);
}

.ttch-card-list li:last-child {
    border-bottom: none;
}

.ttch-card-list li::before {
    content: '✓';
    color: var(--ttch-gn);
    font-weight: 700;
    font-size: .73rem;
    flex-shrink: 0;
}

.ttch-card-cta {
    display: block;
    text-align: center;
    background: var(--ttch-ac);
    color: #fff !important;
    font-size: .86rem;
    font-weight: 700;
    padding: 11px;
    border-radius: var(--ttch-rs);
    text-decoration: none !important;
    transition: background .15s;
}

.ttch-card-cta:hover {
    background: #4a50d4;
}

.ttch-card-note {
    font-size: .7rem;
    color: var(--ttch-ink3);
    text-align: center;
    margin-top: 7px;
}

/* ── SECTION BASE ───────────────────────────────────────────── */
.ttch-sec {
    padding: 56px 40px;
}

.ttch-sec-gray {
    background: var(--ttch-bg2);
    border-top: 1px solid var(--ttch-bdr);
    border-bottom: 1px solid var(--ttch-bdr);
}

.ttch-sec-dark {
    background: var(--ttch-dk);
}

.ttch-sec-in {
    max-width: 1140px;
    margin: 0 auto;
}

.ttch-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 26px;
}

.ttch-sec-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ttch-dk);
    letter-spacing: -.01em;
}

.ttch-sec-title span {
    color: var(--ttch-ac);
}

.ttch-sec-meta {
    font-size: .8rem;
    color: var(--ttch-ink3);
    margin-top: 3px;
}

.ttch-see-all {
    font-size: .8rem;
    font-weight: 700;
    color: var(--ttch-ac) !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.ttch-see-all:hover {
    text-decoration: underline !important;
}

/* dark section overrides */
.ttch-sec-dark .ttch-sec-title {
    color: #fff;
}

.ttch-sec-dark .ttch-sec-meta {
    color: rgba(255, 255, 255, .38);
}

.ttch-sec-dark .ttch-see-all {
    color: #a5b4fc !important;
}

/* ── CATEGORIES ─────────────────────────────────────────────── */
.ttch-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.ttch-cat-card {
    background: #fff;
    border: 1px solid var(--ttch-bdr);
    border-radius: var(--ttch-r);
    padding: 18px 14px;
    text-decoration: none !important;
    transition: box-shadow .15s, transform .1s;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ttch-cat-card:hover {
    box-shadow: var(--ttch-s2);
    transform: translateY(-2px);
}

.ttch-cat-icon {
    font-size: 1.3rem;
}

.ttch-cat-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--ttch-dk);
}

.ttch-cat-count {
    font-size: .7rem;
    color: var(--ttch-ink3);
}

.ttch-cat-pick {
    font-size: .7rem;
    color: var(--ttch-ac);
    font-weight: 600;
    margin-top: auto;
}

/* ── TOP PICKS ──────────────────────────────────────────────── */
.ttch-picks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.ttch-pick {
    background: #fff;
    border: 1px solid var(--ttch-bdr);
    border-radius: var(--ttch-r);
    padding: 22px;
    position: relative;
    transition: box-shadow .15s, transform .1s;
}

.ttch-pick:hover {
    box-shadow: var(--ttch-s2);
    transform: translateY(-2px);
}

.ttch-pick-best {
    border-color: var(--ttch-ac);
    box-shadow: 0 0 0 3px var(--ttch-al);
}

.ttch-pick-badge {
    position: absolute;
    top: -1px;
    left: 18px;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 0 0 6px 6px;
    color: #fff;
}

.ttch-badge-accent {
    background: var(--ttch-ac);
}

.ttch-badge-gray {
    background: var(--ttch-ink3);
}

.ttch-badge-green {
    background: var(--ttch-gn);
}

.ttch-pick-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
    margin-top: 13px;
}

.ttch-pick-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--ttch-bdr);
    background: var(--ttch-bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 700;
    color: var(--ttch-ac);
    overflow: hidden;
    flex-shrink: 0;
}

.ttch-pick-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.ttch-pick-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ttch-dk);
}

.ttch-pick-type {
    font-size: .7rem;
    color: var(--ttch-ink3);
}

.ttch-pick-score {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
}

.ttch-score-pill {
    font-size: .77rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    background: var(--ttch-gl);
    color: var(--ttch-gn);
}

.ttch-pick-stars {
    color: #f59e0b;
    font-size: .75rem;
}

.ttch-pick-why {
    font-size: .8rem;
    color: var(--ttch-ink);
    line-height: 1.55;
    margin-bottom: 11px;
}

.ttch-pick-price {
    font-size: .73rem;
    color: var(--ttch-ink3);
    margin-bottom: 12px;
}

.ttch-pick-price strong {
    color: var(--ttch-dk);
}

.ttch-pick-cta {
    display: block;
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    padding: 9px;
    border-radius: var(--ttch-rs);
    text-decoration: none !important;
    transition: background .15s;
}

.ttch-pick-cta-filled {
    background: var(--ttch-ac);
    color: #fff !important;
}

.ttch-pick-cta-filled:hover {
    background: #4a50d4;
}

.ttch-pick-cta-ghost {
    background: var(--ttch-bg2);
    color: var(--ttch-dk) !important;
    border: 1px solid var(--ttch-bdr);
}

.ttch-pick-cta-ghost:hover {
    background: var(--ttch-bg3);
}

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.ttch-comp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 22px;
}

.ttch-comp-table th {
    font-size: .7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .32);
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ttch-comp-table td {
    padding: 13px 15px;
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    vertical-align: middle;
}

.ttch-comp-table tr:last-child td {
    border-bottom: none;
}

.ttch-comp-table tr:hover td {
    background: rgba(255, 255, 255, .025);
}

.ttch-tool-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
}

.ttch-tool-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.ttch-tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
    border-radius: 4px;
}

.ttch-comp-score {
    font-weight: 700;
    color: #4ade80;
}

.ttch-comp-link {
    color: #a5b4fc !important;
    font-weight: 700;
    font-size: .78rem;
    text-decoration: none !important;
}

.ttch-comp-link:hover {
    text-decoration: underline !important;
}

.ttch-comp-badge {
    font-size: .64rem;
    background: rgba(92, 98, 232, .22);
    color: #a5b4fc;
    padding: 2px 7px;
    border-radius: 100px;
    font-weight: 700;
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.ttch-rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ttch-rev-card {
    background: #fff;
    border: 1px solid var(--ttch-bdr);
    border-radius: var(--ttch-r);
    padding: 18px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: box-shadow .15s, transform .1s;
}

.ttch-rev-card:hover {
    box-shadow: var(--ttch-s2);
    transform: translateY(-2px);
}

.ttch-rev-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ttch-rev-logo {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    border: 1px solid var(--ttch-bdr);
    background: var(--ttch-bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--ttch-ac);
    overflow: hidden;
}

.ttch-rev-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.ttch-rev-badge {
    font-size: .66rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
}

.ttch-badge-green {
    background: var(--ttch-gl);
    color: var(--ttch-gn);
}

.ttch-rev-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ttch-dk);
    margin-bottom: 2px;
}

.ttch-rev-cat {
    font-size: .7rem;
    color: var(--ttch-ink3);
    margin-bottom: 8px;
}

.ttch-rev-exc {
    font-size: .8rem;
    color: var(--ttch-ink);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 12px;
}

.ttch-rev-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--ttch-bg2);
    padding-top: 9px;
}

.ttch-rev-score {
    font-size: .78rem;
    font-weight: 700;
    color: var(--ttch-gn);
}

.ttch-rev-date {
    font-size: .68rem;
    color: var(--ttch-ink3);
}

.ttch-rev-read {
    font-size: .73rem;
    font-weight: 700;
    color: var(--ttch-ac);
}

/* ── WHY TRUST ──────────────────────────────────────────────── */
.ttch-trust-header {
    text-align: center;
    margin-bottom: 32px;
}

.ttch-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ttch-trust-item {
    padding: 24px 16px;
    text-align: center;
}

.ttch-trust-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.ttch-wrap .ttch-trust-item h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ttch-dk);
    margin-bottom: 5px;
}

.ttch-trust-item p {
    font-size: .76rem;
    color: var(--ttch-ink3);
    line-height: 1.55;
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.ttch-nl-sec {
    border-top: 1px solid var(--ttch-bdr);
    padding: 48px 40px;
}

.ttch-nl-in {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.ttch-wrap .ttch-nl-title {
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    color: var(--ttch-dk);
    margin-bottom: 7px;
}

.ttch-nl-sub {
    font-size: .86rem;
    color: var(--ttch-ink3);
    margin-bottom: 20px;
}

.ttch-nl-form {
    display: flex;
    gap: 8px;
}

.ttch-nl-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--ttch-bdr);
    border-radius: var(--ttch-rs);
    font-family: inherit;
    font-size: .86rem;
    color: var(--ttch-ink);
    outline: none;
    background: #fff;
    transition: border-color .15s;
}

.ttch-nl-form input:focus {
    border-color: var(--ttch-ac);
}

.ttch-nl-form button {
    background: var(--ttch-ac);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: var(--ttch-rs);
    font-family: inherit;
    font-size: .86rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}

.ttch-nl-form button:hover {
    background: #4a50d4;
}

.ttch-nl-note {
    font-size: .68rem;
    color: var(--ttch-ink3);
    margin-top: 8px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
    .ttch-hero-in {
        grid-template-columns: 1fr;
    }

    .ttch-picks-grid {
        grid-template-columns: 1fr;
    }

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

    .ttch-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ttch-rev-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .ttch-hero {
        padding: 44px 20px 40px;
    }

    .ttch-sec {
        padding: 44px 20px;
    }

    .ttch-nl-sec {
        padding: 40px 20px;
    }

    .ttch-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ttch-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ttch-nl-form {
        flex-direction: column;
    }

    .ttch-rev-grid {
        grid-template-columns: 1fr;
    }

    .ttch-comp-table th:nth-child(3),
    .ttch-comp-table td:nth-child(3),
    .ttch-comp-table th:nth-child(4),
    .ttch-comp-table td:nth-child(4) {
        display: none;
    }
}

/* ============================================================
   TTC HOME — Full width fix para GeneratePress
   Pega esto AL FINAL de style.css del child theme
   ============================================================ */

/* Elimina el padding lateral del contenedor de la página home */
.home .site-content,
.home .content-area,
.home #primary,
.home .site-main,
.home .inside-article,
.home article.page,
.home .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* El contenedor one-container de GeneratePress */
.home.one-container .site-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Elimina el fondo blanco de la caja del artículo */
.home .separate-containers .inside-article,
.home .one-container .inside-article {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* El wrap .ttch-wrap ya tiene max-width interno en cada sección */
.ttch-wrap {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Quita el gap superior que deja GP entre nav y contenido */
.home .site-content #primary {
    margin-top: 0 !important;
}

/* ============================================================
   FIX RIBBON — centrado correcto
   ============================================================ */

.ttch-hero-card {
    overflow: visible !important;
}

.ttch-hero-card::after {
    display: none !important;
}

.ttch-ribbon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 0 10px 0 0;
    pointer-events: none;
    z-index: 5;
}

.ttch-ribbon {
    position: absolute;
    top: 26px;
    right: -32px;
    background: #5c62e8;
    color: #fff;
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .09em;
    padding: 5px 0;
    width: 150px;
    text-align: center;
    transform: rotate(45deg);
    transform-origin: center center;
    white-space: nowrap;
    line-height: 1;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#ttc-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

#ttc-cookie-bar.ttc-cookie-show {
    transform: translateY(0);
    opacity: 1;
}

#ttc-cookie-bar.ttc-cookie-hide {
    transform: translateY(100%);
    opacity: 0;
}

.ttc-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ttc-cookie-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.ttc-cookie-text a {
    color: #818cf8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ttc-cookie-text a:hover {
    color: #a5b4fc;
}

.ttc-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.ttc-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.1s ease;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.ttc-cookie-accept {
    background: #6366f1;
    color: #fff !important;
}

.ttc-cookie-accept:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.ttc-cookie-learn {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ttc-cookie-learn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
}

@media (max-width: 640px) {
    .ttc-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 14px;
    }

    .ttc-cookie-actions {
        width: 100%;
    }

    .ttc-cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ============================================================
   FOOTER — Dark Navy with white text + footer nav
   ============================================================ */
.site-footer,
#colophon,
.site-info {
    background-color: #0f1729 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.site-info a {
    color: rgba(255, 255, 255, 0.55) !important;
}

.site-info a:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Flex row: copyright left, nav right */
.inside-site-info {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 24px !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer nav list */
.ttc-footer-nav {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    align-items: center;
}

.ttc-footer-nav li {
    margin: 0 !important;
    padding: 0 !important;
}

.ttc-footer-nav li a {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.ttc-footer-nav li a:hover {
    color: #fff !important;
}

/* Mobile: stack vertically */
@media (max-width: 640px) {
    .inside-site-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .ttc-footer-nav {
        gap: 6px 16px;
    }
}

/* ============================================================
   RICH FOOTER — Multi-column pre-footer section
   ============================================================ */
.ttc-footer-rich {
    background: #0d1424;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 52px 24px 40px;
}

.ttc-footer-rich-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Brand column */
.ttc-footer-logo {
    text-decoration: none !important;
    display: inline-block;
    margin-bottom: 14px;
}

.ttc-footer-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ttc-footer-logo-text span {
    color: #818cf8;
}

.ttc-footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0 0 20px 0 !important;
    max-width: 320px;
}

.ttc-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ttc-footer-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.01em;
}

/* Column headings */
.ttc-footer-heading {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.35) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px 0 !important;
}

/* Footer links list */
.ttc-footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ttc-footer-links li {
    margin: 0 !important;
    padding: 0 !important;
}

.ttc-footer-links li a {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    display: block;
    padding: 5px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.ttc-footer-links li a:hover {
    color: #fff !important;
    padding-left: 4px;
}

/* Divider between rich footer and copyright bar */
.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ttc-footer-rich-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ttc-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .ttc-footer-rich {
        padding: 40px 20px 32px;
    }

    .ttc-footer-rich-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ── Review Body Visual Components ── */
.ttc-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.ttc-stat-card {
    background: linear-gradient(135deg, #f2f5fa 0%, #ffffff 100%);
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ttc-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5c62e8, #192b80);
}

.ttc-stat-card .ttc-stat-val {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1b1b42;
    line-height: 1;
    margin-bottom: 6px;
}

.ttc-stat-card .ttc-stat-label {
    font-size: 12px;
    color: #9898b1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.ttc-stat-card .ttc-stat-sub {
    display: block;
    font-size: 11px;
    color: #5c62e8;
    margin-top: 4px;
    font-weight: 600;
}

/* Speed bar */
.ttc-speed-test {
    background: #f2f5fa;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    border: 1px solid #e1e6ed;
}

.ttc-speed-test h4 {
    margin: 0 0 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9898b1;
    font-weight: 700;
}

.ttc-speed-row {
    display: grid;
    grid-template-columns: 90px 1fr 70px;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ttc-speed-row:last-child {
    margin-bottom: 0;
}

.ttc-speed-location {
    font-size: 13px;
    font-weight: 600;
    color: #1b1b42;
}

.ttc-speed-bar-wrap {
    background: #e1e6ed;
    border-radius: 100px;
    height: 10px;
    overflow: hidden;
}

.ttc-speed-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #5c62e8, #192b80);
    transition: width 1s ease;
}

.ttc-speed-bar.good {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.ttc-speed-bar.ok {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.ttc-speed-val {
    font-size: 13px;
    font-weight: 700;
    color: #1b1b42;
    text-align: right;
}

/* Comparison table */
.ttc-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.ttc-compare-table thead th {
    background: #1b1b42;
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ttc-compare-table thead th:first-child {
    border-radius: 10px 0 0 0;
}

.ttc-compare-table thead th:last-child {
    border-radius: 0 10px 0 0;
}

.ttc-compare-table thead th.ttc-col-highlight {
    background: #5c62e8;
}

.ttc-compare-table tbody tr:nth-child(even) td {
    background: #f2f5fa;
}

.ttc-compare-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #e1e6ed;
    color: #1b1b42;
}

.ttc-compare-table tbody td.ttc-col-highlight {
    background: rgba(92, 98, 232, 0.06);
    font-weight: 600;
    color: #1b1b42;
}

.ttc-compare-table .ttc-check {
    color: #22c55e;
    font-size: 16px;
}

.ttc-compare-table .ttc-cross {
    color: #ef4444;
    font-size: 16px;
}

.ttc-compare-table .ttc-partial {
    color: #f59e0b;
    font-size: 16px;
}

/* Callout box */
.ttc-callout {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 12px;
    margin: 28px 0;
    align-items: flex-start;
}

.ttc-callout.info {
    background: rgba(92, 98, 232, 0.07);
    border-left: 4px solid #5c62e8;
}

.ttc-callout.tip {
    background: rgba(34, 197, 94, 0.07);
    border-left: 4px solid #22c55e;
}

.ttc-callout.warn {
    background: rgba(245, 158, 11, 0.07);
    border-left: 4px solid #f59e0b;
}

.ttc-callout-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.4;
}

.ttc-callout-text {
    font-size: 15px;
    line-height: 1.6;
    color: #1b1b42;
}

.ttc-callout-text strong {
    display: block;
    margin-bottom: 4px;
}

/* Plan cards */
.ttc-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.ttc-plan-card {
    border: 2px solid #e1e6ed;
    border-radius: 14px;
    padding: 22px 18px;
    position: relative;
    background: #fff;
}

.ttc-plan-card.featured {
    border-color: #5c62e8;
    box-shadow: 0 4px 24px rgba(92, 98, 232, 0.15);
}

.ttc-plan-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #5c62e8;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ttc-plan-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9898b1;
    font-weight: 700;
    margin-bottom: 8px;
}

.ttc-plan-price {
    font-size: 30px;
    font-weight: 700;
    color: #1b1b42;
    line-height: 1;
    margin-bottom: 4px;
}

.ttc-plan-price span {
    font-size: 14px;
    font-weight: 400;
    color: #9898b1;
}

.ttc-plan-divider {
    height: 1px;
    background: #e1e6ed;
    margin: 14px 0;
}

.ttc-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #1b1b42;
}

.ttc-plan-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ttc-plan-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
}

/* Security feature grid */
.ttc-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.ttc-feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: flex-start;
    padding: 16px;
    background: #f2f5fa;
    border-radius: 10px;
    border: 1px solid #e1e6ed;
    min-width: 0;
}

.ttc-feature-icon {
    font-size: 22px;
    line-height: 1;
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* For direct children in blocks like HeyGen (no .ttc-feature-text wrapper) */
.ttc-feature-item>strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    color: #1b1b42;
    margin: 0;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.ttc-feature-item>span:not(.ttc-feature-icon) {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
    color: #9898b1;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Fallback for components that provide the .ttc-feature-text wrapper */
.ttc-feature-text {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 0;
}

.ttc-feature-text strong {
    display: block;
    font-size: 14px;
    color: #1b1b42;
    margin-bottom: 3px;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.ttc-feature-text span {
    font-size: 13px;
    color: #9898b1;
    line-height: 1.4;
    word-wrap: break-word;
}


/* Support test result */
.ttc-support-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.ttc-support-card {
    text-align: center;
    padding: 20px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e1e6ed;
    box-shadow: 0 2px 8px rgba(27, 27, 66, 0.05);
}

.ttc-support-card .ttc-support-time,
.ttc-support-card .ttc-support-val {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--ttc-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.ttc-support-card .ttc-support-desc,
.ttc-support-card .ttc-support-label {
    display: block;
    font-size: 11px;
    color: var(--ttc-gray-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Verdict banner */
.ttc-winner-banner {
    background: linear-gradient(135deg, #1b1b42 0%, #192b80 100%);
    color: #fff;
    border-radius: 14px;
    padding: 24px 28px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ttc-winner-banner .ttc-winner-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.ttc-winner-banner h4 {
    color: #fff;
    margin: 0 0 4px;
    font-size: 17px;
}

.ttc-winner-banner p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* --- HeyGen Review Page Layout Fixes --- */

/* Support Results Spacing Fix */
.ttc-support-results {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 16px !important;
    margin: 28px 0 !important;
}

.ttc-support-card .ttc-support-val,
.ttc-support-card .ttc-support-time {
    display: block !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--ttc-primary) !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.ttc-support-card .ttc-support-label,
.ttc-support-card .ttc-support-desc {
    display: block !important;
    font-size: 11px !important;
    color: var(--ttc-gray-500) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 4px !important;
    line-height: 1.4 !important;
}

/* Pricing Table Padding and Wrapping */
.ttc-price-table table td,
.ttc-price-table table th {
    padding: 16px 12px !important;
    border-bottom: 1px solid var(--ttc-gray-100) !important;
    background: transparent !important;
    white-space: normal !important;
    word-break: normal !important;
}

/* Speed Test Alignment Fix */
.ttc-speed-row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}

.ttc-speed-label {
    flex: 0 0 200px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ttc-gray-800) !important;
}

.ttc-speed-bar-wrap {
    flex: 1 !important;
    height: 12px !important;
    background: var(--ttc-gray-100) !important;
    border-radius: 50px !important;
    overflow: hidden !important;
}

.ttc-speed-val {
    flex: 0 0 50px !important;
    text-align: right !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--ttc-gray-700) !important;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .ttc-speed-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .ttc-speed-val {
        flex: none !important;
        width: 100% !important;
        text-align: left !important;
    }
}

/* --- Professional Table of Contents (TOC) --- */
.ttc-toc {
    background: #f8fafc;
    border: 1px solid #e1e6ed;
    border-left: 4px solid var(--ttc-primary);
    border-radius: 8px;
    padding: 24px 32px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ttc-toc-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ttc-gray-900);
    margin: 0 0 20px 0 !important;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e6ed;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.ttc-toc-list {
    margin: 0 !important;
    padding: 0 0 0 10px !important;
    list-style: none !important;
    counter-reset: toc-counter;
}

.ttc-toc-list li {
    margin-bottom: 14px !important;
    position: relative;
    padding-left: 32px;
    counter-increment: toc-counter;
    line-height: 1.5;
}

.ttc-toc-list li::before {
    content: counter(toc-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--ttc-primary-light, #e0e7ff);
    color: var(--ttc-primary);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ttc-toc-list li:last-child {
    margin-bottom: 0 !important;
}

.ttc-toc-list a {
    text-decoration: none !important;
    color: var(--ttc-gray-700) !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
}

.ttc-toc-list a:hover {
    color: var(--ttc-primary) !important;
    transform: translateX(6px);
}

/* ============================================================
   TTC — Language Switcher
   ============================================================ */
.ttc-lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.ttc-lang-current {
    background: var(--ttc-primary);
    border: none;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.ttc-lang-current:hover {
    background: var(--ttc-primary-dark, #4f46e5);
    transform: translateY(-1px);
}

.lang-arrow {
    font-size: 10px;
    opacity: 0.9;
}

.ttc-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px;
    margin: 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.ttc-lang-switcher:hover .ttc-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ttc-lang-dropdown li {
    margin: 4px 0;
}

.ttc-lang-dropdown a {
    display: block !important;
    padding: 8px 12px !important;
    color: #1e293b !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.ttc-lang-dropdown li.is-active a {
    color: var(--ttc-primary) !important;
    background: var(--ttc-primary-light, #f0f2ff) !important;
}

.ttc-lang-dropdown a:hover {
    background: #f1f5f9 !important;
    color: var(--ttc-primary) !important;
}

@media (max-width: 768px) {
    .ttc-lang-switcher {
        margin-left: 5px;
        margin-top: 4px;
    }

    .ttc-lang-current {
        font-size: 13px;
        padding: 5px 8px;
    }
}

/* ── TTC VPN Category Page ─────────────────────────────── */
.ttc-vpn-intro {
    max-width: 720px;
    margin: 0 0 2.5rem;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #374151;
}

.ttc-vpn-intro strong {
    color: #1b1b42;
}

/* TOC */
.ttc-toc {
    background: #f8f9ff;
    border-left: 4px solid #5c62e8;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

.ttc-toc-title {
    font-weight: 700;
    color: #1b1b42;
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ttc-toc-list {
    margin: 0;
    padding-left: 1.25rem;
}

.ttc-toc-list li {
    margin-bottom: 0.35rem;
}

.ttc-toc-list a {
    color: #5c62e8;
    text-decoration: none;
    font-size: 0.95rem;
}

.ttc-toc-list a:hover {
    text-decoration: underline;
}

/* Stat bar */
.ttc-cat-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.ttc-cat-stat {
    flex: 1;
    min-width: 140px;
    background: #1b1b42;
    color: #fff;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    text-align: center;
}

.ttc-cat-stat-val {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #a5b4fc;
    line-height: 1;
}

.ttc-cat-stat-label {
    display: block;
    font-size: 0.78rem;
    margin-top: 0.35rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* VPN cards */
.ttc-vpn-cards {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.ttc-vpn-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ttc-vpn-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9ff;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.ttc-vpn-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ttc-vpn-badge.best-overall {
    background: #5c62e8;
    color: #fff;
}

.ttc-vpn-badge.best-value {
    background: #059669;
    color: #fff;
}

.ttc-vpn-badge.best-speed {
    background: #d97706;
    color: #fff;
}

.ttc-vpn-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.ttc-vpn-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1b1b42;
    flex: 1;
}

.ttc-vpn-score {
    font-size: 0.9rem;
    font-weight: 700;
    color: #5c62e8;
    white-space: nowrap;
}

.ttc-vpn-card-body {
    padding: 1.5rem;
}

.ttc-vpn-tagline {
    font-size: 0.98rem;
    color: #374151;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.ttc-vpn-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ttc-vpn-metric {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
}

.ttc-vpn-metric-val {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1b1b42;
}

.ttc-vpn-metric-label {
    display: block;
    font-size: 0.72rem;
    color: #6b7280;
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ttc-vpn-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ttc-vpn-pros,
.ttc-vpn-cons {
    font-size: 0.88rem;
}

.ttc-vpn-pros strong {
    color: #059669;
}

.ttc-vpn-cons strong {
    color: #dc2626;
}

.ttc-vpn-pros ul,
.ttc-vpn-cons ul {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

.ttc-vpn-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f9ff;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.ttc-vpn-price {
    font-size: 0.88rem;
    color: #6b7280;
}

.ttc-vpn-price strong {
    color: #1b1b42;
    font-size: 1rem;
}

.ttc-vpn-cta {
    display: inline-block;
    background: #5c62e8;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
    white-space: nowrap;
}

.ttc-vpn-cta:hover {
    background: #4349c8;
}

/* Comparison table */
.ttc-compare-section {
    margin-bottom: 3rem;
}

.ttc-compare-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1b1b42;
    margin-bottom: 1.25rem;
}

.ttc-compare-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.ttc-compare-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ttc-compare-wrap th {
    background: #1b1b42;
    color: #fff;
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 700;
}

.ttc-compare-wrap th:first-child {
    width: 30%;
}

.ttc-compare-wrap td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    vertical-align: middle;
}

.ttc-compare-wrap tr:last-child td {
    border-bottom: none;
}

.ttc-compare-wrap tr:nth-child(even) td {
    background: #f8f9ff;
}

.ttc-check {
    color: #059669;
    font-weight: 700;
}

.ttc-cross {
    color: #dc2626;
}

.ttc-partial {
    color: #d97706;
}

/* How to choose */
.ttc-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.ttc-choose-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
    background: #fff;
}

.ttc-choose-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.ttc-choose-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b1b42;
    margin: 0 0 0.4rem;
}

.ttc-choose-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.ttc-choose-card .ttc-choose-pick {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #5c62e8;
    background: #eef0ff;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Callout */
.ttc-callout {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.ttc-callout.info {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.ttc-callout.tip {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
}

.ttc-callout.warn {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.ttc-callout-icon {
    font-size: 1.15rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.ttc-callout-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
}

/* Methodology */
.ttc-methodology-box {
    background: #f8f9ff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.ttc-methodology-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1b1b42;
    margin: 0 0 0.75rem;
}

.ttc-methodology-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ttc-method-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    color: #374151;
}

.ttc-method-step span {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .ttc-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .ttc-vpn-pros-cons {
        grid-template-columns: 1fr;
    }

    .ttc-cat-stats {
        flex-direction: column;
    }

    .ttc-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ttc-hero-container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .ttc-hero-cta {
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .ttc-btn-hero {
        width: 100%;
        justify-content: center;
    }
}

/* Hero CTA */
.ttc-hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.ttc-hero-text-side {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ttc-category-hero h1 {
    margin: 0 !important;
    font-weight: 800;
    font-size: 3rem !important;
    letter-spacing: -0.04em;
    line-height: 1.1 !important;
    color: #111827;
}

.ttc-category-subtitle {
    margin: 0 !important;
    display: block;
    font-size: 1.25rem;
    color: #444;
    line-height: 1.2;
    font-weight: 500;
}

.ttc-hero-meta {
    margin: 0 !important;
    opacity: 0.7;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #666;
}

.ttc-hero-cta {
    margin-top: 5px;
}

.ttc-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #5c62e8 0%, #4349c8 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.15rem !important;
    padding: 1rem 2.25rem !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(92, 98, 232, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ttc-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(92, 98, 232, 0.45);
}

.ttc-btn-hero svg {
    transition: transform 0.3s ease;
}

.ttc-btn-hero:hover svg {
    transform: translate(3px, -3px);
}

/* ==========================================================================
   Pricing Table - Premium Design
   ========================================================================== */
.ttc-price-table {
    margin: 2.5rem 0;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    scrollbar-width: thin;
    scrollbar-color: var(--ttc-primary) rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar for Webkit */
.ttc-price-table::-webkit-scrollbar {
    height: 6px;
}

.ttc-price-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.ttc-price-table::-webkit-scrollbar-thumb {
    background: var(--ttc-primary);
    border-radius: 10px;
}

.ttc-price-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    border: none;
    font-size: 1rem;
}

.ttc-price-table thead tr {
    background: #111827;
    color: #fff;
    text-align: left;
}

.ttc-price-table th {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: none;
}

.ttc-price-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #4b5563;
    transition: all 0.3s ease;
}

.ttc-price-table tbody tr:last-child td {
    border-bottom: none;
}

.ttc-price-table tbody tr:hover td {
    background-color: rgba(99, 102, 241, 0.03);
    color: #111827;
}

/* Specific Column Styling */
.ttc-price-table td:nth-child(1) {
    font-weight: 700;
    color: #111827;
}

.ttc-price-table td:nth-child(2) {
    font-weight: 800;
    color: var(--ttc-primary);
    font-size: 1.1rem;
}

/* Badge style for 'Best For' or other status text */
.ttc-price-table td:nth-child(5) {
    font-weight: 600;
}

@media (max-width: 768px) {

    .ttc-price-table th,
    .ttc-price-table td {
        padding: 1rem;
        min-width: 140px;
        /* Ensure content doesn't squash too much */
    }
}