/* =====================================================
   DENTIST ASSIST PRO — Page-specific Styles
   ===================================================== */

/* ===== INDEX — HERO ===== */
.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-16) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.30);
    color: #93C5FD;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    max-width: 750px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-white-70);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: var(--space-8);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-white-50);
    font-size: 0.85rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

.hero-trust-sep {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-16);
}

.hero-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-6);
    text-align: center;
    min-width: 130px;
}

.hero-stat-value {
    font-family: 'Figtree', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-white-50);
    margin-top: var(--space-1);
}

/* Dashboard Mockup Floating Card */
.hero-visual {
    position: relative;
    z-index: 1;
}

.dashboard-mockup {
    background: rgba(10, 21, 48, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: mockup-float 6s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

@keyframes mockup-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.mockup-topbar {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-3) var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot-red {
    background: #FF5F57;
}

.mockup-dot-yellow {
    background: #FFBD2E;
}

.mockup-dot-green {
    background: #27C93F;
}

.mockup-title {
    margin-left: var(--space-4);
    font-size: 0.8rem;
    color: var(--text-white-50);
}

.mockup-body {
    padding: var(--space-6);
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-4);
}

.kpi-label {
    font-size: 0.7rem;
    color: var(--text-white-50);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-2);
}

.kpi-value {
    font-family: 'Figtree', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.kpi-delta {
    font-size: 0.72rem;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.kpi-delta.up {
    color: var(--success);
}

.kpi-delta.down {
    color: var(--danger);
}

/* Fake Chart Bars */
.chart-area {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
}

.chart-label {
    font-size: 0.72rem;
    color: var(--text-white-50);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-3);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    opacity: 0.8;
    transition: opacity var(--ease-fast);
}

.chart-bar:hover {
    opacity: 1;
}

.chart-bar.accent {
    background: linear-gradient(to top, #F97316, #FB923C);
}

/* Agenda heatmap */
.agenda-row {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-2);
}

.agenda-cell {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
}

.agenda-cell.full {
    background: rgba(34, 197, 94, 0.7);
}

.agenda-cell.partial {
    background: rgba(249, 115, 22, 0.6);
}

.agenda-cell.empty {
    background: rgba(239, 68, 68, 0.35);
}

/* ===== PAIN SECTION ===== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.pain-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all var(--ease-normal);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--danger), var(--warning));
    opacity: 0;
    transition: opacity var(--ease-fast);
}

.pain-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

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

.pain-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(239, 68, 68, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-icon svg {
    width: 22px;
    height: 22px;
    color: var(--danger);
}

.pain-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-2);
}

.pain-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 720px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-6);
    align-items: start;
    position: relative;
    transition: all var(--ease-normal);
}

.process-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateX(6px);
}

.process-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity var(--ease-fast);
}

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

.process-num {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
}

.process-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
}

.pricing-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--ease-normal);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--bg-dark-2), var(--bg-dark-3));
    border-color: rgba(37, 99, 235, 0.40);
    color: white;
    box-shadow: var(--shadow-blue), var(--shadow-xl);
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
}

.pricing-icon-blue {
    background: rgba(37, 99, 235, 0.15);
}

.pricing-icon-blue svg {
    color: var(--primary-light);
}

.pricing-icon-orange {
    background: rgba(37, 99, 235, 0.15);
}

.pricing-icon-orange svg {
    color: #60A5FA;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.pricing-desc {
    font-size: 0.9rem;
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.pricing-card:not(.featured) .pricing-desc {
    color: var(--text-secondary);
}

.pricing-card.featured .pricing-desc {
    color: var(--text-white-70);
}

.pricing-price {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid;
}

.pricing-card:not(.featured) .pricing-price {
    border-color: var(--border);
}

.pricing-card.featured .pricing-price {
    border-color: rgba(255, 255, 255, 0.10);
}

.price-amount {
    font-family: 'Figtree', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    margin-top: var(--space-1);
}

.pricing-card:not(.featured) .price-period {
    color: var(--text-secondary);
}

.pricing-card.featured .price-period {
    color: var(--text-white-50);
}

.pricing-features {
    margin-bottom: var(--space-8);
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: 0.9rem;
}

.pricing-feature svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.featured .pricing-feature {
    color: var(--text-white-70);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--ease-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), #60A5FA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.stars svg {
    width: 16px;
    height: 16px;
    color: #F59E0B;
    fill: #F59E0B;
}

/* ===== MAP / ZONE ===== */
.zone-card {
    background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-dark-3));
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.zone-map-placeholder {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--space-5) 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: color var(--ease-fast);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--ease-fast);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: transform var(--ease-fast);
}

.faq-item.open .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.faq-item.open .faq-icon svg {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-top: var(--space-4);
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
    border-radius: var(--radius-2xl);
    padding: var(--space-16) var(--space-12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .hero-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
    opacity: 0.2;
}

.cta-section .hero-orb-2 {
    width: 250px;
    height: 250px;
    opacity: 0.2;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-white-70);
    max-width: 500px;
    margin: 0 auto var(--space-8);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    color: var(--text-white-50);
}

.cta-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* ===== DIAGNOSTIC PAGE ===== */
.diagnostic-hero {
    background: var(--bg-dark);
    padding: 140px 0 var(--space-20);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.quiz-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: var(--space-8);
    text-align: center;
}

.quiz-header h2 {
    color: white;
    margin-bottom: var(--space-2);
}

.quiz-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.quiz-progress {
    display: flex;
    gap: 4px;
    margin-top: var(--space-6);
}

.quiz-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: background var(--ease-normal);
}

.quiz-progress-bar.active {
    background: white;
}

.quiz-body {
    padding: var(--space-10) var(--space-10) var(--space-8);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: step-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes step-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quiz-question {
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.quiz-step-num {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-2);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--ease-fast);
    position: relative;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.03);
}

.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.07);
}

.quiz-option input[type="radio"],
.quiz-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.quiz-option-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.quiz-option-label {
    font-weight: 500;
    font-size: 0.95rem;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-10) var(--space-8);
    border-top: 1px solid var(--border);
}

.quiz-counter {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Quiz Result */
.quiz-result {
    display: none;
    padding: var(--space-10);
    text-align: center;
}

.quiz-result.active {
    display: block;
}

.result-score-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-6);
    position: relative;
}

.result-score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.result-score-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.result-score-num {
    font-family: 'Figtree', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.result-score-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== OFFRES PAGE ===== */
.offre-details {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
}

.offre-details.reverse {
    direction: rtl;
}

.offre-details.reverse>* {
    direction: ltr;
}

.offre-feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.offre-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 0.93rem;
}

.offre-feature svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.offre-visual {
    background: var(--bg-light-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--bg-dark-2), var(--bg-dark-3));
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    color: white;
    position: sticky;
    top: 100px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

.contact-method-label {
    font-size: 0.8rem;
    color: var(--text-white-50);
    margin-bottom: 4px;
}

.contact-method-value {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== A-PROPOS PAGE ===== */
.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--ease-normal);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, var(--primary), #60A5FA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Figtree', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--ease-normal);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

/* ===== DASHBOARD PAGE ===== */
.screen-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
}

.screen-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.screen-item.reverse {
    direction: rtl;
}

.screen-item.reverse>* {
    direction: ltr;
}

.screen-preview {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .offre-details {
        grid-template-columns: 1fr;
    }

    .offre-details.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }

    .screen-item {
        grid-template-columns: 1fr;
    }

    .screen-item.reverse {
        direction: ltr;
    }

    .zone-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .quiz-body {
        padding: var(--space-6);
    }

    .quiz-footer {
        padding: var(--space-4) var(--space-6) var(--space-6);
    }

    .cta-section {
        padding: var(--space-10) var(--space-6);
    }

    .kpi-row {
        grid-template-columns: repeat(3, 1fr);
    }
}