/* ============================================
   PHENIX ASSISTANCE - STYLES PRO HOMEPAGE
   Date : 2026-05-08
   Couches additionnelles pour le redesign pro.
   ============================================ */

:root {
    --pro-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8a00 50%, #ffb300 100%);
    --pro-gradient-dark: linear-gradient(135deg, #102033 0%, #1d3556 100%);
    --pro-glow: 0 24px 60px -20px rgba(255, 107, 0, 0.55);
    --pro-glass: rgba(255, 255, 255, 0.72);
    --pro-glass-border: rgba(255, 255, 255, 0.55);
    --pro-success: #16a34a;
    --pro-info: #2563eb;
    --pro-warning: #f59e0b;
}

/* ===== UTILS ===== */
.pro-section {
    padding: 96px 0;
    position: relative;
}

.pro-section--alt {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.pro-section--dark {
    background: var(--pro-gradient-dark);
    color: #fff;
}

.pro-section--dark h2,
.pro-section--dark h3,
.pro-section--dark h4 {
    color: #fff;
}

.pro-section--dark p,
.pro-section--dark li {
    color: rgba(255, 255, 255, 0.85);
}

.pro-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.pro-section-head .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO PRO ===== */
.hero-pro {
    position: relative;
    padding: 56px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 107, 0, 0.25), transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(37, 99, 235, 0.12), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 32, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 70% 40%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 70% 40%, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-pro__panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-pro__live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.hero-pro__live i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseLive 1.8s infinite;
    display: inline-block;
}

@keyframes pulseLive {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-pro__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.4rem, 4.6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 22px 0 20px;
    color: var(--color-secondary);
}

.hero-pro__title .text-gradient {
    background: var(--pro-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-pro__lead {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-pro__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.btn-xl {
    min-height: 64px;
    padding: 0 32px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: var(--pro-glow);
}

.btn-xl i {
    font-size: 1.2rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 18px 40px -16px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

.hero-pro__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    margin-bottom: 28px;
}

.hero-pro__trust span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-pro__trust i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.hero-pro__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: var(--pro-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--pro-glass-border);
    box-shadow: var(--shadow-soft);
}

.hero-pro__metric {
    text-align: center;
    padding: 6px 0;
    border-right: 1px solid rgba(16, 32, 51, 0.08);
}

.hero-pro__metric:last-child {
    border-right: 0;
}

.hero-pro__metric strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--color-secondary);
    line-height: 1;
}

.hero-pro__metric span {
    display: block;
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-pro__visual {
    position: relative;
}

.hero-pro__photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px -25px rgba(16, 32, 51, 0.4);
    aspect-ratio: 4 / 5;
}

.hero-pro__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pro__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(16, 32, 51, 0.65) 100%);
}

.hero-pro__photo-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-soft);
}

.hero-pro__photo-badge i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--pro-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-pro__photo-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.hero-pro__photo-badge span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.hero-pro__floater {
    position: absolute;
    background: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: floatY 4s ease-in-out infinite;
}

.hero-pro__floater--top {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.hero-pro__floater--mid {
    top: 45%;
    right: -28px;
    animation-delay: 1s;
}

.hero-pro__floater i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-pro__floater strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.hero-pro__floater span {
    display: block;
    font-size: 0.78rem;
    color: var(--color-muted);
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 36px 0;
    background: #fff;
    border-block: 1px solid var(--color-border);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    text-align: center;
}

.trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust-strip__item i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #f4f7fb 100%);
    border: 1px solid var(--color-border);
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== KPI / STATS PRO ===== */
.kpi-section {
    background:
        radial-gradient(circle at 12% 30%, rgba(255, 107, 0, 0.08), transparent 50%),
        radial-gradient(circle at 88% 70%, rgba(37, 99, 235, 0.07), transparent 50%),
        #ffffff;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.kpi-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.kpi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pro-gradient);
}

.kpi-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.kpi-card__value {
    font-family: "Montserrat", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 6px;
}

.kpi-card__value sup {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-left: 4px;
    vertical-align: top;
}

.kpi-card__label {
    color: var(--color-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.kpi-card__bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.08);
    overflow: hidden;
}

.kpi-card__bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--pro-gradient);
    width: 0;
    animation: kpiFill 1.6s ease-out forwards;
}

@keyframes kpiFill {
    from { width: 0; }
    to { width: var(--fill, 80%); }
}

.kpi-card__foot {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--pro-success);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== HOW IT WORKS ===== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    position: relative;
}

.how-step {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.how-step:hover {
    transform: translateY(-6px);
}

.how-step__num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pro-gradient);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pro-glow);
}

.how-step__icon {
    width: 84px;
    height: 84px;
    margin: 12px auto 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff 0%, #fff5ed 100%);
    border: 1px solid rgba(255, 107, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 2rem;
}

.how-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.how-step p {
    color: var(--color-muted);
}

.how-step__time {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== SERVICES PRO ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-pro {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.service-pro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--pro-gradient);
    transition: height 0.3s ease;
}

.service-pro:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 107, 0, 0.4);
}

.service-pro:hover::before {
    height: 4px;
}

.service-pro__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--pro-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px -10px rgba(255, 107, 0, 0.55);
}

.service-pro h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.service-pro p {
    font-size: 0.92rem;
    color: var(--color-muted);
    margin-bottom: 18px;
    line-height: 1.55;
}

.service-pro__price {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: rgba(255, 107, 0, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.service-pro__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.service-pro__link:hover {
    gap: 12px;
}

/* ===== COVERAGE / MAP ===== */
.coverage-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.coverage-map {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.coverage-map svg {
    width: 100%;
    height: 100%;
}

.coverage-map .region {
    fill: rgba(255, 107, 0, 0.18);
    stroke: var(--color-primary);
    stroke-width: 1.4;
    transition: fill 0.3s ease;
}

.coverage-map .region:hover {
    fill: rgba(255, 107, 0, 0.45);
    cursor: pointer;
}

.coverage-map .region--idf {
    fill: rgba(255, 107, 0, 0.55);
}

.coverage-map .pin {
    fill: var(--color-primary);
    animation: pinPulse 2s infinite;
    transform-origin: center;
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.coverage-map__legend {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    font-size: 0.85rem;
}

.coverage-map__legend strong {
    display: block;
    color: var(--color-secondary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.coverage-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 18px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.coverage-card:hover {
    transform: translateX(4px);
    border-color: var(--color-primary);
}

.coverage-card__num {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-primary);
    background: rgba(255, 107, 0, 0.1);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-card__body strong {
    display: block;
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.coverage-card__body span {
    color: var(--color-muted);
    font-size: 0.85rem;
}

/* ===== PRICING PRO ===== */
.pricing-pro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pricing-pro__card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-pro__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.pricing-pro__card--featured {
    background: var(--pro-gradient-dark);
    color: #fff;
    border-color: transparent;
    transform: scale(1.04);
}

.pricing-pro__card--featured h3 {
    color: #fff;
}

.pricing-pro__card--featured .pricing-pro__price {
    color: #fff;
}

.pricing-pro__card--featured .pricing-pro__features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-pro__card--featured .pricing-pro__features i {
    color: #ffb300;
}

.pricing-pro__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pro-gradient);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--pro-glow);
}

.pricing-pro__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.pricing-pro__card--featured .pricing-pro__icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffb300;
}

.pricing-pro__card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.pricing-pro__sub {
    color: var(--color-muted);
    margin-bottom: 18px;
    font-size: 0.92rem;
}

.pricing-pro__card--featured .pricing-pro__sub {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-pro__price {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--color-secondary);
    line-height: 1;
}

.pricing-pro__price small {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-left: 6px;
}

.pricing-pro__card--featured .pricing-pro__price small {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-pro__features {
    list-style: none;
    margin: 22px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.pricing-pro__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.pricing-pro__features i {
    color: var(--pro-success);
    margin-top: 4px;
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-item:hover {
    transform: translateX(6px);
    border-color: var(--color-primary);
}

.why-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--pro-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.why-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.why-visual {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

.why-visual h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.why-bar {
    margin-bottom: 22px;
}

.why-bar__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.why-bar__head span:last-child {
    color: var(--color-primary-dark);
}

.why-bar__track {
    height: 10px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.08);
    overflow: hidden;
}

.why-bar__fill {
    height: 100%;
    border-radius: 999px;
    background: var(--pro-gradient);
    width: var(--fill, 80%);
    transition: width 1.4s ease-out;
}

.why-donut {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px dashed var(--color-border);
    align-items: center;
}

.why-donut__chart {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
}

.why-donut__bg {
    fill: none;
    stroke: rgba(16, 32, 51, 0.08);
    stroke-width: 14;
}

.why-donut__fg {
    fill: none;
    stroke: url(#donutGrad);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 339;
    stroke-dashoffset: 34;
    animation: donutFill 1.6s ease-out forwards;
}

@keyframes donutFill {
    from { stroke-dashoffset: 339; }
}

.why-donut__center {
    transform: rotate(90deg);
    transform-origin: center;
}

.why-donut__legend strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    color: var(--color-secondary);
    line-height: 1.2;
}

.why-donut__legend p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== FAQ PRO ===== */
.faq-pro {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-pro__item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-pro__item[open],
.faq-pro__item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.faq-pro__q {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.faq-pro__q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-pro__item[open] .faq-pro__q::after {
    transform: rotate(180deg);
}

.faq-pro__a {
    padding: 0 24px 22px;
    color: var(--color-muted);
    line-height: 1.65;
}

/* ===== CTA BAND PRO ===== */
.cta-pro {
    position: relative;
    overflow: hidden;
    background: var(--pro-gradient-dark);
    border-radius: 32px;
    padding: 56px;
    color: #fff;
    text-align: center;
    box-shadow: 0 32px 64px -24px rgba(16, 32, 51, 0.4);
}

.cta-pro::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.45), transparent 65%);
    pointer-events: none;
}

.cta-pro::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 65%);
    pointer-events: none;
}

.cta-pro > * {
    position: relative;
    z-index: 1;
}

.cta-pro h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.cta-pro p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
}

.cta-pro__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
}

.cta-pro__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.cta-pro__phone i {
    color: var(--color-primary);
}

/* ===== SERVICE BAR (chiffres clés sous le hero) ===== */
.service-bar {
    background: var(--color-secondary);
    color: #fff;
    padding: 28px 0;
}

.service-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.service-bar__item i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 107, 0, 0.18);
    color: #ffb300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.service-bar__item strong {
    display: block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    line-height: 1.2;
}

.service-bar__item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1120px) {
    .hero-pro__panel {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-pro__metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .coverage-wrap { grid-template-columns: 1fr; }
    .pricing-pro { grid-template-columns: 1fr; }
    .pricing-pro__card--featured { transform: none; }
    .why-grid { grid-template-columns: 1fr; }
    .trust-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-bar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .pro-section { padding: 64px 0; }
    .hero-pro__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .hero-pro__metric {
        border-right: 0;
        border-bottom: 1px solid rgba(16, 32, 51, 0.08);
        padding-bottom: 12px;
    }
    .hero-pro__metric:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 6px; }
    .hero-pro__trust { grid-template-columns: 1fr; }
    .hero-pro__floater { display: none; }
    .kpi-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; gap: 36px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
    .trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-bar__grid { grid-template-columns: 1fr; }
    .why-donut { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .cta-pro { padding: 36px 24px; border-radius: 22px; }
    .btn-xl { width: 100%; }
}

@media (max-width: 460px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-pro__photo { aspect-ratio: 4 / 4; }
}
