/* ===== VARIABLES (PALETTE OFFICIELLE) ===== */
:root {
    --color-accent: #E05CBB;              /* Magenta poudré */
    --color-accent-secondary: #FFDFA6;    /* Jaune sable */
    --color-bg-light: #EAF2FF;            /* Bleu très pâle */
    --color-text-main: #1C1F26;           /* Anthracite bleuté */
    --color-neutral: #D8D6E5;             /* Gris lilas */
}

/* ===== RESET SIMPLE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    background: var(--color-bg-light);
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== LAYOUT DE BASE ===== */
.ho-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.ho-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(234, 242, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 214, 229, 0.3);
}

.ho-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.ho-logo {
    height: 36px;
}

.ho-nav {
    display: flex;
    gap: 22px;
    font-size: 0.95rem;
}

.ho-nav-link {
    color: #6B6D89;
    font-weight: 500;
}

.ho-nav-link:hover {
    color: var(--color-accent);
}

.ho-header-cta {
    display: flex;
    align-items: center;
}

/* ===== BOUTONS ===== */
.ho-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.ho-btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 10px 30px rgba(224, 92, 187, 0.45);
}

.ho-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(224, 92, 187, 0.55);
}
/* CTA with icon */
.ho-btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.ho-btn-icon {
    display: block;
    flex-shrink: 0;
    margin-top: 1px; /* align perfectly with text */
}

.ho-btn-outline {
    background: white;
    color: #6B6D89;
    border: 1px solid rgba(216, 214, 229, 0.6);
}

.ho-btn-outline:hover {
    background: var(--color-accent-secondary);
}

.ho-btn-full {
    width: 100%;
}

/* ===== HERO ===== */
.ho-hero {
    padding: 10px 0 32px;
}

.ho-hero-inner {
    background: linear-gradient(135deg, #EAF2FF 0%, #FFDFA6 100%);
    border-radius: 32px;
    padding: 36px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 38px;
    box-shadow: 0 18px 60px rgba(31, 51, 125, 0.14);
}

/* Pill */
.ho-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(216, 214, 229, 0.7);
    margin-bottom: 12px;
}

.ho-pill-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
    margin-right: 8px;
}

.ho-pill-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6B6D89;
}

/* Hero text */
.ho-hero-title {
    font-size: 2.8rem;
    line-height: 1.05;
    margin: 0 0 12px;
    letter-spacing: -0.04em;
    color: var(--color-text-main);
}

.ho-hero-highlight {
    color: var(--color-accent);
}

.ho-hero-subtitle {
    margin: 0 0 18px;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.6;
    color: #6B6D89;
}

.ho-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ho-link-button {
    border: none;
    background: transparent;
    padding: 0;
    color: #6B6D89;
    font-weight: 500;
    cursor: pointer;
}

.ho-link-button:hover {
    color: var(--color-accent);
}

.ho-hero-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: #777898;
}

.ho-hero-metas span {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 4px 10px;
}

/* Hero visual */
.ho-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ho-hero-img {
    width: 300px;
    max-width: 35%;
    position: absolute;
    top: 160px;
    right: 150px;
    transform: none;
    pointer-events: none;
}

.ho-hero-img::before {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    background: #E05CBB;
    opacity: 0.35;
    filter: blur(120px);
    border-radius: 50%;
    top: -40%;
    left: -20%;
    z-index: -1;
}

.ho-hero-card {
    background: white;
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 14px 40px rgba(27, 35, 89, 0.14);
    width: 100%;
}

.ho-hero-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: #6B6D89;
}

.ho-hero-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    color: #6B6D89;
}

.ho-hero-card-list li + li {
    margin-top: 6px;
}

.ho-hero-badges {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ho-hero-badge {
    background: #EAF2FF;
    color: #3F3F5A;
    border-radius: 18px;
    padding: 10px 14px;
    box-shadow: 0 10px 25px rgba(128, 160, 255, 0.35);
}

.ho-hero-badge-number {
    font-size: 1.1rem;
    font-weight: 700;
}

.ho-hero-badge-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.ho-hero-badge-soft {
    background: rgba(255, 255, 255, 0.96);
    color: #6B6D89;
    box-shadow: 0 10px 25px rgba(216, 214, 229, 0.3);
}

.ho-hero-badge-small {
    font-size: 0.8rem;
}

/* ===== STRIP / TAGS ===== */
.ho-strip {
    padding: 10px 0 0;
}

.ho-strip-inner {
    background: white;
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(216, 214, 229, 0.25);
    overflow-x: auto;
}

.ho-strip-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-right: 20px;
    white-space: nowrap;
}

.ho-strip-tags {
    display: flex;
    gap: 8px;
}

.ho-tag {
    border-radius: 999px;
    border: none;
    padding: 5px 12px;
    font-size: 0.8rem;
    background: #EAF2FF;
    color: #6B6D89;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
text-align: center;
}

.ho-tag:hover {
    background: var(--color-accent-secondary);
}

/* ===== SECTIONS ===== */
.ho-section {
    padding: 40px 0;
}

.ho-section-alt {
    background: #EAF2FF;
}

.ho-section-header {
    text-align: left;
    margin-bottom: 20px;
}

.ho-section-title {
    font-size: 1.8rem;
    margin: 0 0 6px;
    letter-spacing: -0.03em;
    color: var(--color-text-main);
}

.ho-section-subtitle {
    margin: 0;
    font-size: 0.98rem;
    color: #6B6D89;
    max-width: 520px;
}

/* ===== TOOLS GRID ===== */
.ho-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ho-tool-card {
    background: white;
    border-radius: 20px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 30px rgba(216, 214, 229, 0.25);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Hover float sur cartes outils */
.ho-tool-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ho-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(216, 214, 229, 0.32);
}

.ho-tool-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: #EAF2FF;
    color: #6B6D89;
    font-weight: 600;
}

.ho-tool-chip-pink {
    background: #FFE3F5;
    color: #9b3c7c;
}

.ho-tool-chip-purple {
    background: #EAE4FF;
    color: #6948b5;
}

.ho-tool-title {
    margin: 4px 0 0;
    font-size: 1.05rem;
    color: var(--color-text-main);

    display: flex;
    align-items: center;
    gap: 8px;
}

.ho-tool-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ho-tool-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ho-tool-desc {
    margin: 4px 0;
    font-size: 0.9rem;
    color: #6B6D89;
}

.ho-tool-bullets {
    margin: 4px 0 0;
    padding-left: 18px;
    font-size: 0.85rem;
    color: #6B6D89;
}

.ho-tool-bullets li + li {
    margin-top: 3px;
}

.ho-tool-footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.83rem;
}

.ho-tool-link {
    color: var(--color-accent);
    font-weight: 600;
}

.ho-tool-tag {
    background: #EAF2FF;
    border-radius: 999px;
    padding: 4px 10px;
    color: #6B6D89;
}

/* ===== STEPS ===== */
.ho-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.ho-step {
    background: white;
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 8px 26px rgba(216, 214, 229, 0.25);
}

.ho-step-number {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ho-step-title {
    margin: 0 0 4px;
    font-size: 0.98rem;
    color: var(--color-text-main);
}

.ho-step-text {
    margin: 0;
    font-size: 0.86rem;
    color: #6B6D89;
}

/* ===== ABOUT / NEWSLETTER ===== */
.ho-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.ho-about-body {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #6B6D89;
    line-height: 1.6;
}

.ho-newsletter {
    background: white;
    border-radius: 22px;
    padding: 18px 18px 16px;
    box-shadow: 0 12px 34px rgba(216, 214, 229, 0.4);
}

.ho-newsletter-title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--color-text-main);
}

.ho-newsletter-text {
    margin: 0 0 10px;
    font-size: 0.88rem;
    color: #6B6D89;
}

.ho-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.ho-input {
    border-radius: 999px;
    border: 1px solid rgba(216, 214, 229, 0.9);
    padding: 10px 14px;
    font-size: 0.92rem;
    outline: none;
}

.ho-input:focus {
    border-color: rgba(216, 214, 229, 0.9);
    box-shadow: 0 0 0 1px rgba(216, 214, 229, 0.4);
}

.ho-newsletter-note {
    margin: 0;
    font-size: 0.78rem;
    color: #6B6D89;
}

/* ===== FOOTER ===== */
.ho-footer {
    border-top: 1px solid rgba(216, 214, 229, 0.6);
    padding: 16px 0 20px;
    margin-top: 20px;
    background: #EAF2FF;
}

.ho-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
    color: #6B6D89;
}

.ho-footer-links {
    display: flex;
    gap: 12px;
}

.ho-footer-link {
    color: #6B6D89;
}

.ho-footer-link:hover {
    color: var(--color-accent);
}
/* ===== MINI QUIZ — ULTRA COMPACT ===== */
.ho-mini-quiz {
    margin: 6px 0 10px;
    padding: 0;
}

.ho-quiz-title-small {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--color-text-main);
}

.ho-mini-quiz-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.ho-mini-quiz-item {
    all: unset;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 10px 12px;
    background: white;
    border: 1px solid var(--color-neutral);
    border-radius: 10px;
    cursor: pointer;
    color: var(--color-text-main);
    transition: 0.2s;
    box-sizing: border-box;
}

.ho-mini-quiz-item:hover {
    background: var(--color-accent-secondary);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}
/* ===== HELP ME CHOOSE BOX ===== */
.ho-help-box {
    margin: 12px auto 0;
    padding: 0 20px;
}

.ho-help-inner {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2px 26px;
    box-shadow: 0 6px 24px rgba(216, 214, 229, 0.35);
    max-width: 780px;
    margin: 20px auto;
    text-align: center;
}
/* État 0 — masquer la navigation */
.ho-help-inner:not(.ho-minimized) .ho-quiz-nav {
    display: none;
}
/* État minimisé après clic */
.ho-help-inner.ho-minimized {
    padding: 6px 18px;
    opacity: 0.75;
    transform: scale(0.96);
    transition: 0.25s ease;
}

.ho-help-inner.ho-minimized .ho-help-title {
    font-size: 1.05rem;
    color: #9BA0B5; /* gris plus clair */
}

.ho-help-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(216, 214, 229, 0.45);
}

/* Titre recentré verticalement */
.ho-help-inner:not(.ho-minimized) .ho-help-title {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Optionnel : main légèrement descendue */
.ho-help-inner:not(.ho-minimized) .ho-help-hand {
    margin-top: 10px;
}

/* ===== QUIZ STEP 1 ===== */
/* Fade + slide doux pour les étapes du quiz */
.ho-quiz-step {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ho-quiz-step.show {
    opacity: 1;
    transform: translateY(0);
}

.ho-quiz-step.hide {
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
}

/* Question */
.ho-quiz-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6B6D89; /* même gris que Help me choose */
    margin-bottom: 14px;
}

/* Options */
.ho-quiz-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ho-quiz-option {
    border: none;
    border-radius: 12px;
    background: #EAF2FF;
    padding: 10px 14px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s ease;
    color: #6B6D89;
}

.ho-quiz-option:hover {
    background: var(--color-accent-secondary);
    transform: translateY(-2px);
}
/* Effet de clic (tap) */
.ho-quiz-btn:active {
    transform: scale(0.97);
    background: var(--color-accent-secondary);
}

/* État sélectionné persistant */
.ho-quiz-btn.selected {
    background: var(--color-accent-secondary);
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 0 2px rgba(224, 92, 187, 0.25);
}
/* Navigation back + step dots */
.ho-quiz-nav {
    margin-top: 12px;
    padding: 6px 4px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ho-quiz-back {
    background: none;
    border: none;
    color: #6B6D89;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 0;
}

.ho-quiz-back:hover {
    color: var(--color-accent-secondary);
}

.ho-quiz-steps {
    display: flex;
    gap: 10px;
}

.ho-quiz-step-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    background: var(--color-neutral);
    color: var(--color-text-main);
    transition: 0.2s;
}

.ho-quiz-step-dot.active {
    background: var(--color-accent-secondary);
}
/* ===== MAIN QUI DÉPASSE DU BLOC ===== */
.ho-help-inner {
    position: relative; /* indispensable */
}

.ho-help-hand {
    position: absolute;
    bottom: -50px;        /* dépasse vers le bas → ajuste selon ton goût */
    right: 130px;          /* vers l'intérieur → modifiable */
    width: 220px;         /* taille DU CONTENEUR (ne change pas l’image) */
    transform: rotate(-12deg);
    pointer-events: none; /* ne bloque pas le clic */
}

.ho-help-hand img {
    width: 100%;          /* l'image prend toute la taille définie */
}

/* Halo doux derrière la main */
.ho-help-hand::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(224, 92, 187, 0.22) 0%,     /* magenta un peu plus intense */
        rgba(255, 223, 166, 0.18) 40%,   /* jaune plus visible */
        rgba(255, 223, 166, 0) 70%
    );
    filter: blur(26px);
    z-index: -1;
    animation: ho-halo-pulse 8s ease-in-out infinite;
}

/* Animation respirante */
@keyframes ho-halo-pulse {
    0%   { transform: scale(1); opacity: 0.55; }
    50%  { transform: scale(1.06); opacity: 0.75; }
    100% { transform: scale(1); opacity: 0.55; }
}

.ho-help-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #6B6D89;
    text-align: center;
}
/* ===== SOCIAL PROOF ===== */

.ho-social-proof {
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;     
    margin-bottom: 60px;
}

.ho-social-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ho-social-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 22px;
}

/* Conteneur des logos */
.ho-social-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Un badge = logo + nom */
.ho-social-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(216, 214, 229, 0.25);
}

/* Logo */
.ho-social-badge img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Nom du service */
.ho-social-badge span {
    font-size: 0.9rem;
    color: #6B6D89;
    font-weight: 600;
}
.ho-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ho-search-icon {
    color: var(--color-text-main);
    opacity: 0.6;
}
.ho-search-with-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231C1F26' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 16px;
    padding-left: 40px;
}
.ho-strip-tags .ho-search-with-icon {
    width: 220px;   /* tu peux ajuster */
}
/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .ho-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .ho-hero-visual {
        order: -1;
    }

    .ho-tools-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ho-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .ho-about-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ho-header-inner {
        gap: 10px;
    }

    .ho-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .ho-hero-inner {
        padding: 26px 18px;
    }

    .ho-hero-title {
        font-size: 2.1rem;
    }

    .ho-strip-inner {
        border-radius: 18px;
    }
}
