/* === Page Styles (About, Product Pages) === */

/* Page Hero */
.page-hero {
    background: linear-gradient(160deg, var(--charcoal) 0%, var(--ink) 100%);
    color: white;
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: var(--text-display);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.3px;
    position: relative;
}
.page-hero p {
    font-size: var(--text-lead);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    position: relative;
}
/* Hero CTA buttons — prominent action path for Google Ads traffic */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    flex-wrap: wrap;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease-short);
    text-decoration: none;
    border: none;
    line-height: 1;
}
.hero-btn-primary {
    background: var(--green);
    color: white;
}
.hero-btn-primary:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}
.hero-btn-phone {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-btn-phone:hover {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}
.hero-btn-phone svg {
    flex-shrink: 0;
}
/* Content Sections */
.content-section {
    padding: var(--space-4xl) 0;
}
.content-section:nth-child(even) {
    background: white;
}
.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--ink);
    letter-spacing: -0.2px;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}
.content-prose {
    max-width: 780px;
    margin: 0 auto;
    font-size: var(--text-body);
    line-height: 1.8;
    color: var(--slate);
}
.content-prose h2 {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    color: var(--ink);
    margin: var(--space-2xl) 0 var(--space-md);
}
.content-prose h2:first-child { margin-top: 0; }
.content-prose p { margin-bottom: var(--space-md); }
.content-prose ul, .content-prose ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}
.content-prose li {
    margin-bottom: var(--space-sm);
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}
.feature-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: var(--space-xl);
    border: 1px solid var(--card-border);
    transition: all var(--ease-medium);
    box-shadow: var(--card-shadow);
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h5);
    margin-bottom: var(--space-sm);
    color: var(--ink);
}
.feature-card p {
    font-size: var(--text-ui);
    color: var(--slate);
    line-height: 1.7;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 22px;
}

/* FAQ Section */
.faq-section { padding: var(--space-4xl) 0; background: white; }
.faq-item {
    border-bottom: 1px solid var(--cloud);
    padding: var(--space-lg) 0;
    max-width: 780px;
    margin: 0 auto;
}
.faq-item h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h5);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item h3::after {
    content: '+';
    font-size: var(--text-h4);
    color: var(--green);
    transition: transform var(--ease-medium);
}
.faq-item.open h3::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ease-medium);
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding-top: var(--space-md);
    color: var(--slate);
    line-height: 1.7;
    font-size: var(--text-body-sm);
}

/* CTA Banner */
/* Quote Form */
.quote-section { padding: var(--space-4xl) 0; }
.quote-section .section-title { text-align: center; }
.quote-section .section-sub { text-align: center; color: var(--slate); margin-bottom: var(--space-xl); font-size: var(--text-body); }
.form-card {
    background: var(--form-card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl) var(--space-xl);
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--form-card-border);
    box-shadow: var(--shadow-xl);
}
.form-card::before,
.form-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.form-card::before {
    width: 350px; height: 350px;
    background: var(--green);
    top: -180px; right: -120px;
    filter: blur(80px);
    opacity: 0.12;
}
.form-card::after {
    width: 250px; height: 250px;
    background: var(--amber);
    bottom: -120px; left: -80px;
    filter: blur(70px);
    opacity: 0.08;
}
.form-card h2 {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
/* Form input/submit/validation styles inherited from main.css shared section */

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
}
.comparison-table th {
    background: linear-gradient(135deg, var(--charcoal), var(--ink));
    color: white;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: var(--text-ui);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}
.comparison-table td {
    padding: var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--cloud);
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.6;
    transition: background var(--ease-short);
}
.comparison-table tr:nth-child(even) td {
    background: var(--warm);
}
.comparison-table tbody tr:hover td {
    background: var(--green-glow);
}

/* === Compare Page === */

.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.compare-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: var(--text-sm);
}
.compare-table thead th {
    background: linear-gradient(135deg, var(--charcoal), var(--ink));
    color: white;
    padding: var(--space-md) var(--space-md);
    text-align: center;
    font-weight: 600;
    font-size: var(--text-ui);
    white-space: nowrap;
    font-family: var(--font-body);
}
.compare-table thead th:first-child {
    text-align: left;
}
.compare-table thead th a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color var(--ease-short);
}
.compare-table thead th a:hover {
    border-bottom-color: white;
}
.compare-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--cloud);
    color: var(--slate);
    text-align: center;
    line-height: 1.6;
    transition: background var(--ease-short);
}
.compare-table td:first-child {
    text-align: left;
    color: var(--ink);
    background: rgba(0,0,0,0.01);
    white-space: nowrap;
    font-weight: 500;
}
.compare-table tbody tr:nth-child(even) td {
    background: var(--warm);
}
.compare-table tbody tr:nth-child(even) td:first-child {
    background: rgba(250,248,245,0.8);
}
.compare-table tbody tr:hover td {
    background: var(--green-glow);
}
.compare-highlight {
    color: var(--green);
    font-weight: 600;
}
.compare-link {
    display: inline-block;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--ease-short);
}
.compare-link:hover {
    color: var(--green-deep);
}
.compare-cta-row td {
    border-bottom: none;
    padding-top: var(--space-xs);
}

/* Carrier matrix on /compare-life-insurance/ — 3-col layout (condition →
   carriers → why) reusing .compare-table styles but with left-aligned
   paragraph-style "Why" column and slightly narrower min-width since
   it has fewer columns than the main comparison table. */
.compare-table.carrier-matrix { min-width: 640px; }
.compare-table.carrier-matrix td { text-align: left; }
.compare-table.carrier-matrix td:nth-child(2) {
    font-weight: 600;
    color: var(--ink);
    white-space: normal;
}
.compare-table.carrier-matrix td:nth-child(3) {
    color: var(--slate);
    font-size: var(--text-fine);
}

.compare-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}
.compare-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--space-xl);
    transition: all var(--ease-medium);
    box-shadow: var(--card-shadow);
}
.compare-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
}
.compare-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--green);
    font-size: 1.25rem;
}
.compare-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    color: var(--ink);
    margin-bottom: var(--space-sm);
}
.compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}
.compare-card li {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.7;
    padding: 4px 0 4px 22px;
    position: relative;
}
.compare-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--green-glow);
    border: 2px solid var(--green);
}
.compare-card-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: color var(--ease-short);
}
.compare-card-link:hover {
    color: var(--green-deep);
}

/* === Testimonial Snippet === */
.testimonial-snippet {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--cream);
    max-width: 680px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.04);
}
.snippet-stars {
    color: var(--amber);
    font-size: var(--text-h4);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}
.testimonial-snippet p {
    font-family: var(--font-heading);
    font-size: var(--text-lead);
    font-style: italic;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
}
.testimonial-snippet strong {
    font-style: normal;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

/* === Responsive === */

@media (max-width: 768px) {
    .page-hero {
        padding: var(--space-3xl) 0 var(--space-2xl);
    }
    .page-hero::before { display: none; }
    .page-hero h1 {
        font-size: var(--text-h1);
    }
    .page-hero p {
        font-size: var(--text-ui);
    }
    .content-section {
        padding: var(--space-2xl) 0;
    }
    .section-title {
        font-size: var(--text-h3);
        margin-bottom: var(--space-xl);
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .content-prose h2 {
        font-size: var(--text-h3);
        margin: var(--space-xl) 0 var(--space-sm);
    }
    .feature-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }
    .feature-card {
        padding: var(--space-lg);
    }
    .faq-section {
        padding: var(--space-2xl) 0;
    }
    .faq-item h3 {
        font-size: var(--text-lead);
    }
    .quote-section {
        padding: var(--space-2xl) 0;
    }
    .form-card {
        padding: var(--space-xl) var(--space-lg);
        border-radius: var(--radius-xl);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .comparison-table {
        font-size: 13px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: var(--space-xs) var(--space-sm);
    }
    .compare-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .compare-card {
        padding: var(--space-lg);
    }
    .testimonial-snippet {
        padding: var(--space-xl) var(--space-md);
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Urgency badge for product page forms */
.urgency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: var(--text-caption);
    font-weight: 500;
    color: var(--amber);
    line-height: 1.4;
    animation: urgency-fade-in var(--ease-long);
}
.urgency-badge::before {
    content: '\23F0';
    font-size: 14px;
    flex-shrink: 0;
}
@keyframes urgency-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   Hero inline form — MOBILE ONLY
   Rendered via src/_includes/partials/hero-inline-form.njk directly below
   the .page-hero section on product/location/compare pages. Hidden above
   768px because desktop gets the collapsible right-rail sidebar form.
   Reduces the product-page mobile form path from 2 taps (open sidebar →
   submit) to 1 (submit directly).
   ========================================================================= */
.hero-inline-form-section {
    display: none;
}
@media (max-width: 768px) {
    .hero-inline-form-section {
        display: block;
        background: var(--cream);
        padding: 16px 0 24px;
    }
    .hero-inline-form-card {
        background: white;
        border: 1px solid var(--cloud);
        border-radius: var(--radius-lg);
        padding: 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
    .hero-inline-form-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--cloud);
    }
    .hero-inline-form-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }
    .hero-inline-form-header strong {
        display: block;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 14px;
        color: var(--ink);
        line-height: 1.2;
    }
    .hero-inline-form-social {
        display: block;
        font-size: 12px;
        color: var(--slate);
        margin-top: 2px;
    }
    .hero-inline-form-card input[type="text"],
    .hero-inline-form-card input[type="email"],
    .hero-inline-form-card input[type="tel"],
    .hero-inline-form-card select {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid var(--cloud);
        border-radius: var(--radius-md);
        font-family: var(--font-body);
        font-size: 16px; /* iOS never zooms inputs when font-size >= 16px */
        color: var(--ink);
        background: white;
        margin-bottom: 10px;
    }
    .hero-inline-form-card input:focus,
    .hero-inline-form-card select:focus {
        outline: 2px solid var(--green);
        outline-offset: -1px;
    }
    .hero-inline-form-card .form-submit {
        width: 100%;
        background: var(--green);
        color: white;
        border: none;
        border-radius: var(--radius-md);
        padding: 14px;
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 4px;
    }
    .hero-inline-form-card .form-submit:hover { background: var(--green-deep); }
    .hero-inline-form-note {
        font-size: 11px;
        color: var(--slate);
        text-align: center;
        margin: 10px 0 0;
    }
    .hero-inline-form-card .form-success { display: none; }
    .hero-inline-form-card.submitted form { display: none; }
    .hero-inline-form-card.submitted .form-success { display: block; text-align: center; }
}

/* =========================================================================
   /vs/ Namespace — product comparison pages
   Used by:
     src/vs/index.njk  (listing of all comparisons)
     src/vs/vs.njk     (paginated comparison page — one per competitors.list entry)
   Matches site-hub's design system: var(--green), cream backgrounds, card
   shadows. Hand-written rules (no Tailwind) consistent with the rest of
   page.css. See packages/shared/docs/VS-NAMESPACE-PERFECTION.md for the
   canonical comparison-page structure this file targets.
   ========================================================================= */

/* --- /vs/ index — comparison card grid --- */
.vs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}
.vs-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--space-xl);
    text-decoration: none;
    color: inherit;
    transition: all var(--ease-medium);
    box-shadow: var(--card-shadow);
}
.vs-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
}
.vs-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--slate);
    padding: 6px 12px;
    background: var(--cream);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}
.vs-card-left,
.vs-card-right {
    color: var(--ink);
}
.vs-card-divider {
    color: var(--green);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    text-transform: lowercase;
}
.vs-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    color: var(--ink);
    margin: 0 0 var(--space-sm);
    line-height: 1.25;
}
.vs-card-tagline {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 var(--space-md);
}
.vs-card-link {
    color: var(--green);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: color var(--ease-short);
}
.vs-card:hover .vs-card-link {
    color: var(--green-deep);
}

/* --- /vs/[slug]/ — overview two-panel card --- */
.vs-overview {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}
.vs-overview-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--space-xl);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}
.vs-overview-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    color: var(--ink);
    margin: 0 0 var(--space-sm);
    line-height: 1.2;
}
.vs-overview-card p {
    font-size: var(--text-body);
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 var(--space-md);
    flex-grow: 1;
}
.vs-overview-link {
    color: var(--green);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    align-self: flex-start;
    transition: color var(--ease-short);
}
.vs-overview-link:hover { color: var(--green-deep); }
.vs-overview-left {
    border-top: 3px solid var(--green);
}
.vs-overview-right {
    border-top: 3px solid var(--amber);
}
.vs-overview-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--text-h4);
    color: var(--slate);
    text-transform: lowercase;
    padding: 0 var(--space-sm);
}

/* --- Comparison table — 3-column version (feature / left / right) --- */
.vs-compare-table { min-width: 640px; }
.vs-compare-table td:first-child {
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    white-space: normal;
    width: 28%;
}
.vs-compare-table td {
    text-align: left;
    line-height: 1.6;
    padding: var(--space-md) var(--space-md);
}
.vs-compare-table thead th {
    text-align: left;
}
.vs-compare-table thead th:nth-child(2) {
    border-bottom: 3px solid var(--green);
}
.vs-compare-table thead th:nth-child(3) {
    border-bottom: 3px solid var(--amber);
}

/* --- "When each wins" two-column grid --- */
.vs-when-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
}
.vs-when-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--space-xl);
    box-shadow: var(--card-shadow);
}
.vs-when-left {
    border-top: 3px solid var(--green);
}
.vs-when-right {
    border-top: 3px solid var(--amber);
}
.vs-when-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    color: var(--ink);
    margin: 0 0 var(--space-md);
    line-height: 1.25;
}
.vs-when-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vs-when-card li {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.7;
    padding: 8px 0 8px 26px;
    position: relative;
    border-bottom: 1px solid var(--cloud);
}
.vs-when-card li:last-child { border-bottom: none; }
.vs-when-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--green-glow);
    border: 2px solid var(--green);
}
.vs-when-right li::before {
    background: var(--amber-glow);
    border-color: var(--amber);
}

/* --- Recommendation block --- */
.vs-recommendation {
    background: linear-gradient(160deg, var(--charcoal) 0%, var(--ink) 100%);
    color: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl) var(--space-xl);
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}
.vs-recommendation::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: var(--green);
    top: -180px; right: -120px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.14;
    pointer-events: none;
}
.vs-recommendation-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    position: relative;
}
.vs-recommendation-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--amber);
    flex-shrink: 0;
}
.vs-recommendation-label {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    margin: 0 0 4px;
    color: white;
    line-height: 1.2;
}
.vs-recommendation-byline {
    margin: 0;
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}
.vs-recommendation-byline strong { color: rgba(255, 255, 255, 0.9); }
.vs-recommendation-body {
    font-size: var(--text-body);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 var(--space-lg);
    position: relative;
}
.vs-recommendation-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    position: relative;
}
.vs-recommendation-phone {
    color: var(--amber);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    transition: border-color var(--ease-short);
}
.vs-recommendation-phone:hover { border-bottom-color: var(--amber); }

/* --- Cross-sell grid (other comparisons) --- */
.vs-crosssell-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}
.vs-crosssell-card {
    display: block;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--ease-short);
    box-shadow: var(--shadow-sm);
}
.vs-crosssell-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}
.vs-crosssell-label {
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--green);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vs-crosssell-tagline {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

/* --- /vs/ responsive (stack on mobile) --- */
@media (max-width: 768px) {
    .vs-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .vs-card {
        padding: var(--space-lg);
    }
    .vs-overview {
        grid-template-columns: 1fr;
    }
    .vs-overview-divider {
        padding: var(--space-sm) 0;
    }
    .vs-when-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .vs-when-card {
        padding: var(--space-lg);
    }
    .vs-recommendation {
        padding: var(--space-lg);
        border-radius: var(--radius-xl);
    }
    .vs-recommendation-label { font-size: var(--text-h5); }
    .vs-recommendation-body { font-size: var(--text-body-sm); }
    .vs-crosssell-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}