/*
 * Testosil — Hybrid Theme
 * Hero agressif (testosil.com-style) + sections scientifiques froides.
 * Surcharge les variables CSS du main.css, ne le remplace pas.
 *
 * Palette CTA d'urgence : orange agressif (#f97316) sur fond noir (#020617)
 * Palette autorité : cyan froid (#38bdf8) sur fond blanc/grid
 *
 * Sticky CTA + FAQ collapse réutilisés sur toutes les pages bottom funnel.
 */

:root {
    /* CTA palette — urgence conversion */
    --cta-urgency: #f97316;
    --cta-urgency-dark: #ea580c;
    --cta-urgency-glow: rgba(249, 115, 22, 0.4);
    --cta-urgency-text: #ffffff;
    --cta-shadow: 0 8px 32px var(--cta-urgency-glow), 0 4px 12px rgba(0, 0, 0, 0.15);

    /* Authority palette — section preuves */
    --authority-cyan: #38bdf8;
    --authority-bg: #f8fafc;
    --authority-grid: rgba(56, 189, 248, 0.06);

    /* Spacing fluid */
    --space-cta-pad: 1.25rem 2.5rem;
    --space-cta-pad-lg: 1.5rem 3.5rem;

    /* Type */
    --cta-font-family: 'DM Sans', -apple-system, sans-serif;
    --cta-font-weight: 800;
    --cta-font-size: 1.125rem;
    --cta-font-size-lg: 1.375rem;
}

/* ============================================
   CTA URGENCE — orange agressif
   ============================================ */

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-cta-pad);
    background: linear-gradient(135deg, var(--cta-urgency) 0%, var(--cta-urgency-dark) 100%);
    color: var(--cta-urgency-text);
    font-family: var(--cta-font-family);
    font-weight: var(--cta-font-weight);
    font-size: var(--cta-font-size);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: var(--cta-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-urgency::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-urgency:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 12px 40px var(--cta-urgency-glow), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-urgency:hover::before {
    transform: translateX(100%);
}

.cta-urgency:active {
    transform: translateY(0) scale(0.98);
}

.cta-urgency-lg {
    padding: var(--space-cta-pad-lg);
    font-size: var(--cta-font-size-lg);
}

.cta-urgency-xl {
    padding: 2rem 4rem;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

.cta-urgency-arrow {
    transition: transform 0.2s ease;
}

.cta-urgency:hover .cta-urgency-arrow {
    transform: translateX(4px);
}

/* CTA existant (cta-glow) — on le garde pour l'autorité,
   mais on lui met une version urgence pour les sections bottom funnel */
.cta-urgency-glow {
    box-shadow: 0 0 30px var(--cta-urgency-glow), 0 8px 24px rgba(249, 115, 22, 0.3);
    animation: pulse-urgency 2.4s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% { box-shadow: 0 0 30px var(--cta-urgency-glow), 0 8px 24px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 50px var(--cta-urgency-glow), 0 8px 32px rgba(249, 115, 22, 0.5); }
}

/* ============================================
   HERO AGRESSIF — testosil.com-style
   ============================================ */

.hero-aggressive {
    background: radial-gradient(ellipse at top, #1e293b 0%, var(--color-primary) 100%);
    color: #fff;
    padding: 4rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--cta-urgency);
}

.hero-aggressive::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--authority-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--authority-grid) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-aggressive-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-aggressive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--cta-urgency);
    color: var(--cta-urgency);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-aggressive-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--cta-urgency);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-aggressive-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-aggressive-title .highlight {
    color: var(--cta-urgency);
    display: inline-block;
}

.hero-aggressive-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #cbd5e1;
    margin: 0 0 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-aggressive-bullets {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-aggressive-bullets li {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-aggressive-bullets li span.dot {
    color: var(--cta-urgency);
    margin-right: 0.4rem;
}

.hero-aggressive-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-aggressive-secondary {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.hero-aggressive-secondary:hover {
    border-bottom-color: var(--authority-cyan);
}

/* ============================================
   AUTHORITY STRIP — "As seen on" logos
   ============================================ */

.authority-strip {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.authority-strip-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.authority-strip-icons span {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* ============================================
   BEFORE/AFTER TABLE — section "Tu te reconnais ?"
   ============================================ */

.before-after-wrap {
    background: var(--authority-bg);
    padding: 4rem 1.5rem;
}

.before-after-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.before-after-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 2.5rem;
    color: var(--color-text-main);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.before-after-col {
    padding: 0;
}

.before-after-col-header {
    padding: 1.25rem 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: #fff;
    text-align: center;
}

.before-after-col-before .before-after-col-header {
    background: #475569;
}

.before-after-col-after .before-after-col-header {
    background: var(--cta-urgency);
}

.before-after-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.before-after-col li {
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.before-after-col li:last-child {
    border-bottom: none;
}

.before-after-col-before li::before {
    content: '✗';
    color: #94a3b8;
    font-weight: 700;
    flex-shrink: 0;
}

.before-after-col-after li::before {
    content: '✓';
    color: var(--cta-urgency);
    font-weight: 700;
    flex-shrink: 0;
}

.before-after-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--cta-urgency);
    font-size: 1.5rem;
    padding: 0 1rem;
    min-width: 60px;
}

/* ============================================
   SECTION SCIENTIFIQUE — fond froid, cyan
   ============================================ */

.section-science {
    background: linear-gradient(180deg, #0f172a 0%, var(--color-primary) 100%);
    color: #e2e8f0;
    padding: 5rem 1.5rem;
    position: relative;
}

.section-science::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--authority-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--authority-grid) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
}

.section-science-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-science-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 3rem;
    color: #fff;
}

.section-science-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.section-science-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.section-science-card:hover {
    border-color: var(--authority-cyan);
    transform: translateY(-4px);
}

.section-science-card-tag {
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    color: var(--authority-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-science-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    color: #fff;
}

.section-science-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.section-science-card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--authority-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-science-card-link:hover {
    text-decoration: underline;
}

/* ============================================
   SECTION TÉMOIGNAGES — Frank P / Hassan L style
   ============================================ */

.section-testimonials {
    background: #fff;
    padding: 5rem 1.5rem;
}

.section-testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-testimonials-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
}

.section-testimonials-rating-stars {
    color: #f59e0b;
    letter-spacing: 0.05em;
}

.section-testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0;
    color: var(--color-text-main);
}

.section-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.5;
    color: var(--cta-urgency);
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.3;
}

.testimonial-card blockquote {
    margin: 1.5rem 0 1rem;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-main);
    font-style: italic;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.testimonial-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-urgency) 0%, var(--cta-urgency-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card-author-name {
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.testimonial-card-author-meta {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* ============================================
   COMPARATIF TABLEAU vs CONCURRENTS
   ============================================ */

.section-comparison {
    background: var(--authority-bg);
    padding: 5rem 1.5rem;
}

.section-comparison-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-comparison-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: var(--color-text-main);
}

.section-comparison-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin: 0 0 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.comparison-table thead {
    background: var(--color-primary);
    color: #fff;
}

.comparison-table th {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.highlight-col {
    background: linear-gradient(180deg, var(--cta-urgency-dark) 0%, var(--cta-urgency) 100%);
    position: relative;
}

.comparison-table th.highlight-col::after {
    content: 'NOTRE CHOIX';
    position: absolute;
    top: -10px;
    right: 8px;
    background: #fde047;
    color: #92400e;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.comparison-table td {
    padding: 0.875rem 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #f1f5f9;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-main);
}

.comparison-table td.yes {
    color: var(--cta-urgency);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td.no {
    color: #cbd5e1;
    font-size: 1rem;
}

/* ============================================
   MONEY GRID — gateway vers acheter/prix/avis/garantie
   ============================================ */

.money-grid {
    background: #fff;
    padding: 5rem 1.5rem;
}

.money-grid-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.money-grid-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: var(--color-text-main);
}

.money-grid-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin: 0 0 3rem;
}

.money-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.money-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-text-main);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.money-card:hover {
    border-color: var(--cta-urgency);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--cta-urgency-glow);
}

.money-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-urgency) 0%, var(--cta-urgency-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.money-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.money-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   FAQ COLLAPSIBLE
   ============================================ */

.section-faq {
    background: var(--authority-bg);
    padding: 5rem 1.5rem;
}

.section-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-faq-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    color: var(--color-text-main);
}

.section-faq-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin: 0 0 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--cta-urgency);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text-main);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cta-urgency);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: #f8fafc;
}

.faq-item-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item-content p:first-child {
    margin-top: 0;
}

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

/* ============================================
   STICKY CTA MOBILE — bandeau bas d'écran
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    border-top: 3px solid var(--cta-urgency);
    padding: 0.875rem 1rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta-text {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.3;
}

.sticky-cta-text strong {
    color: var(--cta-urgency);
    display: block;
    font-size: 1rem;
}

.sticky-cta .cta-urgency {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.sticky-cta-close {
    position: absolute;
    top: -32px;
    right: 8px;
    background: var(--color-primary);
    color: #94a3b8;
    border: 1px solid #475569;
    border-bottom: none;
    width: 28px;
    height: 28px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 900px) {
    .sticky-cta {
        display: none;
    }
}

/* ============================================
   BRIDGE PAGE LAYOUT — pages bottom funnel
   ============================================ */

.bridge-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%);
    color: #fff;
    padding: 3rem 1.5rem 4rem;
    text-align: center;
}

.bridge-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.5rem 0 1rem;
    line-height: 1.15;
}

.bridge-hero .bridge-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--cta-urgency);
    color: var(--cta-urgency);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
}

.bridge-hero p {
    color: #cbd5e1;
    max-width: 680px;
    margin: 1rem auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.bridge-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--color-text-main);
}

.bridge-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-primary);
}

.bridge-content h2:first-child {
    margin-top: 0;
}

.bridge-content h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 2rem 0 0.5rem;
}

.bridge-content ul, .bridge-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.bridge-content li {
    margin: 0.5rem 0;
}

.bridge-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.bridge-content table th,
.bridge-content table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.bridge-content table thead {
    background: var(--authority-bg);
}

.bridge-content table th {
    font-family: var(--font-heading);
    font-weight: 700;
}

.bridge-content blockquote {
    background: #fff8e1;
    border-left: 4px solid var(--cta-urgency);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.bridge-cta-mid {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px dashed var(--cta-urgency);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2.5rem 0;
}

.bridge-cta-mid h3 {
    margin: 0 0 0.5rem;
    color: var(--color-text-main);
    font-family: var(--font-heading);
}

.bridge-cta-mid p {
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.bridge-disclosure {
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #78350f;
}

.bridge-related {
    background: var(--authority-bg);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0 0;
}

.bridge-related h3 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
}

.bridge-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.bridge-related a {
    display: block;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.bridge-related a:hover {
    border-color: var(--cta-urgency);
}

/* ============================================
   URGENCY BADGE — stock faible / expiration
   ============================================ */

.urgency-banner {
    background: var(--cta-urgency);
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.urgency-banner-text strong {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.urgency-banner-timer {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-aggressive {
        padding: 3rem 1rem 4rem;
    }
    .hero-aggressive-bullets {
        gap: 0.75rem;
        font-size: 0.95rem;
    }
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .before-after-arrow {
        padding: 0.75rem;
        min-height: 50px;
        min-width: auto;
    }
    .before-after-arrow::before {
        content: '↓';
    }
    .comparison-table {
        font-size: 0.8rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
    }
    .testimonial-card {
        padding: 1.25rem;
    }
}

/* ============================================
   IMPRESSION / NO-JS FALLBACK
   ============================================ */

@media print {
    .sticky-cta,
    .hero-aggressive-actions,
    .urgency-banner {
        display: none !important;
    }
}

.no-js .sticky-cta {
    display: none;
}
