/* ============================================
   Apps de Préstamos MX - Complete Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --primary-light: #14B8A6;
    --primary-50: #F0FDFA;
    --primary-100: #CCFBF1;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --text: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #0F172A;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font); font-weight: 600; border: 2px solid transparent;
    border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition);
    text-decoration: none; white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-md { padding: 11px 22px; font-size: 15px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: white; border-color: var(--accent); }
.btn-accent:hover { background: #D97706; border-color: #D97706; color: white; transform: translateY(-1px); }
.btn-arrow { font-size: 18px; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   Header with Dropdown
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light); transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--text); }
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; background: var(--primary); color: white;
    font-weight: 800; font-size: 18px; border-radius: 10px;
}
.logo-icon-img { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; line-height: 1.1;
}
.logo-text-main { color: var(--text); }
.logo-text-accent { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a, .nav-dropdown > .nav-trigger {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: color var(--transition); cursor: pointer; background: none; border: none;
    font-family: var(--font); display: flex; align-items: center; gap: 4px; padding: 0;
}
.nav > a:hover, .nav-dropdown:hover > .nav-trigger { color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
    background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light); padding: 8px 0;
    min-width: 240px; opacity: 0; visibility: hidden; transition: all 0.2s ease;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 14px; color: var(--text-secondary);
    transition: all var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--primary-50); color: var(--primary); }
.nav-arrow { font-size: 10px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.hamburger {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    padding: 0 0 16px; font-size: 13px; color: var(--text-light); margin-bottom: 8px;
}
.breadcrumbs a { color: var(--text-secondary); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }
.breadcrumbs span:last-child { color: var(--primary); font-weight: 500; margin: 0; }

/* ============================================
   Page Hero (for inner pages) - REDESIGNED
   ============================================ */
.page-hero {
    padding: 120px 0 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, white 60%, #fef9ef 100%);
    border-bottom: 1px solid var(--border-light);
}
.page-hero .container { padding-bottom: 48px; }
.page-hero h1 {
    font-size: 38px; font-weight: 800; line-height: 1.25; margin-bottom: 16px;
    color: var(--text); max-width: 800px;
}
.page-hero .subtitle,
.page-hero .hero-subtitle,
.page-hero > .container > p {
    font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 700px; margin-bottom: 0;
}
.page-hero .hero-meta {
    display: flex; gap: 20px; margin-top: 20px; font-size: 13px; color: var(--text-light); flex-wrap: wrap;
    padding-top: 16px; border-top: 1px solid var(--border-light);
}
.page-hero .hero-meta span { display: flex; align-items: center; gap: 5px; }
.verified-badge { color: var(--primary); font-weight: 600; }

/* ============================================
   Section Header (shared)
   ============================================ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.section-header-left { margin-bottom: 32px; }
.section-header-left h2 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.section-header-left p { font-size: 16px; color: var(--text-secondary); }

/* ============================================
   Comparison Table
   ============================================ */
.table-responsive {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    margin: 28px 0; border-radius: var(--radius); border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead { background: linear-gradient(135deg, var(--primary-50), #ecfdf5); }
.comparison-table th {
    padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700;
    color: var(--primary-dark); border-bottom: 2px solid var(--primary-100);
    white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-table td {
    padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}
.comparison-table tbody tr { transition: background var(--transition); }
.comparison-table tbody tr:hover { background: var(--primary-50); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .lender-cell {
    display: flex; align-items: center; gap: 10px; font-weight: 600; white-space: nowrap;
}
.comparison-table .lender-logo-sm {
    width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 11px; color: white; flex-shrink: 0;
}
.comparison-table .highlight-cell { color: var(--success); font-weight: 600; font-size: 13px; }
.comparison-table .rating-cell { color: var(--accent); }
.comparison-table .btn-sm { white-space: nowrap; padding: 6px 14px; font-size: 13px; }

/* ============================================
   Lender Cards (for category pages)
   ============================================ */
.lender-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px; margin-bottom: 20px; transition: all var(--transition);
    display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
    box-shadow: var(--shadow-sm);
}
.lender-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-100); transform: translateY(-2px); }
.lender-card.featured { border-color: var(--primary); border-width: 2px; position: relative; background: var(--primary-50); }
.lender-card.featured::before {
    content: 'Mejor Opción'; position: absolute; top: -1px; right: 24px;
    background: var(--primary); color: white; padding: 4px 14px; font-size: 11px;
    font-weight: 600; border-radius: 0 0 8px 8px;
}
.lender-logo-lg {
    width: 80px; height: 48px; border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: white;
    background: white; border: 1px solid var(--border-light); padding: 4px 8px;
}
.lender-logo-lg img { width: 100%; height: 100%; object-fit: contain; }
.lender-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.lender-info .lender-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.lender-info .lender-rating .stars { color: var(--accent); }
.lender-details {
    display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px;
}
.lender-detail span { color: var(--text-light); }
.lender-detail strong { color: var(--text); display: block; }
.lender-actions { display: flex; flex-direction: column; gap: 8px; align-items: center; }

/* ============================================
   Callout Boxes (GEO optimized)
   ============================================ */
.callout,
.callout-info,
.callout-success,
.callout-warning,
.callout-danger {
    padding: 20px 24px; border-radius: var(--radius-lg); margin: 32px 0;
    border-left: 4px solid; font-size: 14px; line-height: 1.8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.callout-info { border-left-color: #3B82F6; }
.callout-success { border-left-color: #10B981; }
.callout-warning { border-left-color: #F59E0B; }
.callout-danger { border-left-color: #EF4444; }
.callout-title { font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.callout-info, .callout.callout-info { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #1E40AF; border: 1px solid #bfdbfe; }
.callout-success, .callout.callout-success { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #166534; border: 1px solid #bbf7d0; }
.callout-warning, .callout.callout-warning { background: linear-gradient(135deg, #fffbeb, #fef3c7); color: #92400E; border: 1px solid #fde68a; }
.callout-danger, .callout.callout-danger { background: linear-gradient(135deg, #fef2f2, #fecaca); color: #991B1B; border: 1px solid #fca5a5; }
.callout p, .callout-info p, .callout-success p, .callout-warning p, .callout-danger p { margin: 0; color: inherit; }
.callout a, .callout-info a, .callout-success a, .callout-warning a, .callout-danger a { color: inherit; text-decoration: underline; font-weight: 600; }
.callout strong, .callout-info strong, .callout-success strong, .callout-warning strong, .callout-danger strong { color: inherit; }

/* ============================================
   Article / Blog / Inner Page Content
   ============================================ */
.article-content,
.content-section .content-body,
.content-section .container > .content-wrapper {
    max-width: 820px; margin: 0 auto; padding: 48px 0 80px;
}
.content-section { padding: 48px 0; }
.content-section:first-of-type { padding-top: 48px; }
.content-section + .content-section { padding-top: 0; }
.content-section .container { max-width: 860px; }
.content-section h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.content-section h3 { font-size: 18px; font-weight: 700; margin-top: 28px; margin-bottom: 10px; color: var(--primary-dark); }
.content-section p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.content-section ul, .content-section ol { padding-left: 24px; margin-bottom: 16px; }
.content-section li { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }
.content-section li::marker { color: var(--primary); }
.content-section strong { color: var(--text); }
.content-section a { color: var(--primary); }
.content-section .btn { text-decoration: none !important; }
.content-section .btn-primary { color: white !important; }
.content-section .btn-outline { color: var(--primary) !important; }
.content-section .btn-white { color: var(--primary) !important; }
.content-wrapper { max-width: 820px; margin: 0 auto; }

/* Intro text */
.intro-text {
    font-size: 17px; line-height: 1.8; color: var(--text-secondary);
    margin-bottom: 36px; padding: 24px 28px;
    background: linear-gradient(135deg, var(--primary-50) 0%, #f0fdf4 100%);
    border-radius: var(--radius-lg); border-left: 5px solid var(--primary);
    box-shadow: 0 2px 8px rgba(13,148,136,0.08);
}
.intro-text strong { color: var(--text); }

/* Headings */
.article-content > h2,
.content-body > h2,
.content-wrapper > h2 {
    font-size: 26px; font-weight: 800; margin-top: 52px; margin-bottom: 18px;
    padding-top: 32px; color: var(--text); position: relative;
    padding-left: 16px; border-left: 4px solid var(--primary); border-top: none;
}
.article-content > h2:first-of-type,
.content-body > h2:first-of-type,
.content-wrapper > h2:first-of-type { margin-top: 0; }

.article-content h3,
.content-body h3,
.content-wrapper h3 {
    font-size: 20px; font-weight: 700; margin-top: 32px; margin-bottom: 12px;
    color: var(--primary-dark);
}

/* Paragraphs */
.article-content p,
.content-body p,
.content-wrapper p {
    font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px;
}

/* Lists */
.article-content ul, .article-content ol,
.content-body ul, .content-body ol,
.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 24px; padding-left: 28px;
}
.article-content li, .content-body li, .content-wrapper li {
    font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 10px;
    padding-left: 4px;
}
.article-content li::marker, .content-body li::marker, .content-wrapper li::marker {
    color: var(--primary);
}

.article-content strong, .content-body strong, .content-wrapper strong { color: var(--text); }
.article-content a, .content-body a, .content-wrapper a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.article-content a:hover, .content-body a:hover, .content-wrapper a:hover { color: var(--primary-dark); }
/* Preserve button styles inside articles */
.article-content .btn, .content-body .btn, .content-wrapper .btn,
.article-content .oc2-cta, .content-body .oc2-cta, .content-wrapper .oc2-cta {
    color: white !important; text-decoration: none !important;
}
.article-content .btn-outline, .content-body .btn-outline, .content-wrapper .btn-outline {
    color: var(--primary) !important;
}

/* Stat highlights inline */
.stat-highlight {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
    background: var(--primary-50); border-radius: var(--radius-full); font-weight: 700;
    color: var(--primary-dark); font-size: 14px; white-space: nowrap;
}

/* Drop cap removed - caused layout issues */

/* Reading progress bar */
#reading-progress {
    position: fixed; top: 72px; left: 0; width: 0%; height: 3px; z-index: 999;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.1s linear;
}

/* Generic tables in articles */
.article-content table,
.content-body table,
.content-wrapper table {
    width: 100%; border-collapse: collapse; margin: 24px 0;
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.article-content thead,
.content-body thead,
.content-wrapper thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.article-content th,
.content-body th,
.content-wrapper th {
    padding: 13px 18px; text-align: left; font-size: 13px; font-weight: 600;
    color: white; white-space: nowrap; letter-spacing: 0.3px;
}
.article-content td,
.content-body td,
.content-wrapper td {
    padding: 12px 18px; font-size: 14px; color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light); line-height: 1.6;
}
.article-content tbody tr:nth-child(even),
.content-body tbody tr:nth-child(even),
.content-wrapper tbody tr:nth-child(even) { background: var(--bg-alt); }
.article-content tbody tr:hover,
.content-body tbody tr:hover,
.content-wrapper tbody tr:hover { background: var(--primary-50); }
.article-content tbody tr:last-child td,
.content-body tbody tr:last-child td,
.content-wrapper tbody tr:last-child td { border-bottom: none; }
.article-content td strong,
.content-body td strong,
.content-wrapper td strong { color: var(--text); }

/* Override for comparison-table inside articles */
.article-content .table-responsive,
.content-body .table-responsive,
.content-wrapper .table-responsive { border: none; box-shadow: none; }
.article-content .comparison-table,
.content-body .comparison-table,
.content-wrapper .comparison-table { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article-content .comparison-table thead,
.content-body .comparison-table thead,
.content-wrapper .comparison-table thead { background: linear-gradient(135deg, var(--primary-50), #ecfdf5); }
.article-content .comparison-table th,
.content-body .comparison-table th,
.content-wrapper .comparison-table th { color: var(--primary-dark); }
.article-content .comparison-table tbody tr:nth-child(even),
.content-body .comparison-table tbody tr:nth-child(even),
.content-wrapper .comparison-table tbody tr:nth-child(even) { background: transparent; }
.article-content .comparison-table tbody tr:hover,
.content-body .comparison-table tbody tr:hover,
.content-wrapper .comparison-table tbody tr:hover { background: var(--primary-50); }

/* ============================================
   Offer Cards Inline (for inner pages)
   ============================================ */
.offer-cards-list { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.offer-card-inline {
    display: grid; grid-template-columns: 150px 1fr auto; grid-template-rows: auto auto; gap: 4px 28px; align-items: center;
    background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px 28px; transition: all var(--transition); position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.offer-card-inline-logo { grid-row: 1; grid-column: 1; }
.offer-card-inline-usp { grid-row: 2; grid-column: 1; }
.offer-card-inline-details { grid-row: 1 / 3; grid-column: 2; align-self: center; }
.offer-card-inline-cta { grid-row: 1 / 3; grid-column: 3; align-self: center; }
.offer-card-inline:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(13,148,136,0.12); transform: translateY(-3px); }
.offer-card-inline.featured { border: 2px solid var(--primary); background: linear-gradient(135deg, var(--primary-50), #f0fdf4); }
.offer-card-inline-badge {
    position: absolute; top: -1px; right: 20px; background: var(--primary); color: white;
    font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 0 0 8px 8px;
    letter-spacing: 0.3px;
}
.offer-card-inline-badge.free { background: var(--accent); }
.offer-card-inline-logo {
    width: 150px; height: 52px; background: white; border: 1px solid var(--border);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    padding: 8px 16px; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.offer-card-inline-logo img { width: 100%; height: 100%; object-fit: contain; }
.offer-card-inline-usp { font-size: 12px; font-weight: 600; color: var(--primary); text-align: center; margin: 6px 0 0; grid-column: 1; }
.offer-card-inline-details {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.offer-card-inline-details div { text-align: center; padding: 0 8px; }
.offer-card-inline-details div + div { border-left: 1px solid var(--border-light); }
.offer-card-inline-details span { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.3px; }
.offer-card-inline-details strong { display: block; font-size: 14px; color: var(--text); font-weight: 700; }
.offer-card-inline-cta { flex-shrink: 0; }

@media (max-width: 1024px) {
    .offer-card-inline { grid-template-columns: 120px 1fr; gap: 16px; }
    .offer-card-inline-logo { width: 120px; height: 44px; }
    .offer-card-inline-details { grid-template-columns: repeat(4, 1fr); gap: 8px; grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--border-light); }
    .offer-card-inline-cta { grid-column: 1 / -1; }
    .offer-card-inline-cta .btn { width: 100%; }
}
@media (max-width: 640px) {
    .offer-card-inline { grid-template-columns: 1fr; text-align: center; padding: 20px; }
    .offer-card-inline-logo { margin: 0 auto; width: 130px; }
    .offer-card-inline-details { grid-template-columns: repeat(2, 1fr); }
    .offer-card-inline-details div + div { border-left: none; }
    .offer-card-inline-details div:nth-child(3), .offer-card-inline-details div:nth-child(4) { border-top: 1px solid var(--border-light); padding-top: 8px; }
}

/* ============================================
   Offer Cards V2 (inner pages)
   ============================================ */
/* ============================================
   Offer Cards V2 - Final Design
   ============================================ */
.offer-cards-v2 {
    display: flex; flex-direction: column; gap: 20px; margin: 36px 0;
}

.oc2 {
    background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 32px; position: relative; transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.oc2:hover { box-shadow: 0 8px 28px rgba(13,148,136,0.12); border-color: var(--primary-100); }

/* Featured / Highlight */
.oc2[data-featured="true"] { border: 2px solid var(--primary); background: linear-gradient(135deg, var(--primary-50) 0%, #f0fdf4 100%); }
.oc2[data-highlight="true"] { border: 2px solid var(--accent); background: linear-gradient(135deg, #fffbeb 0%, #fef9e8 100%); }

/* Badge */
.oc2-badge {
    position: absolute; top: -1px; right: 24px;
    background: var(--primary); color: white;
    font-size: 10px; font-weight: 700; padding: 5px 14px;
    border-radius: 0 0 10px 10px; letter-spacing: 0.4px;
    text-transform: uppercase;
}
.oc2-badge-free { background: var(--accent); }

/* Layout: Logo left + Info right */
.oc2-top {
    display: flex; align-items: center; gap: 24px; margin-bottom: 20px;
    padding-bottom: 20px; border-bottom: 1px solid var(--border-light);
}
.oc2-logo {
    width: 180px; height: 68px; flex-shrink: 0;
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; padding: 10px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.oc2-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.oc2-usp { font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.4; }
.oc2[data-highlight="true"] .oc2-usp { color: #92400E; }

/* Details grid - 2x2 always */
.oc2-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 20px;
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.oc2-item {
    padding: 16px 20px;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}
.oc2-item:nth-child(2n) { border-right: none; }
.oc2-item:nth-last-child(-n+2) { border-bottom: none; }
.oc2-label {
    display: block; font-size: 11px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; font-weight: 600;
}
.oc2-val { display: block; font-size: 18px; font-weight: 800; color: var(--text); }

/* CTA */
.oc2-cta {
    display: block; width: 100%; padding: 14px; text-align: center;
    background: var(--primary); color: white !important; border-radius: var(--radius);
    font-size: 16px; font-weight: 700; text-decoration: none !important;
    transition: all 0.2s ease; letter-spacing: 0.3px;
}
.oc2-cta:hover { background: var(--primary-dark); color: white !important; box-shadow: 0 4px 16px rgba(13,148,136,0.3); transform: translateY(-1px); }
.oc2[data-highlight="true"] .oc2-cta { background: var(--accent); }
.oc2[data-highlight="true"] .oc2-cta:hover { background: #d97706; color: white !important; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .offer-cards-v2 { gap: 16px; }
    .oc2 { padding: 20px; }
    .oc2-top { flex-direction: column; text-align: center; gap: 12px; padding-bottom: 16px; }
    .oc2-logo { width: 200px; height: 72px; margin: 0 auto; }
    .oc2-usp { font-size: 15px; }
    .oc2-item { padding: 12px 14px; }
    .oc2-val { font-size: 16px; }
    .oc2-label { font-size: 10px; }
    .oc2-cta { font-size: 15px; padding: 13px; }
    .oc2-badge { right: 16px; }
}
@media (max-width: 480px) {
    .oc2 { padding: 16px; }
    .oc2-logo { width: 170px; height: 62px; }
    .oc2-usp { font-size: 14px; }
    .oc2-item { padding: 10px 12px; }
    .oc2-val { font-size: 15px; }
    .oc2-label { font-size: 9px; }
    .oc2-cta { font-size: 14px; padding: 12px; }
}

/* Table note */
.table-note { margin-top: 12px; }
.table-note small { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.table-note a { font-size: 12px; }

/* ============================================
   Sobre Nosotros / Como Calificamos
   ============================================ */
.stat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0;
}
.stat-box {
    text-align: center; padding: 24px 16px; background: white;
    border-radius: var(--radius-lg); border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.stat-number { display: block; font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-label { display: block; font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

.scale-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.scale-item {
    text-align: center; padding: 16px; border-radius: var(--radius); font-weight: 600;
}
.scale-item.excellent { background: #dcfce7; color: #166534; }
.scale-item.good { background: #dbeafe; color: #1e40af; }
.scale-item.fair { background: #fef3c7; color: #92400e; }
.scale-item.poor { background: #fee2e2; color: #991b1b; }
.scale-range { display: block; font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.scale-label { display: block; font-size: 13px; }

.review-process { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.review-step {
    padding: 20px; background: white; border-radius: var(--radius);
    border: 1px solid var(--border-light); text-align: center;
}
.review-step-number {
    width: 32px; height: 32px; background: var(--primary); color: white;
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; margin-bottom: 8px;
}
.review-step h4 { font-size: 14px; margin-bottom: 4px; }
.review-step p { font-size: 12px; color: var(--text-secondary); }

/* ============================================
   Contact Page
   ============================================ */
.contact-section { padding: 60px 0; }
.contact-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto;
}
.contact-form .form-group { margin-bottom: 16px; }
.contact-info-side h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; }
.info-card {
    display: flex; gap: 14px; align-items: flex-start; padding: 16px;
    background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--border-light);
}
.info-card-icon { font-size: 24px; flex-shrink: 0; }
.info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.info-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.info-card a { font-size: 13px; }
.trust-box {
    margin-top: 24px; padding: 20px; background: var(--primary-50);
    border-radius: var(--radius); border: 1px solid var(--primary-100);
    font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}
.trust-box strong { color: var(--primary-dark); }
.success-message { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 48px; margin-bottom: 12px; }

/* ============================================
   Legal Pages (Aviso, Términos)
   ============================================ */
.legal-content {
    padding: 0 0 80px; max-width: 800px; margin: 0 auto;
}
.legal-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.legal-content .updated { font-size: 13px; color: var(--text-light); margin-bottom: 32px; }
.legal-content h2 {
    font-size: 20px; font-weight: 700; margin-top: 36px; margin-bottom: 12px;
    padding-left: 14px; border-left: 3px solid var(--primary); color: var(--text);
}
.legal-content p, .legal-content li {
    font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px;
}
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--primary); text-decoration: underline; }

/* ============================================
   Blog Article Meta & Author
   ============================================ */
.article-meta-bar {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 14px 20px; margin-bottom: 28px;
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.article-category {
    display: inline-block; padding: 5px 14px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600;
    background: var(--primary); color: white;
}
.article-date, .article-read-time {
    font-size: 14px; color: var(--text-secondary); display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
}
.article-date::before { content: "📅"; font-size: 15px; }
.article-read-time::before { content: "⏱️"; font-size: 15px; }
@media (max-width: 768px) {
    .article-meta-bar { padding: 12px 16px; gap: 10px; }
    .article-date, .article-read-time { font-size: 12px; }
    .article-category { font-size: 11px; padding: 4px 10px; }
}
.author-info { flex: 1; }
.author-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.author-credentials { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.author-bio { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   Sobre Nosotros
   ============================================ */
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.mission-card {
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.mission-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mission-icon { font-size: 28px; margin-bottom: 10px; }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.methodology-steps { display: flex; flex-direction: column; gap: 0; margin: 28px 0; counter-reset: method; }
.method-step {
    display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border-light);
    counter-increment: method; position: relative; align-items: flex-start;
}
.method-step:last-child { border-bottom: none; }
.method-step::before {
    content: counter(method); flex-shrink: 0;
    width: 40px; height: 40px; background: var(--primary); color: white;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; margin-top: 2px;
}
.method-step h3 { font-size: 17px !important; font-weight: 700 !important; margin: 0 0 6px !important; color: var(--text) !important; }
.method-step p { font-size: 14px !important; color: var(--text-secondary) !important; line-height: 1.7 !important; margin: 0 !important; }
.team-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 20px; margin-bottom: 10px;
}
.team-role { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ============================================
   Como Calificamos (extras)
   ============================================ */
.score-example {
    margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.score-table { width: 100%; border-collapse: collapse; }
.score-table thead { background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important; }
.score-table th {
    padding: 14px 18px !important; text-align: left; font-size: 12px !important;
    color: white !important; font-weight: 700 !important; text-transform: uppercase;
    letter-spacing: 0.5px; border: none !important;
}
.score-table td {
    padding: 12px 18px !important; font-size: 14px !important; color: var(--text-secondary) !important;
    border-bottom: 1px solid var(--border-light) !important; background: white;
}
.score-table tbody tr:nth-child(even) td { background: var(--bg-alt); }
.score-table tbody tr:hover td { background: var(--primary-50) !important; }
.score-table tbody tr:last-child td { border-bottom: none !important; }
.score-table tfoot td {
    background: var(--bg-dark) !important; color: white !important;
    font-size: 15px !important; font-weight: 700 !important; padding: 16px 18px !important;
    border: none !important;
}
.score-high { color: var(--success) !important; font-weight: 700 !important; }
.score-med { color: var(--accent) !important; font-weight: 700 !important; }

.total-score-visual {
    display: flex; align-items: center; gap: 24px; padding: 28px;
    background: white; border: 2px solid var(--primary);
    border-radius: var(--radius-lg); margin: 28px 0;
    box-shadow: var(--shadow-sm);
}
.total-score-badge {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(13,148,136,0.35);
}
.total-score-info { flex: 1; }
.total-score-info h4 { font-size: 20px !important; font-weight: 700 !important; margin: 0 0 6px !important; color: var(--text) !important; }
.total-score-info p { font-size: 14px !important; color: var(--text-secondary) !important; margin: 0 !important; line-height: 1.6 !important; }

.process-timeline { margin: 24px 0; }
.timeline-item {
    display: flex; gap: 16px; margin-bottom: 20px; position: relative;
}
.timeline-dot {
    width: 16px; height: 16px; border-radius: 50%; background: var(--primary);
    flex-shrink: 0; margin-top: 4px; position: relative;
}
.timeline-dot::after {
    content: ''; position: absolute; left: 7px; top: 20px;
    width: 2px; height: calc(100% + 10px); background: var(--border-light);
}
.timeline-item:last-child .timeline-dot::after { display: none; }
.timeline-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ============================================
   Contacto (extras)
   ============================================ */
.contact-form-card {
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 32px; box-shadow: var(--shadow-sm);
}
.form-success {
    text-align: center; padding: 40px 20px; background: #f0fdf4;
    border-radius: var(--radius); border: 1px solid #bbf7d0;
}
.form-security-note {
    display: flex; align-items: center; gap: 6px; font-size: 12px;
    color: var(--text-light); margin: 12px 0 16px; padding: 8px;
    background: var(--bg-alt); border-radius: var(--radius-sm);
}

/* ============================================
   Calculadora (extras)
   ============================================ */
.calc-details { margin-top: 16px; }
.calc-details-row {
    display: flex; justify-content: space-between; padding: 8px 0;
    font-size: 13px; color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}
.calc-details-row:last-child { border-bottom: none; }

/* ============================================
   Verificador (extras)
   ============================================ */
.verificador-hint { font-size: 12px; color: var(--text-light); margin-top: 8px; }
.resource-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin: 20px 0; }
.resource-card {
    display: flex; align-items: center; gap: 10px; padding: 14px 18px;
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius);
    text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500;
    transition: all var(--transition);
}
.resource-card:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ============================================
   Tools pages (extras)
   ============================================ */
.tip-icon { font-size: 28px; margin-bottom: 10px; }
.faq-mini { margin: 24px 0; }
.faq-mini-item { margin-bottom: 12px; padding: 14px 18px; background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--border-light); }
.faq-mini-item strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.faq-mini-item p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.faq-accordion { margin: 20px 0; }
.hero-content { flex: 1; min-width: 0; }
.section { padding: 48px 0; }

/* ============================================
   Responsive extras
   ============================================ */
@media (max-width: 768px) {
    .mission-grid { grid-template-columns: 1fr; }
    .mission-card { padding: 18px; }
    .methodology-steps { grid-template-columns: 1fr 1fr; }
    .total-score-visual { flex-direction: column; text-align: center; padding: 20px; }
    .total-score-badge { width: 56px; height: 56px; font-size: 20px; }
    .timeline-item { gap: 12px; }
    .resource-links { grid-template-columns: 1fr; }
    .contact-form-card { padding: 20px; }
    .score-table th, .score-table td { padding: 8px 10px; font-size: 12px; }
}

/* Criteria Cards (como-calificamos) */
.methodology-content { max-width: 860px; }
.criteria-card {
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.criteria-header {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border-light);
}
.criteria-number {
    width: 40px; height: 40px; background: var(--primary); color: white;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; flex-shrink: 0;
}
.criteria-title h3 { font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--text); }
.criteria-weight {
    font-size: 13px; font-weight: 600; color: var(--primary);
    background: var(--primary-50); padding: 2px 10px; border-radius: var(--radius-full);
    display: inline-block;
}
.criteria-scoring {
    margin-top: 16px; background: var(--bg-alt); border-radius: var(--radius);
    padding: 16px 20px;
}
.criteria-scoring dt {
    font-size: 14px; font-weight: 700; color: var(--text); margin-top: 10px;
}
.criteria-scoring dt:first-child { margin-top: 0; }
.criteria-scoring dd {
    font-size: 13px; color: var(--text-secondary); margin: 2px 0 0 0;
    padding-left: 0; line-height: 1.6;
}

/* Responsive for these pages */
@media (max-width: 768px) {
    .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-number { font-size: 24px; }
    .stat-box { padding: 16px 12px; }
    .scale-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .legal-content h1 { font-size: 26px; }
    .legal-content h2 { font-size: 18px; }
    .criteria-card { padding: 20px; }
    .criteria-header { gap: 12px; }
    .criteria-number { width: 34px; height: 34px; font-size: 15px; border-radius: 10px; }
    .criteria-title h3 { font-size: 16px; }
    .criteria-scoring { padding: 14px 16px; }
    .criteria-scoring dt { font-size: 13px; }
    .criteria-scoring dd { font-size: 12px; }
}
@media (max-width: 480px) {
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 11px; }
    .scale-grid { grid-template-columns: 1fr 1fr; }
    .scale-range { font-size: 16px; }
}
.table-note small { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.table-note a { color: var(--primary); }

/* Author box */
.author-box {
    display: flex; gap: 16px; align-items: center; padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #f0fdfa); border-radius: var(--radius-lg);
    margin-bottom: 32px; border: 1px solid var(--primary-100);
}
.author-box-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 20px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.author-box-info strong { display: block; font-size: 15px; margin-bottom: 2px; }
.author-box-info span { font-size: 13px; color: var(--text-secondary); }
.article-meta {
    font-size: 14px; color: var(--text-secondary); margin-bottom: 28px;
    display: flex; gap: 12px; flex-wrap: wrap; padding: 14px 20px;
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); font-weight: 500;
}

/* Related articles */
.related-articles { margin-top: 56px; padding: 36px; background: var(--bg-alt); border-radius: var(--radius-lg); }
.related-articles h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 4px;
    border: none; padding: 0; color: var(--text);
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.related-card {
    background: white; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-light);
    transition: all var(--transition); position: relative; overflow: hidden;
}
.related-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0; transition: opacity var(--transition);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card:hover::before { opacity: 1; }
.related-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.related-card h4 a { color: var(--text); text-decoration: none; }
.related-card h4 a:hover { color: var(--primary); }
.related-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* TOC */
.toc {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    border: 1px solid var(--primary-100); border-radius: var(--radius-lg);
    padding: 28px 32px; margin-bottom: 40px; position: relative; overflow: hidden;
}
.toc::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
}
.toc h2, .toc h4 {
    font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--text);
    border: none; padding: 0; margin-top: 0;
    display: flex; align-items: center; gap: 8px;
}
.toc ul, .toc ol { padding-left: 20px; margin-bottom: 0; }
.toc li {
    font-size: 16px; margin-bottom: 10px; line-height: 1.5;
}
.toc li::marker { color: var(--primary); font-weight: 600; }
.toc a { color: var(--text-secondary); text-decoration: none; transition: color var(--transition); font-weight: 500; }
.toc a:hover { color: var(--primary); text-decoration: underline; }

/* ============================================
   Category Page Layout
   ============================================ */
.category-content { padding: 48px 0 80px; }
.category-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.category-main { min-width: 0; }
.category-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Sidebar widgets */
.sidebar-widget {
    background: white; border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 24px; position: sticky; top: 88px;
}
.sidebar-widget h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget li { margin-bottom: 8px; }
.sidebar-widget a { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.sidebar-widget a:hover { color: var(--primary); }
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; border-radius: var(--radius); padding: 24px; text-align: center;
}
.sidebar-cta h3 { color: white; font-size: 18px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; opacity: 0.9; margin-bottom: 16px; }

/* Quick links grid */
.quick-links {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px; margin: 24px 0;
}
.quick-link {
    display: flex; align-items: center; gap: 6px; padding: 10px 14px;
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius); font-size: 13px; font-weight: 500; color: var(--text);
    transition: all var(--transition); text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.quick-link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* ============================================
   Contact Form
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0 80px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; background: var(--primary-50); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.contact-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-secondary); }

/* ============================================
   Verificador Tool
   ============================================ */
.verificador-card {
    max-width: 600px; margin: 0 auto; background: white;
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.verificador-input {
    display: flex; gap: 12px; margin-bottom: 24px;
}
.verificador-input input {
    flex: 1; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-size: 16px; font-family: var(--font); outline: none; transition: border-color var(--transition);
}
.verificador-input input:focus { border-color: var(--primary); }
.verificador-result {
    padding: 20px; border-radius: var(--radius); margin-top: 16px;
}
.verificador-result.safe { background: #F0FDF4; border: 1px solid #BBF7D0; }
.verificador-result.warning { background: #FFFBEB; border: 1px solid #FDE68A; }
.verificador-result.danger { background: #FEF2F2; border: 1px solid #FECACA; }

/* ============================================
   Hero Section (Homepage)
   ============================================ */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-50) 0%, white 50%, #FEF3C7 100%);
    overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; padding: 6px 16px;
    background: var(--primary-100); color: var(--primary-dark); font-size: 13px;
    font-weight: 600; border-radius: var(--radius-full); margin-bottom: 20px;
}
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--text); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; max-width: 520px; }
.hero-subtitle strong { color: var(--primary); font-weight: 800; }
.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 36px; }
.stat-item { display: flex; align-items: center; gap: 10px; }
.stat-icon { font-size: 22px; }
.stat-item strong { display: block; font-size: 16px; font-weight: 700; }
.stat-item span { font-size: 13px; color: var(--text-light); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
/* Hero USP badges */
.hero-usps { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.hero-usp {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px; background: white; border: 1px solid var(--border);
    border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
    color: var(--text); white-space: nowrap; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; }

/* Calculator inside hero */
.hero-calculator {
    max-width: 420px; width: 100%;
}
.hero-calculator .calculator-card {
    background: white; border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.hero-trusted {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-light);
    grid-column: 1 / -1;
}
.hero-trusted img { height: 22px; object-fit: contain; opacity: 0.4; transition: opacity .2s; }
.hero-trusted img:hover { opacity: 0.8; }
.hero-card {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-lg); width: 360px; border: 1px solid var(--border-light);
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.hero-card-badge { padding: 4px 12px; background: #DCFCE7; color: #166534; font-size: 13px; font-weight: 600; border-radius: var(--radius-full); }
.hero-card-amount { font-size: 32px; font-weight: 800; color: var(--primary); }
.hero-card-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.hero-card-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.hero-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-row span { color: var(--text-secondary); font-size: 14px; }
.hero-card-row strong { color: var(--text); font-size: 14px; }
.hero-card-footer { display: flex; align-items: center; gap: 8px; justify-content: center; padding-top: 16px; border-top: 1px solid var(--border-light); font-size: 13px; color: var(--text-light); }
.dot { font-size: 8px; }

.floating-badge {
    position: absolute; padding: 8px 16px; background: white; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; box-shadow: var(--shadow-md); animation: float 3s ease-in-out infinite;
}
.badge-1 { top: -10px; left: -20px; color: var(--success); border: 1px solid #D1FAE5; animation-delay: 0s; }
.badge-2 { bottom: 40px; left: -40px; color: var(--accent); border: 1px solid #FEF3C7; animation-delay: 1s; }
.badge-3 { top: 40px; right: -20px; color: var(--primary); border: 1px solid var(--primary-100); animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============================================
   Trusted By
   ============================================ */
.trusted-by { padding: 40px 0; border-bottom: 1px solid var(--border-light); background: var(--bg); }
.trusted-label { text-align: center; font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-bottom: 20px; }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trusted-logo { font-size: 16px; font-weight: 700; color: var(--text-light); opacity: 0.5; transition: opacity var(--transition); }
.trusted-logo:hover { opacity: 0.8; }

/* ============================================
   Calculator Section
   ============================================ */
.calculator-section { padding: 80px 0; background: var(--bg-alt); }
.form-wrapper { max-width: 560px; margin: 0 auto; }
.calculator-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.calc-group { margin-bottom: 28px; }
.calc-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calc-label span { color: var(--text-secondary); font-size: 14px; }
.calc-label strong { font-size: 20px; font-weight: 700; color: var(--primary); }

.slider {
    -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
    background: var(--border); border-radius: 4px; outline: none; cursor: pointer;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 24px; height: 24px;
    background: var(--primary); border-radius: 50%; cursor: pointer;
    box-shadow: 0 2px 6px rgba(13,148,136,0.3); transition: all var(--transition);
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 2px 10px rgba(13,148,136,0.5); }
.slider::-moz-range-thumb { width: 24px; height: 24px; background: var(--primary); border-radius: 50%; border: none; cursor: pointer; }
.slider-range { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--text-light); }

.calc-summary { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.calc-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.calc-summary-row span { color: var(--text-secondary); font-size: 14px; }
.calc-summary-row strong { font-size: 16px; color: var(--text); }
.calc-summary-row.total strong { font-size: 20px; color: var(--primary); font-weight: 700; }
.calc-summary-divider { height: 1px; background: var(--border); margin: 4px 0; }
.calc-note { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ============================================
   Form Styles
   ============================================ */
.form-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--primary); cursor: pointer; margin-bottom: 20px; font-weight: 500; }
.form-back:hover { color: var(--primary-dark); }
.form-header { margin-bottom: 24px; }
.form-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-header p { font-size: 14px; color: var(--text-secondary); }
.selected-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.selected-item { background: var(--primary-50); padding: 12px 16px; border-radius: var(--radius-sm); text-align: center; }
.selected-item span { font-size: 12px; color: var(--text-secondary); display: block; }
.selected-item strong { font-size: 18px; color: var(--primary); font-weight: 700; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 15px; color: var(--text); background: white;
    transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.form-group input.error, .form-group select.error { border-color: var(--danger); }
.form-error { display: none; font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-group input.error ~ .form-error, .form-group select.error ~ .form-error { display: block; }

.phone-input { display: flex; align-items: stretch; }
.phone-prefix { display: flex; align-items: center; padding: 0 14px; background: var(--bg-alt); border: 1.5px solid var(--border); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.phone-input input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.form-checkbox { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.form-checkbox label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.form-checkbox label a { text-decoration: underline; }
.form-security { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); margin-bottom: 20px; padding: 10px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.security-icon { font-size: 16px; }

/* ============================================
   Loading Animation
   ============================================ */
.loading-card { text-align: center; padding: 60px 36px; }
.loading-spinner { width: 56px; height: 56px; border: 4px solid var(--border); border-top-color: var(--primary); border-radius: 50%; margin: 0 auto 24px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-progress { margin-bottom: 20px; }
.progress-bar { width: 100%; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 4px; transition: width 0.3s ease; }
.progress-percent { font-size: 14px; font-weight: 600; color: var(--primary); }
.loading-message { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 28px; }
.loading-steps { display: flex; flex-direction: column; gap: 12px; text-align: left; max-width: 320px; margin: 0 auto; }
.loading-step { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-light); transition: color var(--transition); }
.loading-step.active { color: var(--text); }
.loading-step.done { color: var(--success); }
.step-check { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--border); color: transparent; font-size: 12px; transition: all var(--transition); flex-shrink: 0; }
.loading-step.active .step-check { background: var(--primary); color: transparent; animation: pulse 1.5s ease-in-out infinite; }
.loading-step.done .step-check { background: var(--success); color: white; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0.3); } 50% { box-shadow: 0 0 0 8px rgba(13,148,136,0); } }

/* ============================================
   Results / Offers
   ============================================ */
.results-header { text-align: center; margin-bottom: 32px; }
.results-icon { width: 64px; height: 64px; background: #DCFCE7; color: #166534; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 auto 16px; animation: scaleIn 0.5s ease; }
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.results-header h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.results-header p { font-size: 16px; color: var(--text-secondary); }
.offers-grid { display: grid; gap: 16px; margin-bottom: 32px; }
.offer-card { background: white; border: 2px solid var(--border-light); border-radius: var(--radius); padding: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; transition: all var(--transition); animation: slideUp 0.4s ease; }
.offer-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.offer-card.best { border-color: var(--primary); background: var(--primary-50); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.offer-logo-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; width: 120px; }
.offer-logo-img { width: 120px; height: 48px; object-fit: contain; display: block; background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 12px; }
.offer-logo-usp { font-size: 11px; font-weight: 600; color: var(--primary); text-align: center; line-height: 1.3; }
.offer-logo { width: 120px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; }
.offer-usp { font-size: 12px; color: var(--success); font-weight: 600; margin-bottom: 4px; }
.offer-info { flex: 1; }
.offer-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.offer-name { font-size: 16px; font-weight: 700; }
.offer-badge-best { padding: 2px 8px; background: var(--primary); color: white; font-size: 11px; font-weight: 600; border-radius: var(--radius-full); }
.offer-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-secondary); flex-wrap: wrap; }
.offer-meta strong { color: var(--text); font-weight: 600; }
.offer-cta { flex-shrink: 0; }
.results-footer { text-align: center; }
.results-disclaimer { font-size: 12px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }

/* ============================================
   How It Works
   ============================================ */
.how-it-works { padding: 80px 0; background: var(--bg); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 16px; }
.step-card { flex: 1; max-width: 320px; text-align: center; padding: 32px 24px; border-radius: var(--radius-lg); background: var(--bg-alt); border: 1px solid var(--border-light); transition: all var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--primary); color: white; font-weight: 700; font-size: 14px; border-radius: 50%; margin-bottom: 16px; }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--text-light); margin-top: 60px; }

/* ============================================
   Features / Why Us
   ============================================ */
.why-us { padding: 80px 0; background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card {
    background: white; padding: 20px 24px; border-radius: var(--radius);
    border: 1px solid var(--border-light); transition: all var(--transition);
    display: flex; align-items: flex-start; gap: 16px;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.feature-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   Apps Section
   ============================================ */
.apps-section { padding: 80px 0; background: var(--bg); }
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.app-card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; transition: all var(--transition); position: relative; overflow: hidden; }
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-badge { position: absolute; top: 16px; right: 16px; padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: var(--radius-full); }
.app-badge.best { background: var(--primary); color: white; }
.app-badge.popular { background: #FEF3C7; color: #92400E; }
.app-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.app-logo { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: white; }
.app-logo-1 { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.app-logo-2 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.app-logo-3 { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.app-logo-4 { background: linear-gradient(135deg, #10B981, #059669); }
.app-logo-5 { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.app-logo-6 { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.app-logo-7 { background: linear-gradient(135deg, #EF4444, #F97316); }
.app-logo-8 { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.app-card-logo {
    width: 100%; height: 76px; background: var(--bg-alt); border: 1px solid var(--border-light);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    padding: 10px 28px; margin-bottom: 16px;
}
.app-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.app-card-usp { font-size: 13px; font-weight: 600; color: var(--primary); text-align: center; margin: 0 0 14px; }
.app-info h3 { font-size: 17px; font-weight: 700; }
.app-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); }
.stars { color: var(--accent); }
.app-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; padding: 16px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.app-detail span { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 2px; }
.app-detail strong { font-size: 13px; color: var(--text); }
.app-detail strong.highlight { color: var(--success); }

/* ============================================
   Requirements
   ============================================ */
.requirements { padding: 80px 0; background: var(--bg-alt); }
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.req-card { background: white; padding: 24px; border-radius: var(--radius); border: 1px solid var(--border-light); text-align: center; transition: all var(--transition); }
.req-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.req-icon { font-size: 36px; margin-bottom: 12px; }
.req-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.req-card p { font-size: 13px; color: var(--text-secondary); }

/* ============================================
   Testimonials
   ============================================ */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-alt); padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; }
.testimonial-card > p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ============================================
   FAQ
   ============================================ */
.faq, .faq-section { padding: 80px 0; background: var(--bg-alt); }
.faq-section h2 { max-width: 760px; margin: 0 auto 24px; font-size: 26px; font-weight: 800; }
.faq-list { max-width: 760px; margin: 0 auto; }

/* FAQ Page - Premium Design */
.faq-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin-bottom: 40px; position: sticky; top: 72px; z-index: 50;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    border-radius: var(--radius-lg); padding: 8px;
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.faq-tab {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 12px 20px; border-radius: var(--radius); font-size: 13px;
    font-weight: 600; color: var(--text-secondary); text-decoration: none;
    transition: all 0.2s ease; flex: 1; min-width: 0; text-align: center;
}
.faq-tab-icon { font-size: 22px; line-height: 1; }
.faq-tab-text { font-size: 13px; font-weight: 600; white-space: nowrap; }
.faq-tab-count {
    font-size: 10px; font-weight: 700; color: var(--text-light);
    background: var(--bg-alt); padding: 1px 8px; border-radius: var(--radius-full);
    line-height: 1.4;
}
.faq-tab:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(13,148,136,0.2); }
.faq-tab:hover .faq-tab-count { background: rgba(255,255,255,0.2); color: white; }

.faq-cat {
    margin-bottom: 28px;
}
.faq-cat-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 24px; background: var(--bg-dark); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    color: white;
}
.faq-cat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 22px; flex-shrink: 0;
}
.faq-cat-header h2 {
    font-size: 18px !important; font-weight: 700 !important; color: white !important;
    margin: 0 !important; padding: 0 !important; border: none !important;
}
.faq-cat-header p {
    font-size: 13px; color: rgba(255,255,255,0.6); margin: 2px 0 0; line-height: 1.4;
}
.faq-cat-body {
    background: white; border: 1px solid var(--border-light); border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.faq-cat-body .faq-item { border-bottom: 1px solid var(--border-light); }
.faq-cat-body .faq-item:last-child { border-bottom: none; }
.faq-cat-body .faq-question {
    font-size: 15px; padding: 18px 24px; transition: all 0.15s ease;
}
.faq-cat-body .faq-question:hover { background: var(--bg-alt); }
.faq-cat-body .faq-toggle { color: var(--primary); font-size: 22px; font-weight: 400; }
.faq-cat-body .faq-answer { padding: 0 24px; }
.faq-cat-body .faq-answer p { font-size: 14px; line-height: 1.75; color: var(--text-secondary); }
.faq-cat-body .faq-answer ul { padding-left: 20px; }
.faq-cat-body .faq-answer li { font-size: 14px; line-height: 1.7; margin-bottom: 6px; color: var(--text-secondary); }
.faq-cat-body .faq-item.open { background: var(--primary-50); }
.faq-cat-body .faq-item.open .faq-question { color: var(--primary-dark); font-weight: 700; }
.faq-cat-body .faq-item.open .faq-answer { padding: 0 24px 20px; }

@media (max-width: 768px) {
    .faq-tabs { position: static; gap: 4px; padding: 6px; border-radius: var(--radius); flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .faq-tabs::-webkit-scrollbar { display: none; }
    .faq-tab { padding: 8px 12px; min-width: auto; flex: 0 0 auto; gap: 2px; }
    .faq-tab-icon { font-size: 18px; }
    .faq-tab-text { font-size: 11px; }
    .faq-tab-count { font-size: 9px; padding: 1px 6px; }
    .faq-cat-header { padding: 16px 18px; gap: 12px; }
    .faq-cat-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 8px; }
    .faq-cat-header h2 { font-size: 16px !important; }
    .faq-cat-header p { font-size: 12px; }
    .faq-cat-body .faq-question { padding: 14px 18px; font-size: 14px; }
    .faq-cat-body .faq-answer { padding: 0 18px; }
    .faq-cat-body .faq-item.open .faq-answer { padding: 0 18px 16px; }
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--text); text-align: left; transition: color var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-toggle { font-size: 24px; font-weight: 300; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* Inner page CTA banner */
.article-cta {
    margin: 48px 0; padding: 36px; text-align: center;
    background: linear-gradient(135deg, var(--bg-dark), #0f3a36);
    border-radius: var(--radius-lg); color: white; position: relative; overflow: hidden;
}
.article-cta::before {
    content: ''; position: absolute; top: -40%; right: -10%;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(13,148,136,0.3) 0%, transparent 70%);
}
.article-cta h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; color: white !important; border: none !important; padding: 0 !important; }
.article-cta p { font-size: 15px; color: rgba(255,255,255,0.7) !important; margin-bottom: 20px; }
.article-cta a { color: white !important; text-decoration: none !important; }
.article-cta .btn { position: relative; z-index: 1; display: inline-flex; }

/* Inline FAQ in article pages */
.article-content .faq-list,
.content-body .faq-list,
.content-wrapper .faq-list {
    max-width: 100%; background: linear-gradient(135deg, #f8fafc, #f0fdfa);
    border: 1px solid var(--primary-100); border-radius: var(--radius-lg);
    padding: 4px 28px; margin: 32px 0;
}
.article-content .faq-item:last-child,
.content-body .faq-item:last-child,
.content-wrapper .faq-item:last-child { border-bottom: none; }
.article-content .faq-question,
.content-body .faq-question,
.content-wrapper .faq-question { font-size: 15px; }

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
    padding: 80px 0; text-align: center; color: white; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f3a36 50%, var(--primary-dark) 100%);
}
.final-cta::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(13,148,136,0.3) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; color: white; }
.final-cta p { font-size: 18px; color: white !important; opacity: 1; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.final-cta .btn {
    text-decoration: none !important; font-weight: 700; border-radius: var(--radius);
    padding: 14px 32px; font-size: 16px;
}
.final-cta .btn-white {
    background: var(--accent) !important; color: white !important; border-color: var(--accent) !important;
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.final-cta .btn-white:hover {
    background: #d97706 !important; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.5);
}
.final-cta .btn-outline {
    color: white !important; border-color: rgba(255,255,255,0.5) !important;
    background: rgba(255,255,255,0.08) !important;
}
.final-cta .btn-outline:hover {
    background: rgba(255,255,255,0.15) !important; border-color: white !important;
}
.final-cta a { text-decoration: none; }
@media (max-width: 768px) {
    .final-cta .btn { padding: 13px 24px; font-size: 15px; }
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) {
    .cta-actions { flex-direction: column; gap: 10px; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 300px; text-align: center; }
}

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--bg-dark); color: #94A3B8; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: #94A3B8; }
.footer-brand .logo-text-main { color: white; }
.footer-brand .logo-text-accent { color: var(--primary-light); }
.footer-links h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 13px; color: #94A3B8; margin-bottom: 8px; transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-disclaimer { margin-bottom: 16px; }
.footer-disclaimer p { font-size: 12px; line-height: 1.7; color: #64748B; }
.footer-copy p { font-size: 13px; color: #64748B; text-align: center; }

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero .container { grid-template-columns: 1fr; gap: 28px; }
    .hero-visual { display: none; }
    .hero-calculator { max-width: 100%; }
    .hero-trusted { margin-top: 16px; }
    .hero h1 { font-size: 34px; }
    .offer-cards-v2 { grid-template-columns: 1fr 1fr; }
    .oc2:first-child .oc2-grid { grid-template-columns: 1fr 1fr; }
    .oc2:first-child .oc2-item:nth-child(2n) { border-right: none; }
    .oc2:first-child .oc2-item:nth-last-child(-n+2) { border-bottom: none; }
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-sidebar { order: -1; }
    .sidebar-widget { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Header */
    .header .container { height: 60px; }
    .logo-icon-img { width: 30px; height: 30px; }
    .logo-text { font-size: 16px; }
    .nav { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav.open {
        display: flex; flex-direction: column; position: absolute;
        top: 60px; left: 0; right: 0; background: white; padding: 16px;
        box-shadow: var(--shadow-lg); border-top: 1px solid var(--border); gap: 0;
        max-height: 80vh; overflow-y: auto;
    }
    .nav.open > a, .nav.open .nav-trigger {
        padding: 14px 0; font-size: 15px; border-bottom: 1px solid var(--border-light);
        display: flex; justify-content: space-between; width: 100%;
    }
    .nav.open > a:last-of-type { border-bottom: none; }
    .nav-dropdown { width: 100%; border-bottom: 1px solid var(--border-light); }
    .nav-dropdown:last-of-type { border-bottom: none; }
    .nav-dropdown .nav-trigger { padding: 14px 0; width: 100%; }
    .nav-dropdown-menu {
        position: static !important; transform: none !important; box-shadow: none !important;
        border: none !important; padding: 0 !important; min-width: 0 !important;
        opacity: 1 !important; visibility: visible !important;
        display: none !important; z-index: auto !important;
        background: transparent !important;
    }
    .nav-dropdown:hover .nav-dropdown-menu { display: none !important; }
    .nav-dropdown.mobile-open .nav-dropdown-menu {
        display: block !important; padding: 0 0 8px 16px !important;
    }
    .nav-dropdown-menu a { padding: 10px 0; font-size: 14px; border-bottom: none; display: block; color: var(--text-secondary); }
    .nav-dropdown-menu a:hover { color: var(--primary); }
    .nav-arrow { transition: transform 0.3s; font-size: 14px; }
    .nav-dropdown.mobile-open .nav-arrow { transform: rotate(180deg); }

    /* Hero - Homepage */
    .hero { padding: 72px 0 32px; }
    .hero h1 { font-size: 24px; line-height: 1.3; margin-bottom: 10px; }
    .hero-badge { font-size: 11px; padding: 4px 10px; margin-bottom: 10px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
    /* Hero USPs mobile */
    .hero-usps { gap: 6px; }
    .hero-usp { font-size: 11px; padding: 5px 10px; }

    /* Calculator in hero */
    .hero-calculator .calculator-card { padding: 16px; border-radius: var(--radius); }
    .calc-group { margin-bottom: 14px; }
    .calc-label span { font-size: 12px; }
    .calc-label strong { font-size: 16px; }
    .slider { height: 6px; }
    .slider::-webkit-slider-thumb { width: 24px; height: 24px; }
    .slider-range { font-size: 11px; }
    .calc-summary { padding: 12px; margin-bottom: 14px; }
    .calc-summary-row span { font-size: 12px; }
    .calc-summary-row strong { font-size: 13px; }
    .calc-summary-row.total strong { font-size: 16px; }
    .calc-note { font-size: 10px; }
    .hero-trusted { gap: 8px; margin-top: 12px; }
    .hero-trusted span { font-size: 10px; }
    .hero-trusted img { height: 18px; }

    /* Sections */
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 14px; }
    .section-header-left h2 { font-size: 20px; }
    .how-it-works, .why-us, .apps-section, .requirements, .testimonials, .faq, .final-cta { padding: 40px 0; }

    /* Page hero (inner pages) */
    .page-hero { padding: 72px 0 0; }
    .page-hero .container { padding-bottom: 24px; }
    .page-hero h1 { font-size: 24px; }
    .page-hero .subtitle, .page-hero .hero-subtitle { font-size: 14px; }
    .page-hero .hero-meta { font-size: 11px; gap: 10px; margin-top: 14px; padding-top: 12px; }
    .breadcrumbs { font-size: 12px; padding-bottom: 10px; }

    /* Steps - stack vertical on mobile */
    .steps-grid { flex-direction: column; gap: 10px; }
    .step-arrow { display: none; }
    .step-card { max-width: 100%; padding: 16px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: 0 14px; text-align: left; align-items: start; }
    .step-number { grid-row: 1 / 3; grid-column: 1; margin-bottom: 0; align-self: center; }
    .step-icon { display: none; }
    .step-card h3 { font-size: 15px; margin-bottom: 2px; grid-column: 2; }
    .step-card p { font-size: 13px; grid-column: 2; }

    /* Grids */
    .offer-cards-v2 { grid-template-columns: 1fr; gap: 12px; }
    .oc2:first-child { grid-column: 1; }
    .apps-grid { grid-template-columns: 1fr; gap: 12px; }
    .features-grid { grid-template-columns: 1fr; gap: 10px; }
    .feature-card {
        padding: 14px 18px; text-align: left;
        display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto;
        gap: 0 12px; align-items: start;
    }
    .feature-icon { font-size: 22px; margin-bottom: 0; grid-row: 1 / 3; align-self: center; }
    .feature-card h3 { font-size: 14px; margin-bottom: 2px; grid-column: 2; }
    .feature-card p { font-size: 12px; line-height: 1.5; grid-column: 2; }
    .req-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
    .related-grid { grid-template-columns: 1fr; gap: 10px; }
    .quick-links { grid-template-columns: 1fr 1fr; gap: 6px; }
    .quick-link { font-size: 12px; padding: 8px 10px; }

    /* Offer V2 cards */
    .oc2 { padding: 18px; }
    .oc2-top { flex-direction: column; text-align: center; gap: 8px; }
    .oc2-logo, .oc2:first-child .oc2-logo { width: 160px; height: 58px; margin: 0 auto; padding: 6px 14px; }
    .oc2-usp, .oc2:first-child .oc2-usp { font-size: 13px; }
    .oc2-grid, .oc2:first-child .oc2-grid { grid-template-columns: 1fr 1fr; margin-bottom: 12px; }
    .oc2-item { padding: 8px 6px; }
    .oc2-label { font-size: 9px; margin-bottom: 2px; }
    .oc2-val, .oc2:first-child .oc2-val { font-size: 12px; }
    .oc2-cta { font-size: 13px; padding: 10px; }
    .oc2-badge { font-size: 9px; padding: 3px 10px; right: 12px; }

    /* App cards homepage */
    .app-card { padding: 16px; }
    .app-card-logo { height: 60px; padding: 8px 18px; margin-bottom: 10px; }
    .app-card-usp { font-size: 11px; margin-bottom: 8px; }
    .app-details { gap: 6px; padding: 10px; margin-bottom: 12px; }
    .app-detail span { font-size: 9px; }
    .app-detail strong { font-size: 11px; }
    .app-badge { font-size: 9px; padding: 3px 8px; top: 10px; right: 10px; }

    /* Article content */
    .article-content, .content-section .content-body, .content-section .container > .content-wrapper { padding: 28px 0 48px; }
    .article-content > h2, .content-body > h2, .content-wrapper > h2 { font-size: 20px; margin-top: 32px; padding-top: 20px; padding-left: 12px; }
    .article-content h3, .content-body h3, .content-wrapper h3 { font-size: 17px; margin-top: 24px; }
    .article-content p, .content-body p, .content-wrapper p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
    .article-content li, .content-body li, .content-wrapper li { font-size: 14px; line-height: 1.7; }
    .intro-text { font-size: 14px; padding: 16px 18px; margin-bottom: 24px; border-left-width: 4px; }
    .toc { padding: 18px; margin-bottom: 28px; }
    .toc h2, .toc h4 { font-size: 16px; }
    .toc li { font-size: 14px; padding-left: 24px; margin-bottom: 8px; }
    .toc li::before { width: 18px; height: 18px; font-size: 10px; }
    .author-box { flex-direction: column; text-align: center; padding: 16px; gap: 10px; }
    .author-box-avatar { width: 44px; height: 44px; font-size: 16px; }
    .article-meta { font-size: 12px; padding: 10px 12px; gap: 10px; }
    .callout, .callout-info, .callout-success, .callout-warning, .callout-danger {
        padding: 14px 14px 14px 44px; font-size: 13px; margin: 20px 0; border-radius: var(--radius);
    }
    .callout, .callout-info, .callout-success, .callout-warning, .callout-danger { padding: 16px 18px; }
    .article-cta { padding: 24px 20px; margin: 32px 0; }
    .article-cta h3 { font-size: 18px !important; }
    .article-cta p { font-size: 13px !important; }

    /* Inline FAQ */
    .article-content .faq-list, .content-body .faq-list, .content-wrapper .faq-list { padding: 2px 18px; }
    .article-content .faq-question, .content-body .faq-question, .content-wrapper .faq-question { font-size: 14px; }

    /* Tables */
    .table-responsive { margin: 16px -16px; border-radius: 0; border-left: none; border-right: none; }
    .comparison-table th, .comparison-table td { padding: 8px 10px; font-size: 11px; }
    .article-content table th, .content-body table th, .content-wrapper table th { padding: 8px 12px; font-size: 11px; }
    .article-content table td, .content-body table td, .content-wrapper table td { padding: 8px 12px; font-size: 12px; }

    /* Related articles */
    .related-articles { padding: 24px; margin-top: 36px; }
    .related-articles h3 { font-size: 18px !important; }

    /* Footer */
    .footer { padding: 32px 0 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand .logo { justify-content: center; }
    .footer-brand p { font-size: 12px; margin-top: 10px; }
    .footer-links h4 { font-size: 12px; margin-bottom: 8px; }
    .footer-links a { font-size: 11px; margin-bottom: 5px; }
    .footer-disclaimer p { font-size: 10px; }
    .footer-copy p { font-size: 11px; }
    .footer-bottom { padding: 16px 0; }

    /* Final CTA */
    .final-cta { padding: 36px 0; }
    .final-cta h2 { font-size: 22px; margin-bottom: 10px; }
    .final-cta p { font-size: 14px; margin-bottom: 20px; }

    /* Testimonials */
    .testimonial-card { padding: 18px; }
    .testimonial-stars { font-size: 16px; margin-bottom: 10px; }
    .testimonial-card > p { font-size: 13px; margin-bottom: 14px; }
    .author-avatar { width: 36px; height: 36px; font-size: 12px; }
    .testimonial-author strong { font-size: 13px; }
    .testimonial-author span { font-size: 11px; }

    /* Requirements */
    .req-card { padding: 14px; }
    .req-icon { font-size: 24px; margin-bottom: 6px; }
    .req-card h3 { font-size: 13px; }
    .req-card p { font-size: 11px; }

    /* FAQ */
    .faq-question { font-size: 14px; padding: 14px 0; }
    .faq-toggle { font-size: 20px; }
    .faq-answer p { font-size: 13px; }

    /* Reading progress */
    #reading-progress { top: 60px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 { font-size: 21px; }
    .hero-subtitle { font-size: 13px; }
    .hero-usp { font-size: 10px; padding: 4px 8px; }
    .hero-calculator .calculator-card { padding: 12px; }
    .calc-label strong { font-size: 15px; }
    .calc-summary-row.total strong { font-size: 15px; }
    .hero-trusted { display: none; }

    .page-hero { padding: 64px 0 0; }
    .page-hero .container { padding-bottom: 20px; }
    .page-hero h1 { font-size: 20px; }
    .section-header h2 { font-size: 19px; }

    .features-grid { gap: 8px; }
    .feature-card { padding: 12px 14px; gap: 0 10px; }
    .feature-icon { font-size: 20px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 11px; }

    .oc2 { padding: 12px; }
    .oc2-logo, .oc2:first-child .oc2-logo { width: 140px; height: 50px; }
    .oc2-val, .oc2:first-child .oc2-val { font-size: 11px; }
    .oc2-label { font-size: 8px; }

    .req-grid { grid-template-columns: 1fr 1fr; }
    .quick-links { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 14px; }

    .intro-text { font-size: 13px; padding: 12px 12px 12px 16px; border-left-width: 3px; }
    .article-content > h2, .content-body > h2, .content-wrapper > h2 { font-size: 18px; padding-left: 10px; border-left-width: 3px; }
    .toc li { font-size: 13px; }

    .step-card h3 { font-size: 14px; }
    .step-card p { font-size: 12px; }
}

/* ============================================
   Modal Overlay
   ============================================ */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000; display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-backdrop {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px);
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-container {
    position: relative; background: white; border-radius: var(--radius-lg);
    width: 90%; max-width: 520px; max-height: 90vh; overflow-y: auto;
    padding: 36px; box-shadow: var(--shadow-lg); z-index: 1;
    animation: modalSlideUp 0.3s ease;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
    border: none; background: var(--bg-alt); border-radius: 50%; cursor: pointer;
    font-size: 22px; color: var(--text-secondary); display: flex; align-items: center;
    justify-content: center; transition: all var(--transition); line-height: 1; z-index: 2;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-header { margin-bottom: 20px; padding-right: 40px; }
.modal-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.modal-header p { font-size: 14px; color: var(--text-secondary); }
.modal-step { /* shown by default */ }
.modal-step.hidden { display: none !important; }
.modal-step.active { display: block !important; }
.modal-overlay .loading-card { padding: 40px 0; }
.modal-overlay .results-header { margin-bottom: 20px; }
.modal-overlay .results-header h3 { font-size: 22px; }
.modal-overlay .offers-grid { gap: 12px; margin-bottom: 20px; }
.modal-overlay .offer-card {
    grid-template-columns: auto 1fr auto; padding: 16px; gap: 14px;
}
.modal-overlay .offer-logo-wrap { width: 100px; height: 44px; padding: 4px 8px; }
.modal-overlay .offer-logo { width: 100px; height: 44px; font-size: 13px; }
.modal-overlay .offer-name { font-size: 14px; }
.modal-overlay .offer-meta { font-size: 12px; gap: 8px; }
.modal-overlay .results-disclaimer { font-size: 11px; }

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .page-hero h1 { font-size: 22px; }
    .page-hero { padding: 88px 0 24px; }
    .section-header h2 { font-size: 22px; }
    .req-grid { grid-template-columns: 1fr; }
    .selected-summary { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: 1fr 1fr; gap: 6px; }
    .footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 8px; }
    .apps-grid { gap: 12px; }
    .app-card { padding: 16px; }
    .app-details { grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px; }
    .offer-card-inline { padding: 16px 14px; }
    .offer-card-inline-details { gap: 8px; }
    .offer-card-inline-details span { font-size: 10px; }
    .offer-card-inline-details strong { font-size: 13px; }
    .final-cta { padding: 40px 0; }
    .final-cta h2 { font-size: 22px; }
    .final-cta p { font-size: 14px; margin-bottom: 20px; }
    .breadcrumbs { font-size: 12px; }
    .intro-text { padding: 14px 16px; font-size: 14px; }
    .toc { padding: 16px; }
    .article-content h2, .content-body h2, .content-wrapper h2 { font-size: 20px; }
}
