/* ==========================================
   Molecular You - Premium Design System
   Aesthetic Tokens, Layouts, and Components
   ========================================== */

html {
    scroll-behavior: smooth;
}

/* Bypass standard theme header padding on Paid Social template */
body.page-template-template-paid-social .site-container,
body.page-template-template-paid-social-ca .site-container {
    padding-top: 0 !important;
}

:root {
    /* Harmonious Curated Color Palette */
    --color-primary: #12344D;
    /* Deep Slate Blue - Trust & Authority */
    --color-secondary: #56819B;
    /* Muted Steel Blue - Balance & Sophistication */
    --color-accent: #E2ECF3;
    /* Soft Ice Blue - Backgrounds & Borders */
    --color-white: #FFFFFF;

    --color-dark-blue: #18374B;
    --color-medium-blue: #3B5464;
    --color-light-blue: #61859d;
    --color-super-light-blue: #d5e6ee;
    --color-text: var(--color-medium-blue);

    --color-turquoise: #8ccfcf;
    /* Typography */
    --font-heading: 'Gill Sans Nova', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    --font-body: 'Gill Sans Nova', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-spacing: 100px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(18, 52, 77, 0.04);
    --shadow-md: 0 12px 32px rgba(18, 52, 77, 0.08);
    --shadow-lg: 0 20px 48px rgba(18, 52, 77, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --btn-primary: var(--color-dark-blue);

    --gutter-width: clamp(1.5625rem, 0.8333rem + 3.2407vw, 3.75rem);
}

/* Base Reset & Core Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: white;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-wrap: pretty;
}

/* Shared Layout Containers */
.section-container {
    max-width: 1320px;
    margin: 0 auto;
}

@media (max-width: 1439px) {
    .section-container {
        padding: 0 var(--gutter-width);
    }
}

section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    position: relative;
}

/* Global Typography & Headings */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2rem, 1.5385rem + 2.0513vw, 4rem);
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.625rem, 1.4231rem + 0.8974vw, 2.5rem);
    line-height: 115%;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-dark-blue);
}

h3 {
    font-size: clamp(1.375rem, 1.2885rem + 0.3846vw, 1.75rem);
    margin-bottom: 12px;
    color: var(--color-dark-blue);
}

p {
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
    margin-bottom: 16px;
}

a {
    &.text-link {
        text-decoration: underline;
    }
}

img {
    display: block;
    height: auto;
    width: 100%;
}

.text-center {
    text-align: center;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-medium-blue);
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.eyebrow-light {
    color: var(--color-accent);
}

.section-subtext {
    margin: 0 auto 30px auto;
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
}

.text-highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

/* Premium Button Component System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-full-width {
    width: 100%;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: transparent;
    /* transform: translateY(-2px); */
    /*box-shadow: var(--shadow-md);*/
    color: var(--color-medium-blue);
    border-color: var(--color-medium-blue);
}

.btn-primary-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-primary-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    /* transform: translateY(-2px); */
}

.btn-secondary-light {
    background-color: rgba(246, 246, 246, 0.5);
    color: var(--color-primary);
}

.btn-secondary-light:hover {
    background-color: var(--color-accent);
    /* transform: translateY(-2px); */
    box-shadow: var(--shadow-md);
}

.btn-hollow {
    background-color: transparent;
    border-color: var(--color-medium-blue);
    color: var(--color-medium-blue);
}

.btn-hollow:hover {
    background-color: var(--color-secondary);
    color: white;
    /* transform: translateY(-2px); */
}

.btn-hollow-light {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-hollow-light:hover {
    background-color: white;
    color: var(--color-secondary);
    /* transform: translateY(-2px); */
}

/* Utility Helper Classes */
.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.ps_hr {
    border: none;
    border-top: 1px solid var(--color-super-light-blue);
    margin: 20px 0px;
    padding: 0;
}

.paid-social__site-main {
    max-width: 1920px;
    margin: 0 auto;
}

/* ==========================================
   2. Hero Section Styles
   ========================================== */
.paid-social__hero-section {
    display: flex;
    flex-direction: column;
    background-image: url('../images/paid-social/hero-bg-mobile.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    border-radius: 0px 0px 32px 32px;

    aspect-ratio: 1/2;
    height: auto;
    min-height: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 90px;

    & .btn-primary {
        gap: 10px;

        &:hover {
            background-color: var(--color-turquoise);
            border-color: var(--color-turquoise);
            color: var(--color-dark-blue);
            gap: 15px;
        }
    }
}

@media (min-width: 400px) and (max-width: 767px) {
    .paid-social__hero-section {
        max-height: 920px;
    }
}

@media (min-width: 768px) {
    .paid-social__hero-section {
        background-image: url('../images/paid-social/hero-bg.jpg');
        aspect-ratio: 16/9;
        min-height: 640px;
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
}

.hero-content {
    text-align: center;
}

@media (min-width: 768px) {
    .hero-container {
        justify-content: center;
    }

    .hero-content {
        text-align: left;
        max-width: 45%;
    }
}

.hero-logo {
    display: flex;
    justify-content: flex-start;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

@media(max-width: 1439px) {
    .hero-logo {
        padding: 0 var(--gutter-width);
    }
}

@media(min-width: 768px) {
    .hero-logo {
        position: static;
        top: 0px;
        left: 0px;
    }
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.hero-content p {
    font-size: clamp(1rem, 0.9135rem + 0.3846vw, 1.375rem);
    margin-bottom: 36px;
}

.hero-actions .btn {
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
}

/* Hero Right Graphic Mockup */
.hero-graphic-container {
    display: none;
}

@media(min-width: 1024px) {
    .hero-graphic-container {
        display: block;
    }
}

.hero-badge {
    position: absolute;
}





.badge-1 {
    top: 13%;
    right: 18%;
    max-width: 232px;

    top: 9vw;
    right: 22vw;
}

.badge-2 {
    bottom: 30%;
    right: 10%;
    max-width: 156px;

    bottom: 36%;
    right: 12%;
}

@media(min-width: 1024px) and (max-width: 1439px) {
    .badge-1 {
        width: 15%
    }

    .badge-2 {
        width: 12%
    }
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.badge-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}

/* Bottom Overlay Bar - Glassmorphism */
.hero-overlay-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: var(--container-width);



    padding: 5px 10px;
    z-index: 10;
    color: #3b5464;
    text-align: center;
}

.overlay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    display: inline-flex;
    flex-wrap: nowrap;
    background: rgba(246, 252, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 48px;

    text-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding: 10px 25px;
}

@media(min-width: 1024px) {
    .overlay-grid {
        width: auto;
    }
}

.overlay-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px;
}

.overlay-item:not(:last-child) {
    border-right: 1px solid var(--color-accent);
}

.overlay-icon {
    display: flex;
    align-items: center;
    line-height: 1;

}

@media(max-width: 767px) {
    .overlay-icon {
        width: 16px;
    }
}

.overlay-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.8173rem + 0.2564vw, 1.125rem);
    color: var(--color-dark-blue);
    padding-top: 3px;
}

.overlay-icon svg path {
    stroke: var(--color-medium-blue) !important;
}


/* ==========================================
   3. Test Profiles (Carousel 1)
   ========================================== */
.paid-social__test-profiles-section {

    padding-top: 60px;
    padding-bottom: 120px;
    /* Offset for hero overlay bar */

    & .intro {
        text-align: center;
        max-width: 870px;
        margin: 0 auto;
        text-wrap: balance;

        & p:not(.eyebrow) {
            font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
        }
    }

    & .section-subtext {
        line-height: 150%;
    }

    & .splide__pagination {
        bottom: -30px;
    }

    & .splide__pagination__page.is-active {
        background-color: var(--color-medium-blue);
    }
}

@media (min-width: 768px) {
    .paid-social__test-profiles-section {
        padding-top: 120px;
    }
}

.profile-card {
    position: relative;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid var(--color-accent);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 312/424;
    cursor: pointer;

    &.card-dark-text {
        background-color: var(--color-super-light-blue);
    }

    &.card-dark-text h3,
    &.card-dark-text p {
        color: var(--color-medium-blue);
    }

    &.card-light-text {
        background-color: var(--color-primary);
    }

    &.card-light-text h3,
    &.card-light-text p {
        color: white;
    }

    h3,
    p {
        transition: color 0.3s ease-in-out;
    }

    &::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(140, 207, 207, 0.25);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    &.card-light-text::before {
        background: linear-gradient(180deg, rgba(24, 55, 75, 0) 30%, rgba(24, 55, 75, 0.65) 100%);
    }

    &.card-dark-text::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.65) 100%);
    }
}

.btn-slide-toggle svg g {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 20px 16px;
    /* Matches the exact drawing center (x=20, y=16) of the SVG's inner graphics */
}

.btn-slide-toggle svg path {
    shape-rendering: geometricPrecision !important;
    /* Forces gorgeous, smooth anti-aliasing in all browsers (overriding Figma's 'crispEdges' setting) */
}

/* Hides the choppy, hardcoded Figma white/light-blue outer stroke path */
.btn-slide-toggle svg path:not(.svg-bg):not(.svg-plus) {
    display: none !important;
}

.btn-slide-toggle .svg-bg {
    transition: fill 0.3s ease, fill-opacity 0.3s ease;
}

.btn-slide-toggle .svg-plus {
    transition: stroke 0.3s ease;
}

.profile-card:hover {
    &::after {
        opacity: 0.5;
        /* Subtle card highlight on hover before clicking */
    }

    .btn-slide-toggle .svg-bg {
        fill: #8ccfcf;
        fill-opacity: 0.25;
    }
}

/* Card Open State (Triggered on click) */
.profile-card.is-open {
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);

    &::after {
        background-color: rgba(24, 45, 60, 0.5);
        /* Sleek, dark grey-blue overlay for high contrast text readability */
        opacity: 1;
    }

    & h3,
    & p {
        color: white !important;
        /* Force all title and description text to fade to brilliant white on open */
    }

    & p {
        max-height: 120px;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }

    .btn-slide-toggle svg g {
        transform: rotate(45deg);
        /* Rotating the group around (20px, 16px) ensures a perfectly centered, wobble-free spin in position! */
    }

    .btn-slide-toggle .svg-bg {
        fill: var(--color-dark-blue);
        /* Sleek semi-transparent white background circle on open, matching the designer's spec */
        fill-opacity: 1;
    }

    .btn-slide-toggle .svg-plus {
        stroke: white;
    }
}

.profile-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.profile-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 0px;
    z-index: 2;
    /* Positions the text content stack beautifully on top of the z-index: 1 overlay */
}

.profile-card-content h3 {
    font-size: 28px;
    margin-bottom: 0px;
}

.profile-card-content p {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    font-size: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
    margin-bottom: 0;
    margin-top: 10px;
    transition: max-height 350ms ease-in-out, opacity 350ms ease-in-out, margin-top 350ms ease-in-out, visibility 350ms ease-in-out;
    overflow: hidden;
    text-wrap: balance;
}

.btn-slide-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 32px;
    width: 32px;
    z-index: 2;
    cursor: pointer;
    border: 0;
    background-color: transparent;
}

/* Custom Splide Overrides */
.splide__arrow {
    background: var(--color-white);
    border: 1px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    opacity: 1;
    width: 48px;
    height: 48px;
    transition: var(--transition-smooth);
}

.splide__arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================
   4. Test Kit Section
   ========================================== */


.kit-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.kit-image-wrapper {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-accent);
}

.kit-main-image {
    width: 100%;
    border-radius: var(--border-radius-sm);
    display: block;
}

.kit-sub {
    font-size: clamp(1.125rem, 1.0673rem + 0.2564vw, 1.375rem);
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.kit-intro {
    font-size: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 16px;
}

.kit-features {
    list-style: none;
    margin-bottom: 20px;
}

.kit-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
    color: var(--color-dark-blue);
    font-weight: 500;
    margin-bottom: 12px;
}

ul.ul-bullet-checks {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
}

ul.ul-bullet-checks li {
    position: relative;
    padding-left: 32px;
    /* Space for the custom bullet */
    margin-bottom: 10px;
    line-height: 1.5;
}

ul.ul-bullet-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    /* Adjust this to align with your font's x-height */
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23d5e6ee' d='M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0'/%3E%3Cpath stroke='%233b5464' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m15.142 9.983-4.267 4.267-1.455-1.455'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.kit-pricing {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .kit-pricing {
        justify-content: flex-start;
    }
}

.price-val {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-primary);
}

.price-curr {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-medium-blue);
}

.kit-actions .btn {
    font-size: 18px;
}



/* ==========================================
   5. Trusted & Logos Section
   ========================================== */
.paid-social__logos-section {
    padding: 60px 0;
    padding-top: 0;
}

@media (min-width: 768px) {
    .paid-social__logos-section {
        padding-top: 60px;
    }
}

.logo-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #8A9CAE;
    font-weight: 500;
    letter-spacing: -0.02em;
    user-select: none;
}

.partner-logos-container {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 599px) {
    .partner-logos-container {
        overflow-x: auto;

        & img {
            min-width: 1052px;
            width: 100%;
        }
    }
}

/* ==========================================
   6. Highlight / Comparison Table Section
   ========================================== */
.paid-social__highlight-banner-section {
    & .section-container {
        padding: 0;
    }

    & .inner {
        background: radial-gradient(ellipse 120% 80% at 50% 30%, #eaf5fa 0%, #ccdfe9 100%);
        border-radius: 24px;
        padding: 40px 40px 100px;
    }
}

@media(max-width: 767px) {
    .paid-social__highlight-banner-section {
        padding-top: 60px;

        & .inner {
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 40px;
        }
    }
}

.comparison-header {
    max-width: 870px;
    text-align: center;
    margin: 0 auto 150px auto;
    text-wrap: balance;
}

@media (max-width: 767px) {
    .comparison-header {
        margin-bottom: 40px;
    }
}

.comparison-table-wrapper {
    overflow: visible;
    background-color: transparent;
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #f5fafc;
    background-blend-mode: soft-light, normal;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border-radius: 24px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;

    /* Acts as the absolute positioning anchor for the ::before card */
}

/* The Beautiful Floating Breakout Card */
.comparison-table::before {
    content: "";
    position: absolute;
    top: -70px;
    /* Extends 24px above the table */
    bottom: -25px;
    /* Extends 24px below the table */
    left: 25%;
    /* Math matches the left edge of the Highlighted column */
    width: 31%;
    /* Math matches the width of the Highlighted column (Molecular You) */


    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(18, 52, 77, 0.08);
    z-index: 1;
    /* Sits behind cell text but on top of the wrapper/inner bg */
    border: 1px solid rgba(18, 52, 77, 0.04);
    pointer-events: none;
    /* Make sure users can hover/interact with table elements */


    background: rgba(255, 255, 255, 0.75);
    /* backdrop-filter: blur(12px); */
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(180, 210, 225, 0.25);
}

.comparison-table th,
.comparison-table td {
    padding: 24px 16px;
    border-bottom: 1px solid var(--color-super-light-blue);
    font-size: 18px;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    /* Forces content to sit on top of the ::before white card */
}

.comparison-table td.feature-name {
    font-size: 16px;
}

.comparison-table th {
    border: 0;
    padding-bottom: 0;
    text-align: center;
}

/* Feature column on the left */
.col-feature,
.feature-name {
    width: 25%;
    text-align: left !important;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-dark-blue);
}



th.col-feature {
    visibility: hidden;
    text-indent: -9999px;

}

.feature-name {
    position: relative;
    border: 0;

    &::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0px;
        height: 5px;
        width: 25px;
        background-color: #f5fafc;
    }
}

.comparison-table tr:last-child td.feature-name {
    &::before {
        display: none;
    }
}

@media (min-width: 768px) {
    td.feature-name {
        padding-left: 50px;
    }
}

.comparison-table tr:last-child .feature-name::after {
    display: none;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

/* Base style for regular competitor columns */
.col-other,
.comparison-table td:not(.highlighted):not(.feature-name) {
    width: 22%;
}

.col-other h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

th.col-other p,
th.col-primary p {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 300;
}

.comparison-table th.highlighted {
    position: relative;
    text-align: center;
}

@media(max-width: 767px) {
    .comparison-table th {
        padding-bottom: 0;

        & p {
            margin-bottom: 0;
        }
    }
}

/* Highlighted Column Card Style (Molecular You) */
.comparison-table th.highlighted,
.comparison-table td.highlighted {
    width: 31%;
    background-color: transparent;
    /* Background is beautifully handled by the ::before pseudo-element */
}

.comparison-table td.highlighted {
    font-weight: 400;
}

.comparison-table td.highlighted.biomarkers {
    font-size: 24px;
}

.col-primary.highlighted h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 4px;
}

@media(max-width: 767px) {
    .col-primary.highlighted h3 {
        font-size: 18px;
    }
}

.col-primary.highlighted p {
    font-size: 13px;
}

/* Check Icons inside circular badges */
.check-positive,
.check-negative {
    text-align: center;
}

.table-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
}

.table-my-logo {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    width: 100%;
}

/* Responsive Sticky Swiper on Mobile */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        padding: 24px 12px 24px 12px;
        background-color: #F2FAFD;
        /* Soft background context for mobile swiping */
        border-radius: 16px;
    }

    /* Disable the absolute breakout card on mobile since sticky cells act as the card */
    .comparison-table::before {
        display: none !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 13px;
    }

    /* Hide the text header on mobile and center the logo vertically/horizontally */
    .col-primary.highlighted h3,
    .col-primary.highlighted p {
        display: none !important;
    }

    .table-my-logo {
        position: static !important;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100% !important;
    }

    /* Lock the first column (Features) */
    .comparison-table td:first-child,
    .comparison-table th:first-child {
        position: sticky;
        left: 0;
        background-color: #F2FAFD;
        z-index: 5;
        min-width: 120px;
        width: 120px;
        box-shadow: 4px 0 8px rgba(18, 52, 77, 0.02);
    }

    /* Lock the second column (Molecular You Highlighted Card) */
    .comparison-table th.highlighted,
    .comparison-table td.highlighted {
        position: sticky;
        left: 120px;
        background-color: #ffffff !important;
        z-index: 4;
        min-width: 150px;
        width: 150px;
        box-shadow: 8px 0 20px rgba(18, 52, 77, 0.06), -4px 0 12px rgba(18, 52, 77, 0.03);
    }

    /* Give the top sticky cell rounded top corners */
    .comparison-table th.highlighted {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    /* Give the bottom sticky cell rounded bottom corners */
    .comparison-table tr:last-child td.highlighted {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    /* Competitors column width on swipe */
    .comparison-table th.col-other,
    .comparison-table td:not(.highlighted):not(:first-child) {
        min-width: 130px;
        width: 130px;
    }
}

/* Extra Tight Swiper on Narrow Mobile Portrait Screens */
@media (max-width: 479px) {

    .comparison-table th,
    .comparison-table td {
        padding: 12px 6px;
        font-size: 11.5px;
    }

    /* Narrow Column 1 (Features) */
    .comparison-table td:first-child,
    .comparison-table th:first-child {
        min-width: 95px;
        width: 95px;
    }

    /* Narrow Column 2 (Molecular You Card) */
    .comparison-table th.highlighted,
    .comparison-table td.highlighted {
        left: 95px;
        min-width: 105px;
        width: 105px;
    }

    /* Squeeze the competitor columns slightly for better swipe view */
    .comparison-table th.col-other,
    .comparison-table td:not(.highlighted):not(:first-child) {
        min-width: 115px;
        width: 115px;
    }
}


/* .feature-name {
    font-weight: 400;
} */

.check-positive .table-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none' viewBox='0 0 40 40'%3E%3Cpath fill='%239cd4d4' fill-opacity='.5' d='M5 20c0-8.284 6.716-15 15-15s15 6.716 15 15-6.716 15-15 15S5 28.284 5 20'/%3E%3Cpath stroke='%233d8b8b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m25.237 16.638-7.112 7.112-2.424-2.424'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 40px;
    width: 40px;
    text-indent: -9999px;
    overflow: hidden;
}

.check-negative .table-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none' viewBox='0 0 40 40'%3E%3Cpath fill='%23f5c6c6' fill-opacity='.5' d='M5 20c0-8.284 6.716-15 15-15s15 6.716 15 15-6.716 15-15 15S5 28.284 5 20'/%3E%3Cpath stroke='%23d62929' stroke-linecap='round' stroke-width='2' d='m25.772 14.89-5.303 5.304m0 0-5.304 5.303m5.304-5.303 5.303 5.303m-5.303-5.303-5.304-5.303'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 40px;
    width: 40px;
    text-indent: -9999px;
    overflow: hidden;
}

.table-icon {
    font-weight: bold;
    margin-right: 4px;
}

.footer-cta-cell {
    background-color: rgba(255, 255, 255, 0.04);
    text-align: center;
    padding: 30px !important;
}

/* ==========================================
   7. Core Pillars (Three Simple Steps)
   ========================================== */

.paid-social__why-us-section {
    padding-top: 0;
}

.section-title-block {
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media(max-width: 767px) {
    .steps-grid {
        gap: 20px;
    }
}

.step-card {
    box-shadow: 0px 4px 16px -4px rgba(59, 84, 20, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px 30px;
    position: relative;
    transition: var(--transition-smooth);

    background: #F2F8FB;
    background: linear-gradient(180deg, rgba(242, 248, 251, 0.7) 0%, rgba(248, 252, 252, 1) 100%);

    & p {
        margin: 0;
    }
}

.step-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;

}

.step-badge {
    background-color: #8ccfcf;
    color: var(--color-dark-blue);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 0.7212rem + 0.1282vw, 0.875rem);
    font-weight: 600;
    padding: 4px 12px 1px;
}

.step-image {
    margin-bottom: 0px;

    & svg {
        display: block;

    }
}


.step-content h3 {
    font-size: clamp(1.375rem, 1.2885rem + 0.3846vw, 1.75rem);
    margin-bottom: 12px;
}

.step-content p {
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
    margin-bottom: 0;
}

/* ==========================================
   8. Personalized Plan / Report Preview
   ========================================== */
.paid-social__report-preview-section {
    padding-top: 0;
    text-wrap: balance;

    & h2 {
        font-size: clamp(1.625rem, 1.4808rem + 0.641vw, 2.25rem);
        letter-spacing: -0.5%;
    }

    & p:not(.eyebrow) {
        font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
        letter-spacing: -0.5%;
        line-height: 150%;
        font-weight: 500;

        & small {
            font-size: 14px;
        }
    }

    & img {
        border-radius: var(--border-radius-sm);
    }
}

@media(max-width: 767px) {

    .paid-social__report-preview-section h2,
    .paid-social__report-preview-section p {
        text-wrap: auto
    }
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.report-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.report-feature-item h4 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

/* Report Interactive Scorecard Mockup */
.report-card-preview {
    background-color: var(--color-bg);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.report-header-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.report-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

.report-tag {
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.report-actions {
    margin-top: 30px;
}

.report-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.report-metric {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.metric-label {
    width: 120px;
    font-weight: 600;
    color: var(--color-primary);
}

.metric-bar-wrapper {
    flex-grow: 1;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: var(--border-radius-full);
    overflow: hidden;
}

.metric-bar {
    height: 100%;
    border-radius: var(--border-radius-full);
}

.metric-bar.val-good {
    background-color: var(--color-success);
}

.metric-bar.val-warning {
    background-color: var(--color-warning);
}

.metric-bar.val-danger {
    background-color: var(--color-danger);
}

.metric-score {
    width: 100px;
    text-align: right;
    font-weight: 600;
    color: var(--color-success);
    font-size: 0.95rem;
}

.metric-score.score-warning {
    color: var(--color-warning);
}

.metric-score.score-danger {
    color: var(--color-danger);
}


/* ==========================================
   9. Mobile App Section
   ========================================== */
.paid-social__mobile-app-section {
    padding-top: 0;
    text-wrap: balance;
    color: #3b5464;

    & h2 {
        font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
    }

    & p:not(.eyebrow) {
        font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
        line-height: 150%;
    }

    & ul li {
        font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
        line-height: 140%;
        font-weight: 500;
        margin-bottom: 20px;

        &:last-of-type {
            margin-bottom: 0;
        }
    }

    & h3 {
        font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
        font-weight: 700;
        margin-bottom: 20px;
    }

    & img {
        border-radius: 8px;
    }
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Beautiful Interactive Phone Screen CSS Mockup */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: var(--color-primary);
    border: 12px solid #2B3A4A;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.phone-screen {
    height: 100%;
    background-color: var(--color-white);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.app-score-circle {
    width: 140px;
    height: 140px;
    border: 8px solid var(--color-accent);
    border-top-color: var(--color-secondary);
    border-radius: var(--border-radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
}

.app-score-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.app-score-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.app-action-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-bg);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
}

.app-action-item.checked {
    opacity: 0.6;
    text-decoration: line-through;
}

.app-action-icon {
    font-weight: bold;
    color: var(--color-secondary);
}

.app-features-list {
    list-style: none;
    margin-bottom: 40px;

    &:last-of-type {
        margin-bottom: 0;
    }
}

.app-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.app-list-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* ==========================================
   10. Testimonials / Reviews (Carousel 2)
   ========================================== */
.paid-social__testimonials-section {
    padding-top: 0;

    & .section-container {
        max-width: 1100px;
    }

    & .splide__pagination {
        bottom: -30px;
    }

    & .splide__arrow svg {
        height: 18px;
        width: 18px;
        fill: none;

    }


    & .splide__pagination__page.is-active {
        background-color: var(--color-medium-blue);
    }
}

.splide__arrow--prev svg {
    transform: none;
}

@media (max-width: 767px) {
    .paid-social__testimonials-section {
        padding-bottom: 120px;
    }

    .splide__arrows {
        display: flex;
        justify-content: center;
        gap: 30px;
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: -110px;
    }

    .splide__arrow {
        position: static;
        transform: none;
    }
}

.testimonial-header {
    margin-bottom: 60px;
}

.trustpilot-rating {
    max-width: 352px;
    margin: auto;
}

@media(min-width: 768px) {
    .splide__arrow--prev {
        left: 0px;
        transform: translate(-50%, -50%);
    }

    .splide__arrow--next {
        right: 0px;
        transform: translate(50%, -50%);
    }
}



@media (min-width: 1300px) {
    #splide-testimonials .splide__arrow--prev {
        left: -100px;
    }

    #splide-testimonials .splide__arrow--next {
        right: -100px;
    }
}



.testimonial-card {
    background-color: #F6F6F6;
    border-radius: var(--border-radius-md);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.testimonial-text {
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
    color: var(--color-primary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================
   11. Call-To-Action Banner
   ========================================== */
.paid-social__cta-banner-section .section-container .cta-grid {
    background-image: url('../images/paid-social/callout-bg-mobile.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    overflow: hidden;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 312/552;
    text-align: left;
    padding: 30px;

    & .btn-secondary-light {
        gap: 10px;

        &:hover {
            gap: 15px;
        }
    }

    & .cta-container {
        display: flex;
        gap: 16px;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .paid-social__cta-banner-section {
        text-align: left;

        & .section-container .cta-grid {
            background-image: url('../images/paid-social/callout-bg.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-color: var(--color-dark-blue);
            aspect-ratio: 1320/742;
            text-align: left;
            justify-content: flex-start;
            padding: 80px 60px;

            & .cta-container {
                justify-content: flex-start;
            }
        }
    }
}

@media (max-width: 767px) {
    .cta-contact {
        display: none !important;
    }
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text-side h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 1.5385rem + 2.0513vw, 4rem);
    margin-bottom: 20px;
}

.cta-text-side p {
    color: var(--color-accent);
    font-size: clamp(1rem, 0.9135rem + 0.3846vw, 1.375rem);
    margin-bottom: 36px;
    max-width: 580px;
}

.cta-image-side {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bubble {
    position: absolute;
    border-radius: var(--border-radius-full);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.cb-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.cb-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
}

/* ==========================================
   12. Frequently Asked Questions (FAQ)
   ========================================== */
.paid-social__faq-section {
    padding-top: 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

@media(max-width: 767px) {
    .faq-grid {
        gap: 40px;
    }
}

.faq-content-side h2 {
    margin-bottom: 20px;
}

@media(max-width: 767px) {
    .faq-content-side {
        text-align: center;
    }

    .faq-content-side h2 {
        margin-bottom: 0px;
    }
}

.faq-accordion-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: rgba(246, 246, 246, 0.75);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.faq-item[open] {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);

    & .faq-question {
        color: var(--color-medium-blue);
    }
}

.faq-item:not([open]):hover {
    background-color: var(--color-super-light-blue);
    color: var(--color-medium-blue)
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1rem, 0.9135rem + 0.3846vw, 1.375rem);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
    color: var(--color-dark-blue);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: var(--transition-smooth);

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Crect width='31' height='31' x='31.5' y='31.5' fill='%23fff' rx='15.5' transform='rotate(-180 31.5 31.5)'/%3E%3Crect width='31' height='31' x='31.5' y='31.5' stroke='%23cecece' rx='15.5' transform='rotate(-180 31.5 31.5)'/%3E%3Cpath stroke='%2318374b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M21.25 14 16 19l-5.25-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 32px;
    width: 32px;
}

.faq-item[open] .faq-question::after {
    content: '';
    transform: translateY(-50%) rotate(360deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' fill='%23d5e6ee' rx='16'/%3E%3Cpath stroke='%2318374b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M10.75 18 16 13l5.25 5'/%3E%3C/svg%3E");
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    font-size: 1rem;
    color: #3b5464;
    transition: max-height 300ms cubic-bezier(0.25, 1, 0.5, 1), opacity 300ms ease, margin-top 300ms ease;

    & p {
        font-size: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
        line-height: 150%;
    }
}

.faq-item[open] .faq-answer {
    max-height: none;
    opacity: 1;
    margin-top: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.paid-social__faq-section .mobile-only.cta-container {
    text-align: center;
    margin-top: 0px;
}


/* Responsive Media Queries */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
    }

    .hero-grid,
    .kit-grid,
    .cta-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 767px) {

    .report-grid,
    .app-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .report-grid .report-preview-col {
        order: -1;
    }
}

@media (max-width: 768px) {

    .overlay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .overlay-item:nth-child(2) {
        border-right: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .col-feature,
    .col-primary,
    .col-other {
        width: auto;
    }
}

@media (max-width: 576px) {
    .overlay-grid {
        grid-template-columns: 1fr;
    }

    .overlay-item {
        border-right: none !important;
        border-bottom: 1px solid var(--color-accent);
    }

    .overlay-item:last-child {
        border-bottom: none;
    }
}



.splide__arrow svg {
    fill: none;
}

.splide__arrow {
    &:hover {
        background-color: var(--color-super-light-blue);
        fill: var(--color-dark-blue);
        color: var(--color-dark-blue);
    }
}

.desktop-only {
    display: none !important;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }
}

/* ==========================================
   12. Render Performance & Accessibility
   ========================================== */

/* Core Web Vitals Render Performance Optimization */
.paid-social__test-profiles-section,
.paid-social__how-it-works-section,
.paid-social__why-us-section,
.paid-social__report-preview-section,
.paid-social__mobile-app-section,
.paid-social__testimonials-section,
.paid-social__cta-banner-section,
.paid-social__faq-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* Keyboard Navigation Focus States (AODA compliance) */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-light-blue) !important;
    outline-offset: 4px !important;
}