/* ============================================================
   EasyTransfert Inter — Styles
   ============================================================ */

/* ====== VARIABLES ====== */
:root {
    --et-blue:      #1A56DB;
    --et-blue-dark: #0F3A8E;
    --et-gold:      #D4A843;
    --et-gray:      #6B7280;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero-section {
    padding: 60px 0 50px;
    text-align: center;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--et-blue);
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* Mot défilant */
.hero-scroll-word {
    display: inline-flex;
    flex-direction: column;
    overflow: hidden;
    height: 1.15em;
    vertical-align: bottom;
}
.hero-scroll-word span {
    display: block;
    animation: scroll-word 6s ease-in-out infinite;
    line-height: 1.15;
}
@keyframes scroll-word {
    0%   { transform: translateY(0); }
    40%  { transform: translateY(0); }
    50%  { transform: translateY(-100%); }
    90%  { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

/* Globe + wrapper */
.globe-wrapper {
    position: relative;
    width: 660px;
    height: 600px;
    margin: 0 auto 45px;
    flex-shrink: 0;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.globe-ring-1 { width: 540px; height: 540px; }
.globe-ring-2 { width: 660px; height: 660px; }
.globe-ring-3 { width: 780px; height: 780px; }

.globe-halo {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.globe-halo-inner { width: 420px; height: 420px; background: rgba(170, 195, 241, 0.2); }
.globe-halo-outer { width: 540px; height: 540px; background: rgba(170, 195, 241, 0.15); }

.globe-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 400px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 12px 32px rgba(26, 86, 219, 0.2));
}

/* Pièces Euro */
.coin {
    position: absolute;
    width: 110px;
    height: 110px;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
    animation: float 3s ease-in-out infinite;
}
.coin img { width: 100%; height: 100%; object-fit: contain; }

.coin-1 { top: 30px;     left: 50%;   animation: float1 3.2s ease-in-out infinite; animation-delay: 0s; }
.coin-2 { top: 70px;     right: 70px; animation-delay: 0.6s; }
.coin-3 { bottom: 90px;  right: 100px; animation-delay: 1.2s; }
.coin-4 { bottom: 110px; left: 100px;  animation-delay: 1.8s; }
.coin-5 { top: 100px;    left: 70px;  animation-delay: 2.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes float1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-10px); }
}

/* Sous-titre & badges */
.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.5;
    max-width: 420px;
    margin-bottom: 30px;       /* mx-auto géré par Bootstrap */
}
.hero-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--et-gray);
    letter-spacing: 0.2px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .globe-wrapper  { width: 460px; height: 420px; }
    .globe-img      { width: 290px; height: 275px; }
    .coin           { width: 80px;  height: 80px; }
    .globe-halo-inner { width: 300px; height: 300px; }
    .globe-halo-outer { width: 390px; height: 390px; }
    .globe-ring-1 { width: 500px; height: 500px; }
    .globe-ring-2 { width: 515px; height: 515px; }
    .globe-ring-3 { width: 530px; height: 530px; }
    .coin-2 { right: 10px; }
    .coin-3 { right: 20px; bottom: 40px; }
    .coin-4 { left: 30px;  bottom: 50px; }
    .coin-5 { left: 10px; }
}
@media (max-width: 576px) {
    .globe-wrapper  { width: 320px; height: 300px; }
    .globe-img      { width: 200px; height: 190px; }
    .coin           { width: 60px;  height: 60px; }
    .globe-halo-inner { width: 210px; height: 210px; }
    .globe-halo-outer { width: 280px; height: 280px; }
    .globe-ring-1 { width: 410px; height: 410px; }
    .globe-ring-2 { width: 420px; height: 420px; }
    .globe-ring-3 { width: 430px; height: 430px; }
    .coin-1 { top: 10px; }
    .coin-2 { right: 5px;  top: 45px; }
    .coin-3 { right: 10px; bottom: 25px; }
    .coin-4 { left: 15px;  bottom: 30px; }
    .coin-5 { left: 5px;   top: 55px; }
}

/* ============================================================
   SECTION 2 — 3 ÉTAPES
   ============================================================ */
.et-steps-section {
    background: linear-gradient(180deg, #1D499B 0%, #1D499B 100%);
    padding: 80px 0 0;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
}

.et-steps-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    /* text-align géré par Bootstrap text-center */
}

.et-steps-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 60px;
    line-height: 1.6;
    /* text-align et margin:0 auto gérés par Bootstrap */
}

/* Bootstrap row — padding géré par container */
.et-steps-content {
    padding-bottom: 0;
}

/* col-lg-3 */
.et-step-text-area {
    position: relative;
    height: 290px;
    padding-bottom: 55px;
    text-align: center;
}

.et-step-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.et-step-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.et-step-slide.exit {
    opacity: 0;
    transform: translateY(-60px);
    pointer-events: none;
}

.et-step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.et-step-label {
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.et-step-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* Indicateurs — display:flex et gap gérés par Bootstrap d-flex gap-2 justify-content-center */
.et-step-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.et-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.et-step-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 5px;
}

/* col-lg-8 */
.et-phone-area {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    padding: 0;
}

/* --- Conteneur principal (Main 1.png) --- */
.et-phone-main {
    position: relative;
    width: 635px;
    flex-shrink: 0;
}

/* --- Main 1.png par-dessus l'écran --- */
.et-phone-hand {
    display: block;
    max-width: 780px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
    margin-bottom: 0;
}

/* --- Écran : carousel slide horizontal, overflow:hidden = clip --- */
.et-phone-screen {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 244px;
    height: 520px;
    border-radius: 30.01px;
    overflow: hidden;
    z-index: 3;
}

/* Track : 5 slides côte à côte, sans gap pour slide fluide */
.et-screen-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
}

/* Chaque slide = dimensions de l'écran */
.et-screen-slide {
    width: 244px;
    height: 520px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: top center;
}

/* Responsive Steps */
@media (max-width: 991px) {
    .et-steps-section { padding: 60px 0 0; }
    .et-step-text-area {
        height: 270px;
        margin-bottom: 40px;
    }
}
@media (max-width: 576px) {
    .et-phone-main   { width: 240px; height: 288px; }
    .et-phone-screen { width: 87px; height: 194px; top: 1px; border-radius: 10.7px; }
    .et-screen-slide { width: 87px; height: 194px; }
    .et-step-number  { font-size: 2.2rem; }
}

/* ============================================================
   SECTION 3 — CHIFFRES CLÉS
   ============================================================ */
.et-stats-section {
    background: #1D499B;
    padding: 80px 0 0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.et-stats-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #98B7F3;
    line-height: 1.1;
    margin-bottom: 24px;
}
.et-stats-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    max-width: 500px;
    line-height: 1.6;
    /* margin:0 auto géré par Bootstrap mx-auto */
}

/* col-12 col-lg-5 */
.et-stats-list {
    padding-bottom: 80px;
}

/* Séparateur vertical entre items (stacking col-12 et col-lg-12) */
.et-stat-item + .et-stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}
/* Pas de séparateur quand les items sont côte à côte (col-md-4) */
@media (min-width: 768px) and (max-width: 991px) {
    .et-stat-item + .et-stat-item { border-top: none; padding-top: 0; }
}

.et-stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}
.et-stat-label {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.et-stat-desc {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* col-12 col-lg-7 */
.et-stats-phone {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* position-relative géré par Bootstrap dans le blade */
.et-phone-wrap {
    width: 320px;
    flex-shrink: 0;
}
/* z-index, filter spécifiques au projet — width/display gérés par Bootstrap w-100 d-block */
.et-phone-main-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}
.et-phone-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(180deg, rgba(29, 73, 155, 0) 0%, #1D499B 100%);
    z-index: 3;
    pointer-events: none;
}

.et-phone-card {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 4;
    /* width/display des img gérés par Bootstrap w-100 d-block */
}

/* Responsive Stats */
@media (max-width: 991px) {
    .et-stats-list { padding-bottom: 0; }
    .et-stats-phone { width: 100%; max-width: 500px; }
}
@media (max-width: 576px) {
    .et-phone-wrap { width: 240px; }
    .et-phone-card { width: 130px; right: -10px; bottom: 40px; }
}

/* ============================================================
   SECTION 4 — CARDS SCROLL SNAP
   ============================================================ */
.et-snap-section {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    
}




.et-layer-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.et-layer-img {
    width: 100%;
    display: block;
}

/* Conteneur simple — le scroll se fait sur la page */
.et-snap-viewport {
    max-width: 1074px;
    margin: 0 auto;
    position: relative;
}

/* Chaque card est sticky : la suivante vient la couvrir par-dessus */
.et-snap-card {
    position: sticky;
    top: 100px;
    width: 1000px ;
    height: 400px;
    background: linear-gradient(180deg, #306EE4 0%, #1B3D7E 100%);
    border-radius: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 48px 64px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 300px;
    transform-origin: top center;
    will-change: transform;
}
.et-snap-card:last-child { margin-bottom: 0; }
.et-snap-card:nth-child(1) { z-index: 10; }
.et-snap-card:nth-child(2) { z-index: 20; }
.et-snap-card:nth-child(3) { z-index: 30; }

/* Card 1 — titre partenaires */
.et-snap-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

.et-snap-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.et-logo-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

/* Card 2 — utilisateurs */
.et-snap-users {
    display: flex;
    align-items: center;
    gap: 32px;
}

.et-avatars {
    display: flex;
}
.et-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    overflow: hidden;
    margin-left: -18px;
    flex-shrink: 0;
}
.et-avatar:first-child { margin-left: 0; }
.et-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.et-snap-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 115px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    white-space: nowrap;
}
.et-snap-count-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.et-snap-label {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
}

/* Card 3 — transferts */
.et-snap-big-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}
.et-snap-big-label {
    font-size: 2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .et-snap-card          { height: 320px; border-radius: 36px; padding: 32px; margin-bottom: 200px; }
    .et-snap-title         { font-size: 1.4rem; line-height: 1.3; }
    .et-snap-big-number    { font-size: 4rem; line-height: 1; }
    .et-snap-count         { font-size: 3.5rem; line-height: 1; }
    .et-logo-badge         { width: 60px; height: 60px; }
    .et-avatar             { width: 48px; height: 48px; font-size: 1.5rem; }
}

/* ============================================================
   SECTION CONVERTISSEUR — Layout + scroll sticky
   ============================================================ */
.et-conv-section {
    padding: 100px 0 160px;
    min-height: 140vh;          /* espace de scroll suffisant */
    overflow: hidden;
}

/* Colonne texte : espace vertical généreux pour le scroll */
.et-conv-text-col {
    padding-top: 20px;
    padding-right: 40px;
}

/* Colonne carte : sticky — reste dans la fenêtre pendant le scroll */
.et-conv-sticky-col {
    position: sticky;
    top: 100px;                 /* offset nav */
    align-self: flex-start;
    will-change: transform;
}

/* ============================================================
   SECTION CONVERTISSEUR — Carte bleue
   ============================================================ */
.et-converter-card {
    position: relative;
    background: #3B82F6;
    border-radius: 28px;
    padding: 24px 20px 20px;
    width: 100%;
    max-width: 420px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.35);
}

/* Champ (send / receive) */
.et-conv-field {
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    position: relative;
}
.et-conv-field--receive {
    margin-top: 0;
}

.et-conv-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1D499B;
    margin-bottom: 4px;
}
.et-conv-field--receive .et-conv-label {
    color: #374151;
}

.et-conv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.et-conv-amount {
    border: none;
    outline: none;
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    width: 0;
    flex: 1;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}
.et-conv-amount::-webkit-outer-spin-button,
.et-conv-amount::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Sélecteur de devise */
.et-conv-currency {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #F3F4F6;
    border-radius: 30px;
    padding: 6px 12px 6px 8px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #111827;
    -webkit-user-select: none;
    user-select: none;
    transition: background 0.15s;
}
.et-conv-currency:hover { background: #E5E7EB; }
.et-conv-currency--outline {
    background: transparent;
    border: 1.5px solid #D1D5DB;
}
.et-conv-currency--outline:hover { background: #F9FAFB; }

.et-conv-currency img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dropdown sélecteur devise */
.et-currency-dropdown {
    position: absolute;
    z-index: 100;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    overflow: hidden;
}
.et-currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: background 0.12s;
}
.et-currency-option:hover { background: #F3F4F6; }
.et-currency-option img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* Bouton swap */
.et-conv-swap-wrap {
    display: flex;
    justify-content: center;
    margin: -14px 0;
    position: relative;
    z-index: 2;
}
.et-conv-swap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1D499B;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, background 0.15s;
}
.et-conv-swap:hover { background: #163880; }
.et-conv-swap.spinning { animation: et-spin 0.4s ease; }
@keyframes et-spin {
    from { rotate: 0deg; }
    to   { rotate: 180deg; }
}

/* Taux affiché */
.et-conv-rate {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    margin: 16px 0 12px;
}

/* Boutons montants rapides */
.et-conv-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.et-conv-preset {
    background: #fff;
    border: none;
    border-radius: 50%;
    aspect-ratio: 1;
    font-size: 0.78rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.et-conv-preset:hover { background: #E5E7EB; transform: scale(1.05); }
.et-conv-preset:active { transform: scale(0.97); }

@media (max-width: 576px) {
    .et-converter-card { padding: 18px 14px 16px; }
    .et-conv-amount { font-size: 1.6rem; }
}

/* ============================================================
   SECTION FEATURES — "Tout ce qu'il vous faut"
   ============================================================ */
.et-features-section {
    background-color: #111827;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    font-family: 'Montserrat', sans-serif;
}

.et-features-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 48px;
}

/* Cards */
.et-feat-card {
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    min-height: 200px;
}

.et-feat-card--white  { background: #ffffff; }
.et-feat-card--purple { background: #F0E6FF; }
.et-feat-card--pink   { background: #FFE4E4; }
.et-feat-card--blue   { background: #DCF0FF; }

.et-feat-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.et-feat-card--white  .et-feat-card-title { color: #111827; }
.et-feat-card--purple .et-feat-card-title { color: #7C3AED; }
.et-feat-card--pink   .et-feat-card-title { color: #EF4444; }
.et-feat-card--blue   .et-feat-card-title { color: #1A56DB; }

.et-feat-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.et-feat-card--white  .et-feat-card-desc { color: #374151; }
.et-feat-card--purple .et-feat-card-desc { color: #6D28D9; }
.et-feat-card--pink   .et-feat-card-desc { color: #DC2626; }
.et-feat-card--blue   .et-feat-card-desc { color: #1D499B; }

/* Footer texte */
.et-features-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
    max-width: 680px;
    margin: 56px auto 0;
}

@media (max-width: 768px) {
    .et-features-title { margin-bottom: 32px; }
    .et-feat-card { min-height: 160px; }
}

/* ============================================================
   SECTION JOIN — "Rejoignez les 1M+ personnes"
   ============================================================ */
.et-join-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.et-join-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 36px;
    background: linear-gradient(90deg, #1D499B 33.17%, #00BFFF 68.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.et-join-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.et-join-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #D1D5DB;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
}

.et-join-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.et-join-img {
    max-width: 480px;
}

@media (max-width: 991px) {
    .et-join-badges { grid-template-columns: 1fr 1fr; }
    .et-join-img { max-width: 360px; margin-top: 40px; }
}

@media (max-width: 576px) {
    .et-join-badges { grid-template-columns: 1fr; }
    .et-join-badge { white-space: normal; }
}

/* Styles personnalisés pour la carte */
    .promo-section {
      font-family: 'Montserrat', sans-serif;
    }

    .promo-card {
      background-color: #204c99; /* Couleur bleue principale */
      border-radius: 2.5rem; /* Bords très arrondis comme sur l'image */
      overflow: hidden; /* Empêche le contenu de déborder de la carte */
    }

    /* Typographie */
    .promo-heading {
      font-size: 3.8rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .text-cyan {
      color: #00bdf2 !important; /* Bleu clair / Cyan */
    }

    .promo-description {
      font-size: 1.2rem;
      font-weight: 400;
      opacity: 0.95;
    }

    /* Bouton et QR Code */
    .btn-download {
      background-color: #0076bb; /* Bleu du bouton */
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .btn-download:hover {
      background-color: #008cdb;
      color: #ffffff;
    }

    .qr-wrapper {
      background-color: #ffffff;
      padding: 0.6rem;
      border-radius: 1rem;
      display: inline-block;
    }

    .qr-wrapper img {
      width: 140px;
      height: 140px;
      object-fit: contain;
    }

    /* Ajustement de l'image du téléphone */
    .phone-mockup {
      max-width: 100%;
      height: auto;
      margin-bottom: -3rem; /* Fait légèrement "sortir" le téléphone vers le bas */
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .promo-heading { font-size: 2.8rem; }
      .phone-mockup { margin-bottom: 0; padding-bottom: 2rem; }
    }