/* /assets/styles/page/ads.css */
/* ========================================= */
/* GLOBAL RESET & BASE STYLES */
/* ========================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.25s ease;
    font-size: 20px;
}
.btn-primary {
    background: #111827;
    color: white;
}

.btn-primary:visited {
    background: #111827;
    color: white;
}
.btn-primary:hover {
    background: #1f2937;
    color: white;
    text-decoration: none;
}
.btn-secondary {
    border: 2px solid #111827;
    color: black;
}

.btn-secondary:visited {
    border: 2px solid #111827;
    color: black;
}
.btn-secondary:hover {
    background: #111827;
    color: white;
    text-decoration: none;
}

/* Alternating section backgrounds */
.value-props,
.whats-included,
.blog-section {
    background: #f9fafb;
}

.trust {
    background: #f3f4f6;
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */
header.navHeader {
    border: 0;
    background-color: rgb(255, 255, 136);
}
div#site-header {
    border-bottom: 0;
}

#hero {
    text-align: center;
    padding: 10px 25px;
    background: rgb(255, 255, 136);
}

.hero-title {
    font-size: 40px;
    max-width: 800px;
    text-align: left;
}
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: black;
    max-width: 500px;
    text-align: left;
}

h3.hero-left {
    text-align: left;
    font-weight: 400;
}
.hero-process {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.process-pill {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

@media (max-width: 600px) {
    header.navHeader,
    #hero {
        background-color: beige;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .hero-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    .hero-subtitle {
        font-weight: 400;
        font-size: 1rem;
        text-align: center;
        font-size: 12pt;
    }
    h3.hero-left {
        font-weight: 300;
        text-align: center;
        font-weight: 12pt;
        padding: 10px 0;
    }
    #hero {
        padding: 0 0;
    }
    div#hero-div {
        padding: 10px;
    }
    .hero-process {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
    }
    div.hero-copy span.arrow {
        display: inline-block;
        transform: rotate(90deg);
    }
}

/* ========================================= */
/* VALUE PROPOSITIONS */
/* ========================================= */

.value-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 5px;
}

.value-item {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
@media (max-width: 825px) {
    .value-item {
        width: 100%;
    }
}

/* ========================================= */
/* WHO WE SERVE */
/* ========================================= */

.who-serve {
    position: relative;
}

.audience-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
    padding-top: 25px;
}

/* Desktop card effect */
@media (min-width: 900px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        position: relative;
        top: -3rem;
    }
    #who-we-serve {
        background: linear-gradient(to bottom, #ffffff 50%, #eef2ff 50%);
    }

    .audience-item {
        background: #ffffff;
        border-radius: 1.25rem;
        padding: 2rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        overflow: hidden;
        position: relative;
    }

    /* Subtle hover overlay */
    .audience-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at top right,
            rgba(59, 130, 246, 0.15),
            transparent 60%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .audience-item:hover::after {
        opacity: 1;
    }

    .audience-item:hover {
        transform: translateY(-10px);
    }
}

/* ========================================= */
/* HOW IT WORKS */
/* ========================================= */

.how-steps {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
}

.step-number {
    background: #696565;
    color: #fff;
    font-weight: 700;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* ========================================= */
/* WHAT'S INCLUDED */
/* ========================================= */

.included-list {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 1rem;
    list-style-type: none;
}

.included-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.included-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

/* ========================================= */
/* TRUST SECTION */
/* ========================================= */

.trust-list {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0; /* remove default padding — cleaner */
    list-style-type: none;
}

.trust-list li {
    margin: 0; /* no vertical gaps since rows carry background */
    padding: 1rem 1rem 1rem 2rem; /* left padding for bullet */
    position: relative;
}

.trust-list li:nth-child(odd) {
    background: #f9fafb; /* very light gray */
}

.trust-list li:nth-child(even) {
    background: #f3f4f6; /* slightly darker, still subtle */
}

/* ========================================= */
/* CTA SECTION */
/* ========================================= */

.final-cta {
    text-align: center;
    background: linear-gradient(to bottom right, #eef2ff, #ffffff);
}
.cta-buttons {
    text-align: center;
}
.cta-buttons a {
    margin: 0.5rem;
}

/* ========================================= */
/* BLOG SECTION */
/* ========================================= */

.blog-list {
    margin-top: 2rem;
}

/* Style your blog cards later depending on your theme */
/* ========================================= */
/* child support section */
.child-support-stats {
    text-align: center;
    background-color: inherit;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
}

.stat {
    flex: 1 1 320px;
    max-width: 360px;
    margin: 20px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    background-color: #111;
    border-radius: 12px;
    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.stat-top {
    padding: 24px 20px;
    background: #111;
    min-height: 170px;
    align-items: center;
    justify-content: center;
    display: grid;
    border-radius: 12px;
    grid-template-rows: 1fr 1fr;
}
.stat-bottom {
    padding: 24px 20px;
    background: white;
    min-height: 170px;
    align-items: center;
    justify-content: center;
    display: grid;
    border-radius: 0 0 12px 12px;
    grid-template-rows: 1fr;
}
.stat-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    display: block;
}
.stat .description {
    color: white;
    font-size: 18px;
    line-height: 1.4;
    display: block;
}
.stats-outro {
    padding-top: 50px;
    padding-bottom: 50px;
}
p.stats-intro,
p.stats-outro {
    max-width: 800px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
section {
    padding: 15px 10px;
}
@media (width >= 600px) {
    .section-title {
        font-size: 1.7rem;
    }
}

@media (width >= 768px) {
    section {
        padding: 60px 30px;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .stat {
        margin-bottom: 30px;
    }
    div.audience-grid {
        padding-top: 5px;
    }
    .stats-outro {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    section {
        padding: 40px 20px;
    }
}
div#hero-div {
    padding: 10px;
}
@media screen and (max-width: 600px) {
    section {
        padding: 25px 15px;
    }
}

/* END CHILD SUPPORT SECTION*/
main {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

#report-showcase-section {
    background: #f7f7f7;
}

#report-showcase-hero {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Container */
#report-accordion {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Section */
#report-accordion .ra-section {
    border: 1px solid var(--border, rgba(0, 0, 0, 0.1));
    border-radius: 16px;
    background: var(--card-bg, #fff);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
    overflow: hidden;
}

#report-accordion .ra-section:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Hide radios */
#report-accordion input[type="radio"] {
    display: none;
}

/* Title row */
#report-accordion .ra-title {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

/* Icon */
#report-accordion .ra-icon {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.5;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Content container */
#report-accordion .ra-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

/* Inner content for smooth fade/slide */
#report-accordion .ra-inner {
    padding: 0 1.5rem 1rem;
    transform: translateY(-6px);
    opacity: 0;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* Open state */
#report-accordion input:checked + .ra-title .ra-icon {
    transform: rotate(45deg);
    opacity: 1;
}

#report-accordion input:checked ~ .ra-content {
    max-height: 500px;
}

#report-accordion input:checked ~ .ra-content .ra-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Paragraph styling */
#report-accordion .ra-inner p {
    margin: 0.75rem 0;
    line-height: 1.55;
    font-size: 0.98rem;
}
#sample-report {
    text-align: center;
}

/* ================================================= */

/* CSS MODAL */
/* Report Cards Grid */
.report-cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.report-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    cursor: pointer;
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.report-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.report-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.report-desc {
    font-size: 1rem;
    color: #4b5563;
}
.report-cards-grid.collapsed .report-card:nth-child(n + 4) {
    display: none;
}

/* Expand button */
.expand-button-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.expand-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.expand-button:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.expand-button .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.expand-button.expanded .arrow {
    transform: rotate(180deg);
}

.expand-button.hidden {
    display: none;
}

/* PDF MODAL */
#pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}
#pdf-modal.open {
    display: flex;
}
.pdf-modal-content {
    position: relative;
    width: 100%;
    padding: 0;
    max-width: 900px;
    height: 90%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pdf-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #000;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}
.pdf-modal-close:hover {
    background: rgba(255, 255, 255, 1);
}
#pdf-frame {
    flex: 1;
    width: 100%;
    border: none;
}
.no-padding {
    padding: 0;
}
p.answer {
    padding: 0;
}
p.small {
    font-size: 0.8rem;
    padding-top: 15px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 15px;
    border: 0;
}

.faq-item .question {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-item .answer {
    margin: 0;
    line-height: 1.6;
}

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

/* Container grid for desktop */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Text styling */
.text-content p {
    line-height: 1.7;
    margin-bottom: 0;
    padding-bottom: 0;
}

.text-content strong {
    color: #1a1a1a; /* subtle emphasis */
}

/* Section: What Happens After You Order */

#what-we-need-from-you .section-intro {
    max-width: 800px;
    margin: 0 auto 1rem;
    text-align: left;
}

#what-we-need-from-you .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

#what-we-need-from-you .value-item {
    width: auto;
}

#what-we-need-from-you .value-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}
#what-we-need-from-you .value-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.35rem;
}

#what-we-need-from-you .value-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color, #888);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (min-width: 600px) {
    .value-item {
        padding: 1.5rem;
    }
    #hero-cta-button-text {
        padding-top: 30px;
    }
}
@media (min-width: 1024px) {
    .value-item {
        padding: 2rem;
    }
}
@media (max-width: 700px) {
    #what-we-need-from-you .value-grid {
        grid-template-columns: 1fr;
        justify-items: center; /* centers the cards */
    }

    #what-we-need-from-you .value-item {
        max-width: 420px; /* keeps them from stretching full width */
        width: 100%;
    }
}
#hero-cta-button-text .button-text {
    font-size: var(--text-sm);
    color: var(--color-muted);
    padding-top: 5px;
}
#hero-cta-button-text {
    max-width: 300px;
    margin: 0 auto;
}
.hero-cta-group .btn {
    display: block;
    width: 100%;
    text-align: center; /* Ensures text stays centered */
}
h1,
h2,
h3 {
    padding-bottom: 10px;
}
.grid-container {
    padding: 1rem 1rem;
}
.faq-grid {
    padding: 10px;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .cta-buttons {
        padding: 15px;
    }
}
@media (min-width: 600px) {
    .cta-buttons {
        padding: 25px;
    }
}
@media (min-width: 1024px) {
    .cta-buttons {
        padding: 40px;
    }
}
/* Final pricing buttons only */
#cta .pricing-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

#cta .pricing-buttons .pricing-btn {
    width: 280px;
    /*min-height: 96px;*/
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.35;
    text-align: center;
}

#cta .pricing-btn-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
}

#cta .pricing-btn-detail {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 600px) {
    #cta .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }

    #cta .pricing-buttons .pricing-btn {
        width: 100%;
        max-width: 340px;
    }
}
/* NON-SCRIPT GALLERY */
/* Guided Intake Showcase */

.intake-showcase {
    background: #f8f9fb;
}

.intake-showcase__intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-align: left;
}

/* GRID */
.intake-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* CARDS */
.intake-showcase__card {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

/* IMAGE */
.intake-showcase__image-frame {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.intake-showcase__image-frame picture,
.intake-showcase__image-frame img {
    display: block;
    width: 100%;
    height: 100%;
}

.intake-showcase__image-frame img {
    object-fit: contain;
    object-position: center;
}

/* CONTENT */
.intake-showcase__content {
    padding: 1.4rem 1.6rem 1.6rem;
}

.intake-showcase__eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5a00;
}

.intake-showcase__content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.intake-showcase__content p {
    margin: 0;
    line-height: 1.65;
    color: #4b5563;
}
.intake-showcase__image-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.intake-showcase__image-frame picture,
.intake-showcase__image-frame img {
    display: block;
    width: 100%;
    height: 100%;
}

.intake-showcase__image-frame img {
    object-fit: contain;
    object-position: center;
}
/* HOVER (desktop only) */
@media (hover: hover) and (pointer: fine) {
    .intake-showcase__card {
        transition:
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .intake-showcase__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 65px rgba(15, 23, 42, 0.12);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .intake-showcase__intro {
        max-width: 420px;
    }

    .intake-showcase__card {
        border-radius: 22px;
    }

    .intake-showcase__image-frame {
        aspect-ratio: 16 / 9;
    }

    .intake-showcase__content {
        padding: 1.1rem 1.2rem 1.3rem;
    }
}
/* ========================================= */
/* OUTCOMES SECTION */
/* ========================================= */

.outcomes-section {
    background: #f8fafc;
}

.outcomes-header {
    max-width: 820px;
    margin: 0 auto 4rem;
    text-align: center;
}

.outcomes-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.outcomes-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
}

.outcomes-editorial {
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-feature {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.outcome-feature:last-child {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.outcome-feature__title h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0;
}

.outcome-feature__body p {
    margin: 0;
    color: #4b5563;
    line-height: 1.9;
    font-size: 1.02rem;
}

@media (max-width: 768px) {
    .outcomes-header {
        text-align: left;
        margin-bottom: 2.5rem;
    }

    .outcome-feature {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .outcome-feature:nth-child(even) .outcome-feature__title,
    .outcome-feature:nth-child(even) .outcome-feature__body {
        order: initial;
    }

    .outcome-feature__title h3 {
        font-size: 1.2rem;
    }

    .outcome-feature__body p {
        font-size: 1rem;
        line-height: 1.75;
    }
}
/* ========================================= */
/* REPORT PACKAGE SECTION */
/* ========================================= */

.report-package {
    background: #ffffff;
}

.report-package__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.report-package__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.report-package__intro,
.report-package__note {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
    color: #4b5563;
}

.report-package__note {
    margin-top: 1rem;
    font-size: 0.98rem;
}

.report-package__list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.report-package__row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.report-package__number {
    font-size: 0.95rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.08em;
}

.report-package__content h3 {
    margin-bottom: 0.55rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.report-package__content p {
    color: #4b5563;
    line-height: 1.75;
    max-width: 680px;
}

@media (max-width: 768px) {
    .report-package__header {
        text-align: left;
    }

    .report-package__row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .report-package__content h3 {
        font-size: 1.15rem;
    }
}
/* ========================================= */
/* WHY ACCURACY MATTERS */
/* ========================================= */

.accuracy-section {
    background: #f8fafc;
}

.accuracy-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.accuracy-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.accuracy-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #4b5563;
}

.accuracy-list {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.accuracy-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.accuracy-title h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
}

.accuracy-body p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.accuracy-body p:last-child {
    margin-bottom: 0;
}

.accuracy-outro {
    max-width: 760px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

@media (max-width: 768px) {
    .accuracy-header {
        text-align: left;
        margin-bottom: 2.5rem;
    }

    .accuracy-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .accuracy-title h3 {
        font-size: 1.2rem;
    }

    .accuracy-body p {
        line-height: 1.75;
    }

    .accuracy-outro {
        text-align: left;
    }
}
/* ========================================= */
/* AFTER ORDER REASSURANCE */
/* ========================================= */

.after-order {
    background: #ffffff;
}

.after-order__box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.25rem;
    border-radius: 28px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.after-order__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.after-order__title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.after-order__text {
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.after-order__aside {
    padding-left: 2rem;
    border-left: 1px solid rgba(15, 23, 42, 0.12);
}

.after-order__aside p {
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .after-order__box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        border-radius: 22px;
    }

    .after-order__title {
        font-size: 1.35rem;
    }

    .after-order__aside {
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.12);
    }
}
/* ========================================= */
/* TRUST PROOF SECTION */
/* ========================================= */

.trust-proof {
    background: #f8fafc;
}

.trust-proof__header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.trust-proof__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.trust-proof__intro {
    max-width: 740px;
    margin: 0 auto;
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
}

.trust-proof__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.trust-proof__item {
    background: #ffffff;
    padding: 2rem;
}

.trust-proof__item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.trust-proof__item p {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
}

.trust-proof__support {
    max-width: 820px;
    margin: 2.5rem auto 0;
    text-align: center;
    color: #374151;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .trust-proof__header {
        text-align: left;
    }

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

    .trust-proof__item {
        padding: 1.5rem;
    }

    .trust-proof__support {
        text-align: left;
    }
}
/* ========================================= */
/* FAQ SECTION */
/* ========================================= */

.faq-section {
    background: #ffffff;
}

.faq-header {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.faq-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.faq-feature {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.25rem;
    border-radius: 28px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-feature__label {
    margin-bottom: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.faq-feature h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    line-height: 1.3;
}

.faq-feature p {
    max-width: 760px;
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.faq-feature p:last-child {
    margin-bottom: 0;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.faq-item {
    padding: 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.faq-item:nth-child(odd) {
    border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.faq-item .question {
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-item .answer {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
}

.faq-disclaimer {
    max-width: 900px;
    margin: 1.5rem auto 0;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-header {
        text-align: left;
    }

    .faq-feature {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .faq-feature h3 {
        font-size: 1.25rem;
    }

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

    .faq-item {
        padding: 1.5rem 0;
    }

    .faq-item:nth-child(odd) {
        border-right: none;
    }
}
/* section styles report gallery */
/* ========================================= */
/* REPORT PACKET PREVIEW */
/* ========================================= */

.report-packet-section {
    background: #f8fafc;
}

.report-packet-header {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.report-packet-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.report-packet-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #4b5563;
    line-height: 1.75;
}

/* Carousel container */
.report-packet-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1rem;
    padding: 0.25rem 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}

/* Desktop scrollbar indicator */
.report-packet-grid::-webkit-scrollbar {
    height: 8px;
}

.report-packet-grid::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 999px;
}

.report-packet-grid::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 999px;
}

/* Cards: desktop shows up to 3 across */
.report-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    padding: 1rem;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.report-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    background: #f3f4f6;
}

.report-card-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    padding-bottom: 0.35rem;
}

.report-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.report-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
    padding-bottom: 0;
}

/* Swipe hint */
.report-swipe-hint {
    display: flex;
    justify-content: flex-end;
    max-width: 1000px;
    margin: 0 auto 0.75rem;
    padding-right: 0.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
}

.report-swipe-hint span {
    margin-left: 0.35rem;
}

/* Static carousel dots */
.report-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.report-carousel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #cbd5e1;
    transition:
        width 180ms ease,
        background-color 180ms ease,
        opacity 180ms ease;
}

.report-carousel-dots span.active {
    width: 18px;
    background: #64748b;
}

.report-packet-cta {
    padding-top: 2rem;
}

/* Tablet: 2 cards across */
@media (max-width: 900px) {
    .report-card {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
}

/* Mobile: focused swipe cards */
@media (max-width: 600px) {
    .report-packet-header {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .report-swipe-hint {
        max-width: 420px;
    }

    .report-packet-grid {
        gap: 1rem;
        scroll-padding-left: 1rem;
        padding: 0.25rem 1rem 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        max-width: none;
    }

    .report-packet-grid::-webkit-scrollbar {
        display: none;
    }

    .report-card {
        flex: 0 0 82%;
        max-width: 340px;
        border-radius: 22px;
    }

    .report-card:hover {
        transform: none;
    }

    .report-desc {
        font-size: 0.92rem;
    }
}
/* Featured full report card */
.report-feature-card {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 1.25rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.report-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.14);
}

.report-feature-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: #f3f4f6;
}

.report-feature-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.report-feature-content {
    padding: 1rem;
}

.report-feature-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.report-feature-desc {
    color: #4b5563;
    line-height: 1.75;
    padding-bottom: 1rem;
}

.report-feature-link {
    display: inline-flex;
    font-weight: 700;
    color: #111827;
}

/* Carousel subheader */
.report-carousel-header {
    max-width: 1000px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-end;
}

.report-carousel-header h3 {
    font-size: 1.25rem;
    margin: 0;
    padding-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .report-feature-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: 24px;
        margin-bottom: 2rem;
    }

    .report-feature-title {
        font-size: 1.3rem;
    }

    .report-feature-content {
        padding: 0.25rem;
    }

    .report-carousel-header {
        display: block;
    }

    .report-swipe-hint {
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
}
@media (min-width: 769px) {
    .report-swipe-hint {
        display: none;
    }
}
.final-cta-card {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 2rem;
    background-color: white;
}
h2.price {
    font-size: 2.2rem;
}
.cta-adjustments {
    padding: 20px 0;
}
#cta .pricing-buttons .pricing-btn.pricing-btn-full {
    width: 100%;
}
/* ========================================= */
/* AD HERO GRID */
/* ========================================= */

#hero .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
    text-align: left;
}

#hero .hero-copy {
    min-width: 0;
}

#hero .hero-price-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    text-align: center;
}

#hero .hero-price-eyebrow {
    margin: 0 0 0.75rem;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

#hero .hero-price-title {
    margin: 0;
    padding: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.2;
}

#hero .hero-price {
    margin: 1rem 0 0.75rem;
    font-size: clamp(3rem, 7vw, 2.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: #111827;
}

#hero .hero-price-details {
    max-width: 320px;
    margin: 0 auto 1.25rem;
    padding: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.55;
}

#hero .hero-price-btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    #hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    #hero .hero-price-card {
        max-width: 440px;
        margin: 0 auto;
        border-radius: 22px;
    }
}
