*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(14, 174, 111, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 184, 106, 0.22), transparent 30%),
        linear-gradient(180deg, #fff8ef 0%, #f6efe7 46%, #f3f5f8 100%);
    color: #0d1821;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.app-shell {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 16px 0;
}

/* Hero Panel */
.hero-panel {
    position: relative;
    z-index: 10001;
    border: 1px solid rgba(13, 24, 33, 0.08);
    background: rgba(250, 245, 239, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 44px rgba(13, 24, 33, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 10px;
    background:
        radial-gradient(circle at top right, rgba(25, 195, 125, 0.18), transparent 32%),
        radial-gradient(circle at left bottom, rgba(242, 166, 90, 0.2), transparent 28%),
        rgba(250, 245, 239, 0.9);
}

.hero-copy h1 {
    font-size: clamp(24px, 5.8vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;

}

.hero-title-sub {
    display: block;
    margin-top: 10px;
    color: rgba(13, 24, 33, 0.72);
    font-size: clamp(15px, 3.2vw, 24px);
    font-weight: 520;
    letter-spacing: 0;
}

@keyframes title-shimmer {
    0% { background-position: 160% 0; }
    100% { background-position: -160% 0; }
}

/* Kicker */
.kicker-wrap {
    margin: 0 0 14px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(16, 34, 49, 0.92);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #32d39a, #8ff7d0);
    box-shadow: 0 0 0 5px rgba(50, 211, 154, 0.16);
    flex: 0 0 auto;
}

/* Screenshots */
.screenshots-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 8px;
    margin-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 24, 33, 0.2) transparent;
}

.screenshots-row::-webkit-scrollbar {
    display: block;
    height: 6px;
}

.screenshots-row::-webkit-scrollbar-track {
    background: transparent;
}

.screenshots-row::-webkit-scrollbar-thumb {
    background: rgba(13, 24, 33, 0.2);
    border-radius: 3px;
}

.screenshots-row::-webkit-scrollbar-thumb:hover {
    background: rgba(13, 24, 33, 0.35);
}

.screenshot-item {
    flex: 0 0 auto;
    width: 280px;
}

/* L'item vidéo ne force pas 280px : il suit la largeur calculée par le ratio */
.screenshot-item:first-child {
    width: auto;
    flex: 0 0 auto;
}

.screenshot-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.screenshot-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 80%;
}

.screenshot-lines .line {
    height: 4px;
    border-radius: 2px;
    background: #333;
}

.screenshot-video-wrap {
    width: auto;
    height: 280px;
    max-height: 280px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.screenshot-video-wrap .video-js {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.screenshot-video-wrap .video-js .vjs-tech {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.screenshot-video-wrap .vjs-poster {
    background-size: cover !important;
    background-position: center !important;
}
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.4);
    width: 56px;
    height: 56px;
    line-height: 56px;
    margin-top: -28px;
    margin-left: -28px;
    font-size: 1.2em;
}

.screenshot-video-wrap .vjs-big-play-button .vjs-icon-placeholder::before {
    font-size: 36px;
    line-height: 56px;
}

.screenshot-video-wrap .vjs-control-bar {
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    border-radius: 0 0 10px 10px;
    height: 3.4em;
    opacity: 1;
}

.screenshot-video-wrap .vjs-progress-holder {
    margin: 0 8px;
}

/* Feature Badges */
/* Panels */
.panel {
    border: 1px solid rgba(13, 24, 33, 0.08);
    background: rgba(250, 245, 239, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 44px rgba(13, 24, 33, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 22px 20px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0d1821;
}

.section-subtitle {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(13, 24, 33, 0.72);
    line-height: 1.6;
}

/* Check List */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    font-size: 16px;
}

/* Cross List */
.cross-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.cross-icon {
    flex-shrink: 0;
    font-size: 16px;
}

.highlight-text {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #0d1821;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    background-color: rgb(248, 212, 129);
    margin-bottom: 10px;
    color: rgb(32, 33, 36);
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(248, 212, 129, 0.4);
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-row .cta-button {
    flex: 1;
    min-width: 260px;
    margin-bottom: 0;
}

.tg-cta-telegram {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 260px;
    padding: 12px 6px;
    background: #0088cc;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: transform 0.15s, box-shadow 0.15s;
}

.tg-cta-telegram:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.4);
}

.tg-cta-telegram .tg-icon-wrap {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0088cc;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.35);
}

.tg-cta-telegram .tg-icon-wrap svg {
    width: 45px;
    height: 45px;
    fill: #fff;
}

.urgency-text {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #d32f2f;
    line-height: 1.4;
}

.urgency-green {
    color: #22c55e;
}

/* Benefits */
.benefits-section {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.benefit-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Offer Notice */
.offer-notice {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    font-weight: 600;
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(13, 24, 33, 0.7);
}

.notice-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.cta-button-notice {
    margin-bottom: 0;
    margin-top: 12px;
}

.platform-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 18px;
    height: 18px;
}

/* Reviews */
.demo-user-reviews {
    display: flex;
    gap: 14px;
    padding: 5px 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.demo-user-review {
    display: block;
    flex: 0 0 min(76vw, 280px);
    border-radius: 18px;
    border: 1px solid rgba(19, 33, 44, 0.09);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 34px rgba(13, 24, 33, 0.08);
    overflow: hidden;
}

.demo-user-review img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

/* Final CTA */
.cta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.cta-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    max-width: 720px;
    margin: 20px auto 200px;
    padding: 0 16px;
}

.site-footer-inner {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(13, 24, 33, 0.08);
    background: rgba(250, 245, 239, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(13, 24, 33, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 22px 20px;
}

.site-footer-lead {
    color: rgba(13, 24, 33, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-footer-lead b {
    color: #0d1821;
}

.site-footer-meta {
    color: rgba(13, 24, 33, 0.7);
    font-size: 0.88rem;
}

.site-footer-meta p {
    margin: 0;
}

/* Telegram Bubble */
.telegram-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 6px 18px 6px 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.telegram-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

.bubble-avatar {
    position: relative;
    flex-shrink: 0;
}

.bubble-face {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.bubble-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.bubble-question {
    font-size: 13px;
    font-weight: 600;
    color: #0d1821;
}

.bubble-online {
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 24px;
    padding: 32px 24px 24px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 4px;
}

.modal-option {
    margin-bottom: 10px;
}

.modal-option-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0d1821;
}

.modal-partenaires {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.modal-sans {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.modal-list {
    list-style: none;
    margin-bottom: 14px;
}

.modal-list li {
    font-size: 14px;
    color: #4b5563;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.modal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #d1d5db;
    border-radius: 50%;
}

.modal-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 20px -24px;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
}

.modal-btn-telegram {
    background: #0088cc;
    color: #fff;
}

.modal-btn-green {
    background: #22c55e;
    color: #fff;
}

/* PDC — Confirmation Page */
.pdc-card[hidden],
.pdc-kicker-wrap[hidden],
.pdc-title[hidden],
.pdc-subtitle[hidden],
.pdc-question[hidden] { display: none !important; }

.pdc-shell {
    max-width: 800px;
    padding: 20px 16px 40px;
}

.pdc-hero {
    position: relative;
    z-index: 10001;
    border: 1px solid rgba(13, 24, 33, 0.08);
    background: rgba(250, 245, 239, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 44px rgba(13, 24, 33, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 28px 24px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at top right, rgba(25, 195, 125, 0.18), transparent 32%),
        radial-gradient(circle at left bottom, rgba(242, 166, 90, 0.2), transparent 28%),
        rgba(250, 245, 239, 0.9);
}

.pdc-title {
    font-size: clamp(26px, 6vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 6px;
    line-height: 1.1;
    color: #0d1821;
}

.pdc-subtitle {
    margin: 0 0 22px;
    font-size: clamp(22px, 4vw, 28px);
    line-height: 1.2;
    letter-spacing: 0;
}

.pdc-subtitle-green {
    color: rgba(13, 24, 33, 0.72);
    font-weight: 520;
}

.pdc-subtitle-shimmer {
    display: block;
    margin-top: 4px;
    font-weight: 520;
    background:
        linear-gradient(
            110deg,
            rgba(13, 24, 33, 0.72) 0%,
            rgba(13, 24, 33, 0.72) 36%,
            rgba(14, 174, 111, 0.98) 48%,
            rgba(255, 255, 255, 0.98) 52%,
            rgba(13, 24, 33, 0.72) 64%,
            rgba(13, 24, 33, 0.72) 100%
        );
    background-size: 320% 100%;
    background-position: 160% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pdc-shimmer 6.8s linear infinite;
}

@keyframes pdc-shimmer {
    0% { background-position: 160% 0; }
    100% { background-position: -160% 0; }
}

.pdc-card {
    display: grid;
    gap: 18px;
    width: 100%;
    padding: clamp(18px, 4vw, 28px);
    border: 1px solid rgba(19, 33, 44, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 34px rgba(13, 24, 33, 0.08);
}

.pdc-question {
    margin: 0;
    color: #102231;
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    line-height: 1.2;
    letter-spacing: 0;
    text-wrap: balance;
}

.pdc-choices {
    display: grid;
    gap: 12px;
}

.pdc-choice {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 60px;
    padding: 12px 16px;
    border: 1px solid rgba(16, 34, 49, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #102231;
    text-align: left;
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(13, 24, 33, 0.06);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.pdc-choice:hover,
.pdc-choice:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(14, 174, 111, 0.46);
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(13, 24, 33, 0.1);
    outline: none;
}

.pdc-choice-icon {
    flex: 0 0 auto;
    width: 2rem;
    font-size: 1.3rem;
    line-height: 1;
    text-align: center;
}

.pdc-choice-icon-telegram {
    color: #0088cc;
}

.pdc-choice-icon-telegram svg {
    width: 22px;
    height: 22px;
}

.pdc-choice-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.pdc-choice-final {
    border-color: rgba(33, 167, 231, 0.34);
    background: linear-gradient(135deg, #21a7e7, #0b7dc5);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(11, 125, 197, 0.26);
}

.pdc-choice-final:hover,
.pdc-choice-final:focus-visible {
    border-color: rgba(33, 167, 231, 0.72);
    background: linear-gradient(135deg, #25b2f2, #0b7dc5);
    box-shadow: 0 22px 34px rgba(11, 125, 197, 0.3);
}

/* Logo slider */
.pdc-logos {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

.pdc-logo-row {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.pdc-logo-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: pdc-slide-left 24s linear infinite;
}

.pdc-logo-track-reverse {
    animation: pdc-slide-right 24s linear infinite;
}

@keyframes pdc-slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pdc-slide-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.pdc-logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 10rem;
    height: 48px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(19, 33, 44, 0.06);
    font-size: 0.92rem;
    font-weight: 700;
    color: #102231;
    white-space: nowrap;
    flex-shrink: 0;
}

.pdc-logo-chip img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .pdc-shell {
        padding: 10px 10px 32px;
    }

    .pdc-hero {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .pdc-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .pdc-choice {
        min-height: 54px;
    }

    .pdc-logo-chip {
        min-width: 8.5rem;
        height: 42px;
        font-size: 0.85rem;
    }

    .pdc-logo-row {
        mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    }
}

@media (max-width: 480px) {
    .app-shell {
        padding: 0;
    }

    .hero-panel {
        padding: 10px;
        border-radius: 0px;
    }

    .panel {
        padding: 10px;
        border-radius: 0px;
    }

.site-footer {
        padding: 0 5px;
        max-width: 100%;
    }
    .site-footer-inner {
        padding: 18px 16px;
    }
.benefits-section {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

    .screenshot-item {
        width: 280px;
    }

    .screenshots-row {
        scrollbar-width: none;
    }

    .screenshots-row::-webkit-scrollbar {
        display: none;
    }

    .demo-user-review {
        flex: 0 0 72vw;
    }

    .telegram-bubble {
        bottom: 16px;
        right: 16px;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .bubble-face {
        width: 38px;
        height: 38px;
    }
    .bubble-question {
        font-size: 12px;
    }
    .bubble-online {
        font-size: 11px;
    }
}

/* TG Quiz & Install Cards */
.tg-cta-main {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: rgb(248, 212, 129);
    color: rgb(32, 33, 36);
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.tg-cta-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(248, 212, 129, 0.4);
}
.tg-cta-sub {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin: 4px 0 0;
    color: #374151;
}
.tg-quiz-card,
.tg-install-card {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tg-quiz-card[hidden],
.tg-install-card[hidden] {
    display: none;
}
.tg-quiz-question {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.tg-install-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
}
.tg-quiz-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
}
.tg-quiz-btn-no {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}
.tg-quiz-btn-no:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}
.tg-quiz-btn-install {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}
.tg-quiz-btn-install:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}
.tg-quiz-btn-yes {
    background: #0088cc;
    color: #fff;
}
.tg-quiz-btn-yes:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.35);
}
/* --- /ia sur-headline --- */
.sur-headline {
    margin-bottom: 12px;
    padding: 12px 16px;
    background: rgba(0, 102, 204, 0.10);
    border-left: 3px solid #0066cc;
    border-radius: 6px;
    text-align: left;
}
.sur-headline-text {
    font-size: 14px;
    font-weight: 700;
    color: #003d80;
    line-height: 1.5;
    margin: 0;
}
.sur-headline-text + .sur-headline-text {
    margin-top: 4px;
}

/* --- /ia stats blocks --- */
.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0;
}
.stat-block {
    background: rgba(0, 200, 83, 0.08);
    border-left: 3px solid #00c853;
    border-radius: 6px;
    padding: 12px 16px;
    text-align: center;
}
.stat-number {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #00a84d;
    line-height: 1.5;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .stats-section {
        gap: 20px;
    }
    .stat-block {
        padding: 12px 6px;
    }
    .screenshots-row {
        margin-bottom: 0;
    }
}

/* --- /ia CTA features --- */
.cta-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 8px;
}
.cta-feature {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

/* --- /ia Garantie --- */
.garantie-badge {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    color: black !important;
    margin-bottom: 8px;
}
.garantie-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.garantie-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1a2a3a;
}

/* --- /ia CTA sticky mobile --- */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: calc(720px - 32px);
    width: 100%;
    z-index: 99999;
    background: rgba(250, 245, 239, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
@media (max-width: 480px) {
    .cta-sticky {
        padding: 8px 10px;
    }
    .cta-sticky .cta-features {
        margin-bottom: 4px;
        justify-content: center;
    }
    .cta-sticky .cta-button {
        margin-bottom: 4px;
        padding: 14px 20px;
        font-size: 15px;
        text-align: center;
    }
    .cta-sticky .urgency-text {
        font-size: 13px;
        margin: 0;
        text-align: center;
    }
}
