/* ==========================================================================
   QR Informatique - Styles spécifiques aux pages
   ========================================================================== */

/* ===================================================== ACCUEIL : Hero */
.home-hero {
    position: relative;
    margin-top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.home-hero > .container { width: 100%; }

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.home-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(90% 70% at 50% 10%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(90% 70% at 50% 10%, #000, transparent 80%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    animation: blob-float 14s ease-in-out infinite;
}

.blob-1 { width: 460px; height: 460px; top: -120px; left: -80px; background: #2563eb; }
.blob-2 { width: 420px; height: 420px; top: -60px; right: -100px; background: #06b6d4; animation-delay: -4s; }
.blob-3 { width: 360px; height: 360px; bottom: -160px; left: 40%; background: #1e40af; animation-delay: -8s; }

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}

.home-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #e2e8f0;
    margin-bottom: 1.4rem;
}

.hero-eyebrow i { color: var(--star); }

.home-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    margin-bottom: 1.1rem;
}

.home-hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(226, 232, 240, 0.85);
    max-width: 540px;
    margin-bottom: 1.9rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem 1.4rem;
}

.hero-trust .trust-item { flex: 0 0 auto; align-items: center; }
.hero-trust .trust-item b,
.hero-trust .trust-item span { white-space: nowrap; }

@media (max-width: 560px) {
    .hero-trust { flex-wrap: wrap; }
    .hero-trust .trust-item { flex: 1 1 100%; }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.trust-item .trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cyan);
    font-size: 1.05rem;
}

.trust-item .trust-stars { color: var(--star); }
.trust-item b { color: #fff; font-family: var(--font-heading); display: block; font-size: 1.05rem; line-height: 1.1; }
.trust-item span { color: rgba(226, 232, 240, 0.7); font-size: 0.82rem; }

/* Carte visuelle du hero */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.hero-card-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.hero-card-head b { color: #fff; font-family: var(--font-heading); font-size: 1.05rem; }
.hero-card-head span { color: rgba(226, 232, 240, 0.7); font-size: 0.85rem; }

.hero-card-list { display: flex; flex-direction: column; gap: 0.85rem; }

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.hero-card-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.18);
    color: var(--cyan);
    flex-shrink: 0;
}

.hero-card-cta {
    margin-top: 1.4rem;
    display: block;
    text-align: center;
}

@media (max-width: 900px) {
    .home-hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
}

/* ===================================================== ACCUEIL : À propos */
.about-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-media { position: relative; max-width: 360px; margin-inline: auto; width: 100%; }

.about-media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -22px;
    right: -10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-badge b {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--brand-700);
    line-height: 1;
}

.about-badge span { font-size: 0.82rem; color: var(--text-muted); }

.about-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.about-point i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--brand-gradient-soft);
    color: var(--brand-700);
    flex-shrink: 0;
}

.about-point b { display: block; color: var(--ink-2); }
.about-point span { font-size: 0.92rem; color: var(--text-soft); }

@media (max-width: 820px) {
    .about-inner { grid-template-columns: 1fr; }
    .about-media { max-width: 440px; margin: 0 auto; }
    .about-badge { right: 10px; }
}

/* ===================================================== ACCUEIL : Valeurs */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.value-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-brand);
}

.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; }

/* ===================================================== ACCUEIL : Processus */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.6rem 1.6rem;
    box-shadow: var(--shadow-sm);
}

.step-num {
    position: absolute;
    top: -22px;
    left: 1.6rem;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--brand-gradient);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brand);
}

.process-step h4 { margin: 0.6rem 0 0.4rem; }
.process-step p { font-size: 0.94rem; }

/* ===================================================== ACCUEIL : Stats */
.stats-band {
    background:
        radial-gradient(700px 360px at 10% 0%, rgba(37, 99, 235, 0.25), transparent 60%),
        radial-gradient(700px 360px at 100% 100%, rgba(6, 182, 212, 0.22), transparent 60%),
        var(--ink);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label { color: rgba(226, 232, 240, 0.78); font-size: 0.95rem; margin-top: 0.5rem; }

/* ===================================================== SERVICES : catégories */
.service-category { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.service-category:last-child { margin-bottom: 0; }

.service-category-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.service-category-head .cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 1.2rem;
}

.service-category-head h3 { margin: 0; }
.service-category-head p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

/* ===================================================== CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.8rem;
    align-items: start;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    box-shadow: var(--shadow);
}

.contact-form > h4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-form > h4 i { color: var(--brand); }

.contact-main { display: flex; flex-direction: column; gap: 1.4rem; align-self: start; }

.contact-aside { display: flex; flex-direction: column; gap: 1.4rem; }

.contact-card,
.contact-guarantees,
.contact-social {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h4,
.contact-guarantees h4,
.contact-social h4 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.contact-card h4 i,
.contact-guarantees h4 i,
.contact-social h4 i { color: var(--brand); }

.contact-item {
    display: flex;
    gap: 0.9rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-gradient-soft);
    color: var(--brand-700);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-details h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-value { font-weight: 600; color: var(--ink-2); margin: 0 0 0.15rem; }
.contact-note { font-size: 0.82rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.35rem; }
.contact-note i { color: var(--success); }

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.guarantee-item i { color: var(--success); }

.social-links { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.92rem;
    color: #fff;
    transition: transform var(--t-fast), box-shadow var(--t);
}

.social-link:hover { transform: translateY(-2px); color: #fff; box-shadow: var(--shadow-sm); }
.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.map-container {
    margin-top: 1.8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.map-container h4 { display: flex; align-items: center; gap: 0.55rem; }
.map-container h4 i { color: var(--brand); }
.map-container > p { color: var(--text-muted); margin-bottom: 1.2rem; }

.map {
    border-radius: var(--radius);
    overflow: hidden;
    line-height: 0;
}

.map iframe { width: 100%; height: 340px; border: 0; display: block; }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===================================================== PAGES LÉGALES (CGV / Mentions / RGPD) */
.legal-content { padding: var(--space-section) 0; }

.legal-content-inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.8rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-xs);
}

.legal-article h2 {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--brand-gradient-soft);
    border-image: var(--brand-gradient) 1;
}

.legal-article p { font-size: 0.96rem; }
.legal-article ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-article ul li { margin-bottom: 0.45rem; color: var(--text-soft); }

.legal-footer-info {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.6rem;
    margin-top: 1.2rem;
}

.legal-footer-info p { color: var(--text-soft); }

.legal-download {
    text-align: center;
    margin-top: 2rem;
}

.legal-download p { margin-top: 0.8rem; font-size: 0.88rem; color: var(--text-muted); }

/* ===================================================== FAQ */
.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink-2);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--brand);
    transition: transform var(--t);
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item .faq-answer {
    padding: 0 1.4rem 1.3rem;
    color: var(--text-soft);
    font-size: 0.96rem;
}

/* ===================================================== TARIFS */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.tarif-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.7rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}

.tarif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tarif-card.is-featured {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--brand-gradient) border-box;
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
}

.tarif-tag {
    align-self: flex-start;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    background: var(--brand-gradient-soft);
    color: var(--brand-700);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tarif-card h3 { margin-bottom: 0.4rem; }

.tarif-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink-2);
    line-height: 1.1;
    margin: 0.6rem 0 0.2rem;
}

.tarif-price small { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.tarif-card > p { font-size: 0.92rem; color: var(--text-muted); }

.tarif-list {
    margin: 1.2rem 0 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.tarif-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.tarif-list li i { color: var(--success); margin-top: 0.2rem; }

.tarif-note {
    max-width: var(--container-narrow);
    margin: 2.2rem auto 0;
    padding: 1.2rem 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Wrapper de section legacy (réutilisé par les pages données) */
.services-overview { padding: var(--space-section) 0; }

.data-erasure-capabilities > .container > h2,
.data-erasure-standards > .container > h2,
.data-erasure-compliance > .container > h2,
.data-erasure-process > .container > h2,
.recovery-lab-media > .container > h2 {
    text-align: center;
}

.data-erasure-capabilities > .container > .section-subtitle,
.data-erasure-standards > .container > .section-subtitle,
.recovery-lab-media > .container > .section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.4rem;
}

/* ===================================================== EFFACEMENT DE DONNÉES */
.data-erasure-intro-card,
.data-erasure-column-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3vw, 2.2rem);
    box-shadow: var(--shadow-sm);
    max-width: 880px;
    margin: 0 auto;
}

.data-erasure-intro { padding: var(--space-section) 0; }
.data-erasure-capabilities { background: var(--bg-alt); }

.data-erasure-standards { padding: var(--space-section) 0; }

.erasure-standard-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.8rem;
}

.erasure-standard-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    color: var(--text-soft);
    box-shadow: var(--shadow-xs);
}

.erasure-standard-list li::before {
    content: '\f3ed';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand);
}

.data-erasure-compliance { padding: var(--space-section) 0; background: var(--bg-alt); }

.data-erasure-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.data-erasure-column-card h3 { margin-bottom: 1.1rem; }

.erasure-chip-list { display: flex; flex-wrap: wrap; gap: 0.55rem; }

.erasure-chip-list li {
    padding: 0.4rem 0.85rem;
    background: var(--brand-gradient-soft);
    color: var(--brand-700);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
}

.erasure-deliverables { display: flex; flex-direction: column; gap: 0.6rem; }

.erasure-deliverables li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.erasure-deliverables li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    margin-top: 0.15rem;
}

.data-erasure-process { padding: var(--space-section) 0; }

.data-erasure-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin-top: 2.6rem;
}

.data-erasure-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.data-erasure-step .step-badge {
    position: absolute;
    top: -20px;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--brand-gradient);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brand);
}

.data-erasure-step h4 { margin: 0.6rem 0 0.4rem; }
.data-erasure-step p { font-size: 0.92rem; }

.data-erasure-source { text-align: center; margin-top: 1.6rem; font-size: 0.88rem; color: var(--text-muted); }

@media (max-width: 720px) {
    .data-erasure-columns { grid-template-columns: 1fr; }
}

/* ===================================================== RÉCUPÉRATION SALLE BLANCHE */
.recovery-lab-intro { padding: var(--space-section) 0; }

.recovery-lab-intro-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center;
}

.recovery-lab-intro-logo {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.recovery-lab-logo-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.recovery-lab-logo-img { max-width: 100%; height: auto; margin: 0 auto; }

.recovery-lab-media { padding: var(--space-section) 0; background: var(--bg-alt); }

.recovery-lab-poster-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.recovery-lab-poster { width: 100%; height: auto; display: block; }

.recovery-lab-form-placeholder { padding: var(--space-section) 0; }

.recovery-lab-form-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    box-shadow: var(--shadow);
}

.recovery-lab-form-card h2 { margin-bottom: 1.2rem; }
.recovery-lab-form-muted { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 820px) {
    .recovery-lab-intro-inner { grid-template-columns: 1fr; }
}
