/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 66px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header VIOLET */
.header-purple {
    background-color: #400E57;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.container-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left-section {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 26px;
    width: auto;
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-tagline {
    color: #fff;
    font-size: 14px;
    font-family: "Hanken Grotesk", Sans-serif;
}

.header-stars-img {
    height: 18px;
    width: auto;
}

.header-phone-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #F5674C;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    white-space: nowrap;
}

/* Hero Section VIOLET 2 colonnes */
.hero-purple {
    background-color: #400E57;
    padding: 60px 0 120px 0;
}

.container-hero {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    color: #fff;
}

.hero-main-title {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1em;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-delay {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.hero-availability {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.orange-text {
    color: rgb(245, 103, 76);
    font-weight: 400;
}

.hero-phone-btn {
    display: inline-block;
    background-color: #F96D3D;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    border-radius: 16px;
    margin-bottom: 15px;
}

.hero-status {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

.green-dot {
    display: flex;
    width: 14px;
    height: 14px;
    background-color: #09dc95;
    border-radius: 100px;
    position: relative;
}

.green-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background-color: rgba(9, 220, 149, 0.7);
    animation: effect-pulse 2s ease-out infinite;
    will-change: transform, opacity;
}

@keyframes effect-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0;   }
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-main-img {
    width: 579px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-bubble {
    position: absolute;
    width: 175px;
    height: 156px;
    background: rgb(255 103 0 / 70%);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    backdrop-filter: blur(2.8px);
    -webkit-backdrop-filter: blur(2.8px);
    border: 1px solid rgb(255 178 4 / 53%);
    padding: 15px;
    left: -40px;
    bottom: -40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.price-label {
    display: block;
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    color: #FFE3D9;
    margin-bottom: 5px;
    align-self: flex-start;
}

.price-value {
    display: block;
    font-family: "Hanken Grotesk", sans-serif;
    color: white;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
}

.price-value sup {
    font-size: 2.8rem;
    vertical-align: super;
    padding-left: 5px;
    font-weight: 400;
}

.price-value .asterisk {
    padding-left: 8px;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    vertical-align: super;
}

/* Avantages */
.advantages-section {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #E7E7E7;
}

.advantages-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.adv-icon {
    flex-shrink: 0;
}

.adv-icon img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.adv-title {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    text-align: left;
    margin: 0;
}

/* Services */
.services-white {
    background: #fff;
    padding: 80px 0;
}

.services-heading {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1em;
    letter-spacing: -0.8px;
    color: #444343;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-box {
    background: #fff;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0) 0px 8px 24px;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-box:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.service-name-black {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1em;
    color: #2D2D33;
    margin: 15px 0 10px 0;
    padding: 0 15px;
}

.discover-link {
    font-family: "Roboto", Sans-serif;
    background-color: transparent;
    color: #F96D3D;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    padding: 0 15px 15px 15px;
}

.discover-link:hover {
    text-decoration: underline;
}

/* Étapes avec numéros ORANGE */
.steps-white {
    background: #fff;
    padding: 80px 0;
}

.steps-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1em;
    letter-spacing: -0.8px;
    color: #444343;
    text-align: center;
    margin-bottom: 50px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-col {
    text-align: center;
}

.step-number-orange {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #ff6b35;
    border: 4px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title-black {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1em;
    color: #000;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Témoignages FOND ORANGE */
/* Testimonials Wrapper */
.testimonials-section-wrapper {
    position: relative;
    font-size: 34px;
    height: 650px;
}

.testimonials-orange {
    background-color: #F96D3D;
    height: 323px;
    padding: 40px 0 0 0;
    color: #fff;
    position: relative;
    overflow: visible;
}

.testimonials-orange .container {
    max-width: 1300px;
}

.stars-title {
    text-align: center;
    font-size: 48px;
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonials-title-white {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1em;
    letter-spacing: -0.8px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 80px;
}

.testimonial-white-card {
    background-color: #ffffff;
    border-color: transparent;
    border-radius: 8px;
    border-style: solid;
    border-width: 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 16px;
    color: #333;
}

.testimonial-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #000;
    margin-bottom: 12px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.trustpilot-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
}

.star-icon {
    display: inline-block;
    line-height: 0;
}

.verified-badge-green {
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0.6;
    padding-left: 16px;
}

.testimonial-content {
    font-size: 14px;
    color: #000;
    line-height: 21px;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Sections de texte */
.text-section-white {
    background: #fff;
    padding: 0 0 14px 0;
}


.text-section-divider {
    border-top: 1px solid #DDDDDD;
    margin: 24px 0 25px 0;
}

.text-heading {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1em;
    color: rgb(51, 51, 51);
    margin-bottom: 20px;
    text-align: left;
}

.text-paragraph {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(45, 45, 51);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

/* Formulaire avec image de fond */
.form-section-image {
    background: url('images/form-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;

}

.form-overlay {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.form-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.form-title-white {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1em;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.form-title-divider {
    width: 35%;
    background: transparent;
    border-top: 2px solid #F96D3D;
    margin-bottom: 30px;
}

.form-right-box {
    background-color: #F96D3D80;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 477px;
}

.orange-form {
    color: #fff;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group-orange {
    margin-bottom: 20px;
}

.form-group-orange label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group-orange input,
.form-group-orange textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.form-group-orange textarea {
    resize: vertical;
}

.form-btn-dark {
    width: 48% !important;
    padding: 15px;
    background-color: #4d5050 !important;
    color: #ffffff !important;
    border: 0px !important;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
}

.form-btn-dark:hover {
    background: #1a252f;
}

.form-btns-row {
    display: flex;
    gap: 15px;
}

.form-btn-light {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.form-btn-light:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer-simple {
    background-color: #FFF6F0;
    height: 82px;
    padding: 0;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.footer-simple .container {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.footer-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-copy {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.footer-phone-btn {
    display: none;
}

.footer-mobile {
    display: none;
}

.footer-desktop {
    display: block;
}

.footer-links-center {
    font-size: 12px;
    text-align: center;
}

.footer-links-center a {
    color: #ddd;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links-center a:hover {
    color: #ff6b35;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Hero */
    .container-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-main-title {
        text-align: center;
    }

    .hero-delay {
        text-align: center;
    }

    .hero-availability {
        text-align: center;
    }

    .hero-phone-btn {
        display: inline-block;
    }

    .hero-status {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-main-img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    /* Advantages */
    .advantages-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .adv-title {
        text-align: center;
    }

    /* Services */
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-2 {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps-row {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Price bubble */
    .price-bubble {
        width: 180px;
        height: auto;
        left: 50%;
        bottom: -56px;
        transform: translateX(-50%);
        padding: 15px;
    }

    /* Form */
    .form-content-wrapper {
        grid-template-columns: 1fr;
    }

    .form-btns-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .header-tagline {
        display: none;
    }

    .header-stars-img {
        display: none;
    }

    .header-phone-btn {
        display: flex;
    }

    /* Footer mobile */
    .footer-simple {
        display: flex;
        height: auto;
        padding: 20px 0;
    }

    .footer-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 10px;
    }

    .footer-copy {
        display: flex;
        align-items: center;
        color: #666;
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .footer-phone-btn {
        display: none;
    }

    .footer-links-center {
        display: block;
        font-size: 12px;
        text-align: center;
    }

    .footer-links-center a {
        display: inline;
        color: #666;
        text-decoration: none;
        margin: 0 5px;
    }

    /* Header mobile */
    .container-header {
        padding: 0 20px;
    }

    .header-tagline {
        display: none;
    }

    /* Hero mobile */
    .hero-purple {
        padding: 40px 0 120px 0;
    }

    .container-hero {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-main-title {
        font-size: 43px;
        text-align: center;
    }

    .hero-delay {
        font-size: 1.3rem;
        text-align: center;
    }

    .hero-availability {
        font-size: 1rem;
        text-align: center;
    }

    .hero-phone-btn {
        font-size: 1.5rem;
        padding: 10px 20px;
        display: inline-block;
    }

    .hero-status {
        justify-content: center;
        font-size: 1rem;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-main-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 579 / 500;
    }

    .price-bubble {
        width: 180px;
        height: auto;
        left: 50%;
        bottom: -56px;
        transform: translateX(-50%);
        padding: 15px;
    }

    .price-label {
        font-size: 20px;
    }

    .price-value {
        font-size: 88px;
    }

    .price-value sup {
        font-size: 39px;
    }

    .price-value .asterisk {
        font-size: 24px;
        padding-left: 8px;
        vertical-align: super;
    }

    /* Advantages mobile */
    .advantages-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .adv-title {
        text-align: center;
    }

    /* Services mobile */
    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .services-grid-2 {
        grid-template-columns: 1fr;
    }

    /* Steps mobile */
    .steps-row {
        grid-template-columns: 1fr;
    }

    /* Testimonials mobile */
    .testimonials-section-wrapper {
        height: auto;
        padding-bottom: 35px;
    }

    .testimonials-orange {
        height: auto;
        padding: 30px 0 35px 0;
    }

    .testimonials-row {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    /* Form mobile */
    .form-btns-row {
        flex-direction: column;
    }

    /* Line-height titres mobile */
    .hero-main-title {
        line-height: 1.1em;
    }

    .hero-delay {
        line-height: 1.1em;
    }

    .services-heading,
    .steps-heading,
    .testimonials-title-white,
    .form-title-white {
        line-height: 1.1em;
        margin-bottom: 30px;
    }

    /* Marges sections mobile — padding-bottom 35px partout */
    .advantages-section {
        padding: 20px 0 35px 0;
    }

    .services-white,
    .steps-white {
        padding: 40px 0 35px 0;
    }

    .form-overlay {
        padding: 40px 0 35px 0;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 43px;
    }

    .services-heading,
    .steps-heading,
    .testimonials-title-white {
        font-size: 28px;
    }

    .form-title-white {
        font-size: 32px;
    }
}

/* ---- intl-tel-input overrides ---- */
.iti { width: 100%; }
.iti__flag-container { position: absolute; }
.iti input[type=tel] { padding-left: 90px !important; }

/* Dial code and arrow always black, regardless of background */
.iti__selected-flag,
.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background-color: rgba(255,255,255,0.85) !important;
    border-radius: 6px 0 0 6px;
}
.iti__selected-dial-code {
    color: #1a1a1a !important;
    font-weight: 600;
}
.iti__arrow {
    border-top-color: #1a1a1a !important;
    border-bottom-color: #1a1a1a !important;
}
/* Dropdown list items — country name and dial code in black */
.iti__country-list .iti__country-name,
.iti__country-list .iti__dial-code {
    color: #1a1a1a !important;
}
.iti__country-list {
    background-color: #fff !important;
    color: #1a1a1a !important;
}

/* Persistent mask: letter-spacing for _ _ _ _ _ visual */
#codepostal,
.iti input#telephone {
    letter-spacing: 1.5px;
    font-family: monospace, sans-serif;
}

/* ---- Form error states ---- */
.is-error {
    border: 2px solid #e53e3e !important;
    background-color: #fff5f5 !important;
    border-radius: 8px;
}
.form-error {
    display: block;
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* ---- Form success ---- */
.form-success {
    text-align: center;
    padding: 30px 20px;
    color: #fff;
}
.form-success p {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.5;
}
