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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Main Content */
.main-content {
    background: white;
}

.section {
    padding: 30px 0;
}

section.section, .main-section {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}
.awards-section {
    margin-top: 10px !important;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.section h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    color: #34495e;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.method-step h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-answer {
    color: #555;
    font-size: 1.1rem;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #23272f;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    border-top: 1.5px solid #222;
}
.footer a {
    color: #ffeb3b;
    text-decoration: underline;
}
.footer a:focus, .footer a:hover {
    color: #ffd600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Additional styles for inline elements */
.intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.methodology-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.metrics-list {
    font-size: 1.1rem;
    margin-left: 40px;
    margin-top: 20px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.step-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.step-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments for process steps */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-links {
        justify-content: center;
    }
} 

/* Sticky Signup Bar */
.sticky-signup-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 54px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sticky-bar-left a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.sticky-bar-left a:hover {
    color: #ffeb3b;
}
.sticky-bar-center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.sticky-bar-right {
    display: flex;
    align-items: center;
}
.notify-btn {
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(255,107,107,0.15);
}
.notify-btn:hover {
    background: #ff5252;
    color: #fff;
}

/* Status Pills */
.signup-status-pill {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 999px;
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-left: 6px;
    vertical-align: middle;
}
.signup-status-opening {
    background: #fffbe6;
    color: #ffb300;
    border: 1px solid #ffe082;
}
.signup-status-open {
    background: #e6ffed;
    color: #2ecc40;
    border: 1px solid #b2f2bb;
}
.signup-status-closed {
    background: #ffeaea;
    color: #e53935;
    border: 1px solid #ffcdd2;
}

/* Newsletter Modal */
.newsletter-modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.newsletter-modal-overlay.active {
    display: flex;
}
.newsletter-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 350px;
    width: 95vw;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    animation: modalIn 0.2s cubic-bezier(.4,2,.6,1) 1;
}
@keyframes modalIn {
    from { transform: translateY(-30px) scale(0.98); opacity: 0; }
    to { transform: none; opacity: 1; }
}
.newsletter-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.newsletter-modal-close:hover {
    color: #ff6b6b;
}

/* AWeber Form Styles (scoped to modal) */
.newsletter-modal-content .af-form-wrapper {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}
.newsletter-modal-content .af-form {
    background: transparent;
    color: #222;
    font-size: 1rem;
    font-family: inherit;
    padding: 0;
    border: none;
    box-shadow: none;
}
.newsletter-modal-content .af-header,
.newsletter-modal-content .af-footer {
    display: none;
}
.newsletter-modal-content .af-body {
    padding: 0;
    background: none;
    color: #222;
    font-size: 1rem;
    font-family: inherit;
}
.newsletter-modal-content .af-element {
    padding: 0 0 12px 0;
    margin: 0;
}
.newsletter-modal-content .previewLabel {
    display: block;
    margin-bottom: 4px;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
}
.newsletter-modal-content .af-textWrap input.text {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 0;
    background: #fafbfc;
    color: #222;
    transition: border 0.2s;
}
.newsletter-modal-content .af-textWrap input.text:focus {
    border-color: #667eea;
    outline: none;
}
.newsletter-modal-content .buttonContainer {
    text-align: center;
}
.newsletter-modal-content .buttonContainer input.submit {
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.newsletter-modal-content .buttonContainer input.submit:hover {
    background: #764ba2;
}
.newsletter-modal-content .privacyPolicy {
    text-align: center;
    font-size: 0.95em;
    color: #888;
    margin-top: 8px;
}
.newsletter-modal-content .poweredBy {
    text-align: center;
    font-size: 0.7em;
    color: #bbb;
    margin-top: 2px;
}

/* Responsive for sticky bar and modal */
@media (max-width: 600px) {
    .sticky-signup-bar {
        flex-direction: column;
        height: auto;
        padding: 8px 8px;
        gap: 6px;
        font-size: 0.98rem;
    }
    .sticky-bar-left, .sticky-bar-center, .sticky-bar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .newsletter-modal-content {
        padding: 18px 4vw 16px 4vw;
        max-width: 98vw;
    }
} 

/* --- How Does It Work: Tighter Layout --- */
.process-steps {
    margin-top: 24px;
    gap: 16px;
}
.process-step {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 8px;
}
.step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}
.step-content h4 {
    font-size: 1.08rem;
    margin-bottom: 7px;
}
.step-content p {
    font-size: 0.98rem;
    margin-bottom: 7px;
}
@media (max-width: 768px) {
    .process-step {
        padding: 12px 6vw;
    }
}

/* --- Terms & Tiers Tables --- */
.terms-tiers-row {
    display: flex;
    gap: 32px;
    margin-top: 18px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.terms-list, .tiers-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 18px 18px 12px 18px;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 420px;
}
.terms-list {
    margin-bottom: 12px;
}
.terms-list ul {
    padding-left: 18px;
    margin: 0;
}
.terms-list li {
    margin-bottom: 8px;
    font-size: 0.98rem;
    line-height: 1.5;
}
.tiers-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
}
.tiers-table th, .tiers-table td {
    padding: 6px 8px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.tiers-table th {
    background: #f8f9fa;
    font-weight: 600;
}
.tiers-table tr:last-child td {
    border-bottom: none;
}

/* --- Collapsible Terms & Tiers --- */
.collapsible-box {
    border: 1.5px solid #ececec;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-bottom: 0;
    padding: 0;
}
.collapsible-box:not(.open) {
    padding-bottom: 0;
}
.collapsible-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 8px 8px 8px 0;
    cursor: pointer;
    color: #2c3e50;
    border-radius: 8px 8px 0 0;
    transition: background 0.15s;
    margin: 0;
}
.collapsible-header:hover {
    background: #f8f9fa;
}
.chevron {
    display: inline-block;
    font-size: 1.1em;
    transition: transform 0.2s;
    margin-right: 2px;
    margin-left: 2px;
}
.collapsible-box.open .chevron {
    transform: rotate(90deg);
}
/* Collapsible content - use display instead of max-height to eliminate flex gaps */
.collapsible-content {
    display: none;
    padding: 6px 6px 8px 6px;
    margin: 0;
    border: none;
}
.collapsible-box.open .collapsible-content {
    display: block;
    padding: 6px 6px 8px 6px;
    margin: 0;
}
.collapsible-box:not(.open) .collapsible-content {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}
.collapsible-box.open .collapsible-header {
    background: #f8f9fa;
    font-weight: 600;
}
.collapsible-header:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}
@media (max-width: 900px) {
    .terms-tiers-row {
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    .terms-list, .tiers-table {
        min-width: auto;
        max-width: 100%;
        padding: 0;
        margin: 0;
        flex: none;
    }
    
    /* Test legend overflow fix for 900px */
    .test-types-legend {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        white-space: normal;
        padding: 8px 12px;
        margin-bottom: 12px;
        max-width: 100%;
        overflow: hidden;
    }
    .legend-badge {
        margin-right: 0;
        margin-bottom: 2px;
        white-space: nowrap;
    }
    
    /* Test type boxes flex-basis fix for 900px */
    .test-type-box {
        flex: none;
        width: 100%;
    }
} 

/* --- Test Type Boxes --- */
.test-types-legend {
    margin: 0 0 18px 0;
    font-size: 0.98rem;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 14px 22px;
    border-radius: 7px;
    color: #333;
    max-width: 600px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px 18px;
    align-items: center;
    line-height: 1.6;
    white-space: nowrap;
}
.legend-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.97em;
    font-weight: 700;
    margin-right: 8px;
    margin-bottom: 2px;
    white-space: nowrap;
}
.legend-impacting {
    background: #fffbe6;
    color: #b26a00;
    border: 1.5px solid #ffd600;
}
.legend-nonimpacting {
    background: #f6f6f6;
    color: #888;
    border: 1.5px solid #bdbdbd;
}
.test-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}
.test-type-box {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 270px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 18px 16px 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 5px solid #e0e0e0;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.test-type-box.impacting {
    border-left: 5px solid #ffb300;
    background: #fffbe6;
}
.test-type-box.impacting .test-type-label {
    color: #b26a00;
    font-weight: 600;
}
.test-type-box.impacting .test-type-icon {
    color: #ffb300;
}
.test-type-box.nonimpacting {
    border-left: 5px solid #bdbdbd;
    background: #f6f6f6;
}
.test-type-box.nonimpacting .test-type-label {
    color: #888;
    font-weight: 500;
}
.test-type-box .test-type-icon {
    font-size: 1.3em;
    margin-right: 7px;
    vertical-align: middle;
}
.test-type-title {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.test-type-label {
    font-size: 0.93em;
    margin-bottom: 0;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .test-type-grid {
        flex-direction: column;
        gap: 14px;
    }
    .test-type-box {
        max-width: 100%;
    }
} 

.mailinglist-signup-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
    gap: 12px;
}
.mailinglist-signup-centered p {
    text-align: center;
    margin-bottom: 0;
    font-size: 1.05rem;
} 

/* --- Awards Section --- */
.awards-section {
    margin-top: 18px;
}
.awards-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}
.awards-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.award-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 28px 28px 22px 28px;
    min-width: 260px;
    max-width: 420px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 7px solid #ffe082;
    position: relative;
}
.award-card.top-tier {
    border-left: 7px solid #ffd600;
    background: #fffde7;
}
.award-card.honorable {
    border-left: 7px solid #bdbdbd;
    background: #f7f7f7;
}
.award-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffd600;
    line-height: 1;
}
.award-card.honorable .award-icon {
    color: #bdbdbd;
    display: flex;
    align-items: center;
}
.half-star {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}
.award-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}
.award-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0;
}
.awards-footnote {
    font-size: 0.97rem;
    color: #888;
    margin-top: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
@media (max-width: 900px) {
    .awards-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .award-card {
        max-width: 98vw;
    }
} 

/* --- FAQ Grid --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
    margin-top: 36px;
    margin-bottom: 0;
}
.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px 18px 14px 18px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.faq-item:focus-within, .faq-item:hover {
    box-shadow: 0 4px 16px rgba(102,126,234,0.10);
    background: #f8f9fa;
}
.faq-question {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.faq-toggle {
    font-size: 1.2em;
    color: #667eea;
    margin-left: 8px;
    transition: transform 0.2s;
}
.faq-item[aria-expanded="true"] .faq-toggle {
    transform: rotate(90deg);
}
.faq-answer {
    color: #555;
    font-size: 1.01rem;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(.4,0,.2,1), padding 0.2s;
    padding: 0 0;
    margin-top: 0;
}
.faq-item[aria-expanded="true"] .faq-answer {
    padding: 8px 0 0 0;
    max-height: 500px;
    margin-top: 0;
}
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .faq-item {
        padding: 10px 4px 8px 4px;
    }
} 

/* 15: Accessibility focus for buttons/links */
button:focus, a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
} 

/* Half star yellow */
.half-star svg linearGradient stop[offset="50%"] {
    stop-color: #ffd600 !important;
}

/* Test legend inline fix */
.test-types-legend {
    flex-wrap: nowrap;
    gap: 10px 18px;
    align-items: center;
    line-height: 1.6;
    white-space: nowrap;
}
.legend-badge {
    white-space: nowrap;
}

/* Chevron style for collapsibles matches FAQ */
.collapsible-header .chevron {
    font-size: 1.2em;
    color: #667eea;
    margin-left: 8px;
    margin-right: 0;
    transition: transform 0.2s;
    display: inline-block;
}
.collapsible-box.open .chevron {
    transform: rotate(90deg);
} 

/* Mobile-first responsive fixes */
@media (max-width: 768px) {
    /* Test legend mobile fix */
    .test-types-legend {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        white-space: normal;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    .legend-badge {
        margin-right: 0;
        margin-bottom: 2px;
        white-space: nowrap;
    }
    
    /* Collapsible mobile improvements */
    .collapsible-header {
        padding: 8px 6px 8px 0;
        font-size: 0.95rem;
    }
    .collapsible-content {
        padding-left: 6px;
        padding-right: 6px;
    }
    .collapsible-box.open .collapsible-content {
        padding: 6px 6px 8px 6px;
    }
    
    /* Terms/Tiers mobile layout - eliminate flex gaps */
    .terms-tiers-row {
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    .terms-list, .tiers-table {
        min-width: auto;
        max-width: 100%;
        padding: 0;
        margin: 0;
        flex: none;
    }
    .terms-list ul {
        padding-left: 12px;
    }
    .terms-list li {
        margin-bottom: 4px;
        font-size: 0.9rem;
    }
    .tiers-table table {
        font-size: 0.9rem;
    }
    .tiers-table th, .tiers-table td {
        padding: 4px 6px;
    }
    
    /* FAQ mobile improvements */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 16px;
    }
    .faq-item {
        padding: 8px 6px 6px 6px;
    }
    .faq-question {
        font-size: 0.95rem;
        padding-right: 6px;
        margin-bottom: 6px;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Process steps mobile */
    .process-step {
        padding: 8px 6px;
        gap: 8px;
        margin-bottom: 8px;
    }
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    .step-content .terms-tiers-row {
        margin-top: 8px;
        margin-bottom: 0;
    }
    
    /* Test type boxes mobile - reduce whitespace */
    .test-type-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 12px;
    }
    .test-type-box {
        min-width: auto;
        max-width: 100%;
        padding: 10px 8px 8px 8px;
        flex: none;
        width: 100%;
    }
    .test-type-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .test-type-label {
        font-size: 0.85rem;
    }
    
    /* Awards mobile */
    .awards-grid {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 8px;
    }
    .award-card {
        max-width: 100%;
        padding: 12px 10px 10px 10px;
    }
    .award-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .award-desc {
        font-size: 0.9rem;
    }
    
    /* General section spacing mobile */
    .section {
        padding: 12px 0;
    }
    .hero {
        padding: 30px 0;
    }
    .cta-section {
        padding: 20px 0;
    }
    
    /* Reduce margins between sections */
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    .intro-text {
        margin-bottom: 16px;
    }
    .methodology-intro {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .sticky-signup-bar {
        font-size: 0.85rem;
        padding: 4px 6px;
        height: auto;
        min-height: 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .collapsible-header {
        padding: 6px 4px 6px 0;
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 6px 4px 4px 4px;
    }
    
    .test-type-box {
        padding: 8px 6px 6px 6px;
        flex: none;
        width: 100%;
    }
    
    .process-step {
        padding: 6px 4px;
    }
    
    .terms-list, .tiers-table {
        padding: 6px 6px 4px 6px;
    }
} 