/* Partnership Page Specific Styles (v1.5 CANONICAL)
   NOTE: All tokens defined in global styles.css - no duplicates here */

/* ===== PARTNERSHIPS HERO ===== */
.partnerships-hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--parchment) 60%, var(--alabaster) 100%);
    padding: 140px 0 0;
    position: relative;
    overflow: hidden;
}

.partnerships-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 15% 30%, rgba(161, 69, 103, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 5% 80%, rgba(33, 60, 71, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Split layout */
.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding: 40px 0 80px;
}

/* Message group: h1 + subtitle + proof line (tight intra-group spacing) */
.partnerships-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    color: var(--deep-teal);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--sv-text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-proof-line {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--berry);
    margin-bottom: 0;
}

/* Action group: CTA buttons (inter-group gap separates from message) */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Hero image with gradient fade on left edge */
.hero-image {
    position: relative;
    align-self: end;
    max-height: 520px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--parchment) 0%, transparent 30%);
    pointer-events: none;
}

.hero-cta .btn-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--sv-cta) 0%, var(--sv-cta-hover) 100%);
    border: none;
    border-radius: 12px;
    color: var(--sv-white);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(161, 69, 103, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-cta .btn-action:hover {
    background: linear-gradient(135deg, var(--sv-cta-hover) 0%, var(--berry-darker) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(161, 69, 103, 0.3);
}

.hero-cta .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    border: 2px solid var(--deep-teal);
    border-radius: 12px;
    color: var(--deep-teal);
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-cta .btn-outline-dark:hover {
    background: var(--deep-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 60, 71, 0.2);
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-text {
        padding: 20px 0 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        max-height: 380px;
        border-radius: 16px 16px 0 0;
        margin: 0 -20px;
    }

    .hero-image::after {
        background: linear-gradient(to bottom, var(--parchment) 0%, transparent 25%);
    }
}

@media (max-width: 768px) {
    .partnerships-hero {
        padding: 120px 0 0;
    }

    .partnerships-hero h1 {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
    }

    .hero-cta .btn-action,
    .hero-cta .btn-outline-dark {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-image {
        max-height: 300px;
    }
}

/* ===== ALTERNATING SECTION BACKGROUNDS ===== */
.section-wave-1,
.section-wave-2,
.section-wave-3,
.section-wave-4 {
    background: transparent;
}

/* Berry for section labels (replacing accent teal) */
.partnerships .section-label {
    color: var(--berry);
    background: rgba(161, 69, 103, 0.08);
}

.partnerships .section-label--berry {
    background: rgba(161, 69, 103, 0.12);
}

/* Primary button uses Action Brown */
.partnerships .btn-primary {
    background: var(--sv-cta);
    border-color: var(--sv-cta);
}

.partnerships .btn-primary:hover {
    background: var(--sv-cta-hover);
    border-color: var(--sv-cta-hover);
}

/* Secondary text uses semantic token (AA on white + parchment) */
.partnerships .section-header p,
.partnerships .tier-description,
.partnerships .faq-answer {
    color: var(--sv-text-secondary);
}

/* Footer contrast fixes (lighter text on dark background) */
.partnerships .footer-brand p {
    color: #B8C4C6;
}

.partnerships .footer-col ul a {
    color: #B8C4C6;
}

.partnerships .footer-col ul a:hover {
    color: #FFFFFF;
}

.partnerships .footer-bottom p {
    color: #AAB8BA;
}

/* Brown for primary CTAs only */
.partnerships .btn-action {
    background: var(--sv-cta);
    color: var(--sv-white);
    border-color: var(--sv-cta);
}

.partnerships .btn-action:hover {
    background: var(--sv-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(161, 69, 103, 0.25);
}

/* Partnership layout */
.partnership-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.tier-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Partnership tier cards */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.tier-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(33, 60, 71, 0.06);
    border: 1px solid rgba(33, 60, 71, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), transparent);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(33, 60, 71, 0.1);
}

.tier-card:hover::before {
    opacity: 1;
}

.tier-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--berry) 0%, var(--berry-dark) 100%);
    color: var(--white);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tier-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.tier-best-for {
    font-size: 0.85rem;
    color: var(--berry);
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tier-description {
    font-size: 0.95rem;
    color: var(--sv-text-secondary);
    line-height: 1.7;
}

/* ===== PARTNERSHIP JOURNEY STEPS ===== */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.journey-step {
    text-align: center;
}

.journey-step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--berry) 0%, var(--berry-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 16px rgba(33, 60, 71, 0.2);
}

.journey-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 0.9rem;
    color: var(--sv-text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Portal feature highlight (in partnership section) */
.portal-feature-highlight {
    background: var(--white);
    border-radius: 24px;
    padding: 56px;
    position: relative;
    box-shadow: 0 4px 24px rgba(33, 60, 71, 0.06);
    border: 1px solid rgba(33, 60, 71, 0.04);
}

.portal-feature-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.portal-feature-header .section-label {
    color: var(--accent-teal);
    margin-bottom: 10px;
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(14, 111, 106, 0.08);
    border-radius: 100px;
    font-size: 0.7rem;
}

.portal-feature-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--deep-teal);
    letter-spacing: -0.01em;
}

.portal-feature-header p {
    color: #566A6E;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
}

.portal-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    position: relative;
    z-index: 1;
}

.portal-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.portal-feature-icon-sm {
    padding: 12px;
    background: rgba(14, 111, 106, 0.08);
    border: 1px solid rgba(14, 111, 106, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.portal-feature-icon-sm svg {
    width: 22px;
    height: 22px;
    color: var(--accent-teal);
}

.portal-feature-item .feature-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-teal);
}

.portal-feature-item p {
    font-size: 0.875rem;
    color: #566A6E;
    line-height: 1.6;
}

/* How it works — vertical checklist */
.ops-checklist-layout {
    max-width: 680px;
    margin: 0 auto;
}

.ops-checklist-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 4px 24px rgba(33, 60, 71, 0.06);
    border: 1px solid rgba(33, 60, 71, 0.04);
}

.ops-checklist-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(33, 60, 71, 0.08);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ops-checklist-header svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

.ops-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ops-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(33, 60, 71, 0.06);
}

.ops-checklist-item:last-child {
    border-bottom: none;
    padding-bottom: 16px;
}

.ops-check-marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(14, 111, 106, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--accent-teal);
}

.ops-check-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.ops-check-content p {
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.ops-checklist-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid rgba(33, 60, 71, 0.08);
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.ops-footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(33, 60, 71, 0.25);
    flex-shrink: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--sv-text-secondary);
    line-height: 1.6;
}

/* CTA section */
.partnerships-cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.partnerships-cta .container {
    position: relative;
    z-index: 1;
}

.partnerships-cta h2 {
    color: var(--deep-teal);
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.partnerships-cta p {
    color: var(--sv-text-secondary);
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Secondary CTA - outline style for light background */
.partnerships-cta .btn-outline {
    background: transparent;
    color: var(--deep-teal);
    border: 2px solid var(--deep-teal);
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.partnerships-cta .btn-outline:hover {
    background: var(--deep-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 60, 71, 0.2);
}

/* ===== CTA VARIANTS ===== */

/* Warm variant — post-FAQ CTA */
.partnerships-cta-mid.partnerships-cta-warm {
    background: transparent;
}

/* Dark variant — bottom CTA */
.partnerships-cta--dark {
    background: linear-gradient(145deg, var(--deep-teal) 0%, var(--charcoal-blue-dark) 100%);
}

.partnerships-cta--dark h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.partnerships-cta--dark p {
    color: rgba(224, 225, 221, 0.75);
}

.partnerships-cta--dark .btn-outline {
    color: rgba(224, 225, 221, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.partnerships-cta--dark .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    box-shadow: none;
}

/* ===== MOBILE RESPONSIVE (375px - 768px) ===== */
@media (max-width: 768px) {
    /* Grids stack to single column */
    .tier-grid,
    .tier-grid-compact {
        grid-template-columns: 1fr;
    }

    .tier-grid-compact {
        gap: 20px;
    }

    .portal-feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portal-feature-highlight {
        padding: 32px 24px;
    }

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

    /* Tier cards - reduce padding */
    .tier-card {
        padding: 24px;
    }

    /* CTA section - tighter on mobile */
    .partnerships-cta {
        padding: 48px 0;
    }

    .partnerships-cta h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 8px;
    }

    /* CTA buttons stack vertically on mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Ensure tap targets meet 48px minimum */
    .partnerships .btn-action,
    .partnerships-cta .btn-outline {
        min-height: 48px;
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
    }

    /* Checklist card - tighter on mobile */
    .ops-checklist-card {
        padding: 28px 24px;
    }

    .ops-checklist-item {
        gap: 16px;
        padding: 20px 0;
    }

    .ops-checklist-footer {
        gap: 8px;
        font-size: 0.75rem;
    }

    /* FAQ items - reduce padding */
    .faq-item {
        padding: 20px;
    }

}

/* Footer heading override (h3 instead of h4 for a11y) */
.partnerships .footer-col h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

/* Small phones (375px) */
@media (max-width: 390px) {
    .tier-card {
        padding: 20px;
    }

    .partnerships-cta h2 {
        font-size: 1.375rem;
    }
}

/* Tablet breakpoint (768px) - 2 column grids */
@media (min-width: 481px) and (max-width: 768px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CORE PRINCIPLES SECTION ===== */
.core-principles-section {
    padding: 80px 0;
}

.core-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(33, 60, 71, 0.06);
}

.core-principles-card {
    padding: 48px;
    border-right: 1px solid rgba(33, 60, 71, 0.06);
    border-bottom: 1px solid rgba(33, 60, 71, 0.06);
    transition: background-color 0.4s ease;
    position: relative;
}

.core-principles-card:last-child {
    border-right: none;
}

.core-principles-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--berry-dark));
    transition: width 0.3s ease;
}

@media (hover: hover) {
    .core-principles-card:hover {
        background-color: rgba(238, 235, 229, 0.5);
    }
    .core-principles-card:hover::after {
        width: 60px;
    }
}

.core-principles-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(161, 69, 103, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--berry);
    margin-bottom: 28px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.core-principles-card--berry .card-icon {
    background: rgba(161, 69, 103, 0.22);
    color: var(--berry);
}

@media (hover: hover) {
    .core-principles-card:hover .card-icon {
        transform: scale(1.05);
        background: rgba(161, 69, 103, 0.22);
    }

    .core-principles-card--berry:hover .card-icon {
        background: rgba(161, 69, 103, 0.3);
    }
}

.core-principles-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.core-principles-card p {
    font-size: 0.9rem;
    color: var(--sv-text-secondary);
    line-height: 1.75;
}

/* Core Principles responsive */
@media (max-width: 768px) {
    .core-principles-section {
        padding: 48px 0;
    }
    .core-principles-grid {
        grid-template-columns: 1fr;
    }
    .core-principles-card {
        padding: 32px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .core-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Last item spans full width if odd count */
    .core-principles-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* Reduced motion for new sections */
@media (prefers-reduced-motion: reduce) {
    .core-principles-card,
    .core-principles-card .card-icon,
    .portal-feature-icon-sm {
        transition: none;
    }
}

/* ===== FADE-IN ANIMATIONS (JS fail-safe) ===== */
/* Visible by default (fail-safe if JS disabled) */
.fade-in-section {
    opacity: 1;
    transform: none;
}

/* Only hide when JS is enabled */
html.js .fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

html.js .fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* Reduced motion: show immediately */
@media (prefers-reduced-motion: reduce) {
    html.js .fade-in-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Override base .faq-item padding for accordion layout */
.faq-list .faq-item {
    background: var(--white);
    border-radius: 18px;
    padding: 0; /* Reset padding - handled by internal elements */
    box-shadow: 0 2px 12px rgba(33, 60, 71, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(33, 60, 71, 0.04);
}

@media (hover: hover) {
    .faq-item:hover {
        box-shadow: 0 8px 24px rgba(33, 60, 71, 0.08);
        transform: translateY(-2px);
    }
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-teal);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    min-height: 52px;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(238, 235, 229, 0.4);
}

.faq-question:focus-visible {
    outline: 2px solid var(--berry);
    outline-offset: -2px;
}

.faq-question svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--berry);
    transition: transform 0.3s ease;
    background: rgba(161, 69, 103, 0.12);
    border-radius: 50%;
    padding: 4px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--sv-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

/* ===== RETENTION ARGUMENT SECTION ===== */
.retention-section {
    padding: 80px 0;
}

.retention-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.retention-narrative .section-label {
    margin-bottom: 12px;
}

.retention-narrative h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--deep-teal);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.retention-narrative p {
    font-size: 1rem;
    color: var(--sv-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.retention-narrative p:last-child {
    margin-bottom: 0;
}

.retention-impact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(33, 60, 71, 0.06);
    border: 1px solid rgba(33, 60, 71, 0.04);
}

.retention-impact-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.retention-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.retention-benefits li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.retention-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--berry);
    flex-shrink: 0;
    margin-top: 2px;
}

.retention-benefits li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 4px;
}

.retention-benefits li span {
    font-size: 0.875rem;
    color: var(--sv-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .retention-section {
        padding: 48px 0;
    }
    .retention-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .retention-impact-card {
        padding: 32px 24px;
    }
}

/* ===== STATS STRIP ===== */
.stats-strip {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--charcoal-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.stats-strip::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(161, 69, 103, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-context {
    font-size: 0.875rem;
    color: rgba(224, 225, 221, 0.7);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-strip {
        padding: 40px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stat-block {
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat-block:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* ===== COMPETITIVE COMPARISON ===== */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compare-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(33, 60, 71, 0.06);
    border: 1px solid rgba(33, 60, 71, 0.04);
    position: relative;
}

.compare-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.compare-card-featured {
    background: linear-gradient(145deg, var(--deep-teal) 0%, var(--charcoal-blue-dark) 100%);
    border: none;
    box-shadow: 0 12px 40px rgba(33, 60, 71, 0.15);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.compare-card-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry) 0%, var(--berry-dark) 100%);
    border-radius: 20px 20px 0 0;
}

@media (hover: hover) {
    .compare-card-featured:hover {
        box-shadow: 0 16px 48px rgba(161, 69, 103, 0.2), 0 8px 24px rgba(33, 60, 71, 0.12);
    }
}

.compare-card-featured h3 {
    color: var(--white);
}

.compare-badge {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stormy-teal);
    padding: 6px 14px;
    background: rgba(14, 111, 106, 0.2);
    border-radius: 100px;
    margin-bottom: 16px;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.compare-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-negative li {
    color: var(--sv-text-secondary);
}

.compare-negative li svg {
    color: rgba(33, 60, 71, 0.25);
}

.compare-positive li {
    color: rgba(224, 225, 221, 0.85);
}

.compare-positive li svg {
    color: var(--stormy-teal);
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .compare-card {
        padding: 28px 24px;
    }
}

/* ===== STORAGE DRIVES ===== */
.storage-drives-section {
    padding: 80px 0;
}

.storage-drives-layout {
    max-width: 900px;
    margin: 0 auto;
}

.storage-drives-header {
    text-align: center;
    margin-bottom: 48px;
}

.storage-drives-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--deep-teal);
    margin-bottom: 16px;
    line-height: 1.3;
}

.storage-drives-header p {
    font-size: 1.05rem;
    color: var(--sv-text-secondary);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.storage-drives-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.storage-drives-feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(33, 60, 71, 0.06);
    border: 1px solid rgba(33, 60, 71, 0.04);
}

.storage-drives-feature .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(161, 69, 103, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--berry);
    margin: 0 auto 20px;
}

.storage-drives-feature .drives-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.storage-drives-feature p {
    font-size: 0.875rem;
    color: var(--sv-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .storage-drives-section {
        padding: 48px 0;
    }
    .storage-drives-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .storage-drives-feature {
        padding: 24px 20px;
    }
}

/* ===== MID-PAGE CTA ===== */
.partnerships-cta-mid {
    padding: 64px 0;
    text-align: center;
    position: relative;
}

.partnerships-cta-mid .container {
    position: relative;
    z-index: 1;
}

.partnerships-cta-mid h2 {
    color: var(--deep-teal);
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.partnerships-cta-mid p {
    color: var(--sv-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .partnerships-cta-mid {
        padding: 48px 0;
    }
}

/* Reduced motion: instant accordion */
@media (prefers-reduced-motion: reduce) {
    .faq-question svg,
    .faq-answer {
        transition: none;
    }
}
