/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #818CF8;
    --secondary: #059669;
    --accent: #F59E0B;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #CBD5E1;
    --light: #F1F5F9;
    --light-2: #F8FAFC;
    --white: #FFFFFF;
    --danger: #EF4444;
    --success: #10B981;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.06), 0 10px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 10px 25px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.12);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
}

/* Safari button reset */
button, input[type="submit"], input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray);
    padding: 12px 16px;
}
.btn-ghost:hover { color: var(--primary); }

.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo-icon { font-size: 24px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--dark); }

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--light-2) 0%, var(--white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--dark);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid var(--white);
    margin-right: -8px;
}

.hero-trust p {
    font-size: 14px;
    color: var(--gray);
}
.hero-trust strong { color: var(--dark); }

/* Hero Visual */
.hero-visual { position: relative; }

.tool-stack-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.stack-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease both;
}
.stack-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.sc-1 { animation-delay: 0.1s; }
.sc-2 { animation-delay: 0.2s; }
.sc-3 { animation-delay: 0.3s; }
.sc-4 { animation-delay: 0.4s; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.stack-card strong { font-size: 16px; }

.sc-tag {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 2px;
}

.sc-rating {
    margin-left: auto;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

/* ===== Social Proof Bar ===== */
.social-proof {
    padding: 40px 0;
    background: var(--dark);
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.proof-label {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 4px;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

/* ===== Featured Deals Banner ===== */
.featured-deals {
    padding: 48px 0;
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.featured-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-shopify {
    background: linear-gradient(135deg, #f0f9e8 0%, #e8f5e0 100%);
    border-color: #96BF48;
}
.featured-shopify:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(150, 191, 72, 0.3);
}

.featured-clickfunnels {
    background: linear-gradient(135deg, #e8f0ff 0%, #dde8ff 100%);
    border-color: #0066FF;
}
.featured-clickfunnels:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.25);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--dark);
    color: var(--white);
}

.featured-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.featured-info {
    flex: 1;
    min-width: 0;
}

.featured-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.featured-info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
}

.featured-offer {
    text-align: center;
    flex-shrink: 0;
}

.featured-price {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
}

.featured-note {
    display: block;
    font-size: 11px;
    color: var(--gray);
    margin-top: 2px;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition);
}
.featured-card:hover .featured-cta {
    background: var(--primary);
}

@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .featured-card {
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px;
    }
    .featured-offer { display: none; }
    .featured-cta { width: 100%; justify-content: center; margin-top: 4px; }
    .featured-badge { top: 8px; right: 12px; }
}

/* ===== Categories ===== */
.categories { padding: 100px 0; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    display: block;
}
.category-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cat-hosting { background: #EDE9FE; color: #7C3AED; }
.cat-email { background: #DBEAFE; color: #2563EB; }
.cat-seo { background: #FEF3C7; color: #D97706; }
.cat-builder { background: #D1FAE5; color: #059669; }
.cat-funnel { background: #FEE2E2; color: #DC2626; }
.cat-vpn { background: #E0E7FF; color: #4F46E5; }

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cat-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ===== Top Picks ===== */
.top-picks {
    padding: 100px 0;
    background: var(--light-2);
}

.pick-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    transition: all var(--transition);
}
.pick-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pick-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pick-badge-blue { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.pick-badge-green { background: linear-gradient(135deg, #059669, #047857); }
.pick-badge-orange { background: linear-gradient(135deg, #F59E0B, #D97706); }
.pick-badge-dark { background: linear-gradient(135deg, var(--dark-2), var(--dark)); }
.pick-badge-red { background: linear-gradient(135deg, #0066FF, #003CB3); }

/* Featured Pick Card (Shopify & ClickFunnels) */
.pick-card-featured {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary-light), var(--shadow);
}
.pick-card-featured:hover {
    box-shadow: 0 0 0 2px var(--primary), 0 8px 30px rgba(79, 70, 229, 0.15);
}

.pick-content { padding: 32px; }

.pick-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.pick-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pick-logo span { color: white; font-size: 24px; font-weight: 800; }

.pick-info h3 { font-size: 22px; font-weight: 700; }
.pick-tagline { font-size: 15px; color: var(--gray); margin-top: 2px; }

.pick-score { margin-left: auto; text-align: center; }

.score-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--score-color, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.score-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 500;
}

.pick-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--light-2);
    border-radius: var(--radius);
}

.pick-pros h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pick-pros ul { display: flex; flex-direction: column; gap: 8px; }

.pick-pros li {
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}
.pick-pros li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pick-specs { display: flex; flex-direction: column; gap: 16px; }

.spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-lighter);
}
.spec:last-child { border-bottom: none; padding-bottom: 0; }

.spec-label { font-size: 14px; color: var(--gray); }
.spec-value { font-size: 15px; font-weight: 600; color: var(--dark); }

.pick-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== Comparison Table ===== */
.comparisons { padding: 100px 0; }

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--light);
}

.comparison-table tbody tr:hover { background: var(--light-2); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* Featured table rows */
.table-row-featured { background: rgba(79, 70, 229, 0.03); }
.table-row-featured:hover { background: rgba(79, 70, 229, 0.06) !important; }
.table-row-featured td:first-child { border-left: 3px solid var(--primary); }

.table-hot {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    vertical-align: middle;
}

.table-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ===== Quiz Section ===== */
.quiz-section { padding: 100px 0; background: var(--light-2); }

.quiz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.quiz-content { padding: 48px; text-align: center; }

.quiz-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.quiz-content > p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 36px;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--light-2);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--dark);
    line-height: 1.4;
}
.quiz-option:hover {
    border-color: var(--primary-light);
    background: rgba(79, 70, 229, 0.04);
}
.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
}

.qo-icon { font-size: 24px; }

.quiz-progress {
    height: 4px;
    background: var(--light);
    border-radius: 2px;
    margin-top: 32px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.quiz-results { text-align: left; }

#quizResults .result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--light-2);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

#quizResults .result-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

#quizResults .result-info strong { display: block; font-size: 16px; }
#quizResults .result-info span { font-size: 13px; color: var(--gray); }

#quizResults .result-cta {
    margin-left: auto;
}

/* ===== Newsletter ===== */
.newsletter { padding: 100px 0; }

.newsletter-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 64px;
    overflow: hidden;
    position: relative;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.newsletter-form input::placeholder { color: var(--gray-light); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.15);
}

.form-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 12px;
}

.guide-preview {
    display: flex;
    justify-content: center;
}

.guide-page {
    width: 200px;
    height: 260px;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: rotate(-3deg);
}

.guide-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.guide-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

/* ===== Methodology ===== */
.methodology { padding: 100px 0; background: var(--light-2); }

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
}

.method-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.5;
    margin-bottom: 16px;
    line-height: 1;
}

.method-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Disclosure ===== */
.disclosure {
    padding: 24px 0;
    border-top: 1px solid var(--gray-lighter);
    border-bottom: 1px solid var(--gray-lighter);
}

.disclosure p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
}
.disclosure a { color: var(--primary); text-decoration: underline; }

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-brand .logo { color: var(--white); }

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 14px;
    color: var(--gray);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--dark-3);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 42px; }
    .hero-visual { display: none; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-lighter);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { display: flex; }

    .hero { padding: 110px 0 60px; }
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }

    .proof-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .proof-number { font-size: 24px; }

    .section-header h2 { font-size: 28px; }

    .category-grid { grid-template-columns: 1fr; }

    .pick-header { flex-wrap: wrap; }
    .pick-score { margin-left: 0; }
    .pick-details { grid-template-columns: 1fr; }
    .pick-cta { flex-direction: column; }
    .pick-cta .btn { width: 100%; justify-content: center; }

    .comparison-table { font-size: 13px; }
    .comparison-table th, .comparison-table td { padding: 12px; }

    .quiz-options { grid-template-columns: 1fr; }

    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    .newsletter-visual { display: none; }
    .newsletter-form .form-group { flex-direction: column; }

    .method-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .container { padding: 0 16px; }
    .pick-content { padding: 24px; }
    .quiz-content { padding: 32px 24px; }
}

