/* ═══════════════════════════════════════════════════════════════
   BRIO STUDIOS — Landing page Pratiquants
   Design system: #f7f5f3 bg, #C55A36 accent, Lato/Mulish
   ═══════════════════════════════════════════════════════════════ */

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

body {
    background: #f7f5f3;
    font-family: 'Lato', sans-serif;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Header ──────────────────────────────────────────────────── */

header {
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    padding: 12px 80px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
}

.blcheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1240px;
}

.center_header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.center_header img {
    width: 30px;
    height: 30px;
}

#titleco {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: var(--font-family-logo);
    cursor: pointer;
}

.nav_links {
    display: flex;
    gap: 32px;
}

.nav_links a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav_links a:hover {
    color: #C55A36;
}

.blc_header_btn {
    display: flex;
    gap: 12px;
}

.btn_header_secondary {
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_header_secondary:hover {
    border-color: #C55A36;
    color: #C55A36;
}

.btn_header_primary {
    background: #C55A36;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_header_primary:hover {
    background: #ad4c2c;
}

/* Mobile menu */
.btn_menu_mobile { display: none; }
.blc_menu_mobile { display: none; }

/* ── HERO ────────────────────────────────────────────────────── */

#hero {
    padding: 64px 80px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero_content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero_left {
    flex: 1;
    max-width: 600px;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C55A36;
    background: rgba(197, 90, 54, 0.08);
    border: 1px solid rgba(197, 90, 54, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero_badge span { font-size: 16px; color: #C55A36; }

h1 {
    font-size: 52px;
    font-weight: 900;
    color: #0a0a0a;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
    font-style: normal;
    color: #C55A36;
}

.hero_sub {
    font-size: 17px;
    font-family: 'Mulish', sans-serif;
    color: #777;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero_actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn_primary_large {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #C55A36;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn_primary_large span {
    font-size: 22px;
    color: #fff;
    transition: transform 0.2s ease;
}

.btn_primary_large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn_primary_large:hover::after { transform: translateX(0); }

.btn_primary_large:hover {
    background: #ad4c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(197, 90, 54, 0.3);
}

.btn_primary_large:hover span { transform: translateX(3px); }
.btn_primary_large:active { transform: scale(0.98); }

.btn_secondary_large {
    background: #fff;
    color: #555;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_secondary_large:hover {
    border-color: #C55A36;
    color: #C55A36;
}

/* Trust badges */
.hero_trust {
    display: flex;
    gap: 24px;
    animation: fadeUp 0.6s 0.4s ease both;
}

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

.hero_trust_item span {
    font-size: 20px;
    color: #C55A36;
}

.hero_trust_item p {
    font-size: 13px;
    font-weight: 600;
    color: #888;
}

/* ── Phone mockup ────────────────────────────────────────────── */

.hero_right {
    flex-shrink: 0;
    animation: fadeUp 0.8s 0.2s ease both;
    perspective: 1200px;
}

.hero_phone_mockup {
    width: 320px;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.hero_phone_mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone_frame {
    background: #0a0a0a;
    border-radius: 44px;
    padding: 10px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        -8px 0 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.phone_notch {
    width: 110px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch_camera {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a2e;
    border: 2px solid #2a2a3e;
}

.phone_screen {
    background: #f7f5f3;
    border-radius: 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

/* ── Status bar ──────────────────────────────────────────────── */

.app_statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 0;
    height: 36px;
}

.statusbar_time {
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
}

.statusbar_icons {
    display: flex;
    gap: 4px;
}

.statusbar_icons span {
    font-size: 15px;
    color: #0a0a0a;
}

/* ── Top bar ─────────────────────────────────────────────────── */

.app_topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px 4px;
}

.app_greeting {
    font-size: 18px;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.3px;
}

.app_greeting_sub {
    font-size: 12px;
    color: #aaa;
    margin-top: 1px;
}

.app_avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C55A36, #e8845f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_avatar span {
    font-size: 18px;
    color: #fff;
}

/* ── Upcoming session ────────────────────────────────────────── */

.app_upcoming {
    margin: 10px 14px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e8e3df;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.app_upcoming_accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #C55A36, #e8845f);
    border-radius: 4px 0 0 4px;
}

.app_upcoming_content {
    padding: 12px 14px 12px 18px;
}

.app_upcoming_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.app_upcoming_badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #C55A36;
    background: rgba(197, 90, 54, 0.08);
    padding: 3px 10px;
    border-radius: 50px;
}

.app_upcoming_badge span {
    font-size: 13px;
    color: #C55A36;
}

.app_upcoming_timer {
    font-size: 11px;
    font-weight: 700;
    color: #C55A36;
    background: rgba(197, 90, 54, 0.08);
    padding: 3px 10px;
    border-radius: 50px;
}

.app_upcoming_title {
    font-size: 16px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 6px;
}

.app_upcoming_details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.app_upcoming_detail {
    display: flex;
    align-items: center;
    gap: 3px;
}

.app_upcoming_detail span {
    font-size: 14px;
    color: #bbb;
}

.app_upcoming_detail p {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.app_upcoming_actions {
    display: flex;
    gap: 8px;
}

.app_upcoming_btn_primary {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #C55A36;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.app_upcoming_btn_primary span {
    font-size: 15px;
    color: #fff;
}

.app_upcoming_btn_ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f2f0;
    border: none;
    border-radius: 10px;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.app_upcoming_btn_ghost span {
    font-size: 18px;
    color: #888;
}

/* ── Search bar ──────────────────────────────────────────────── */

.app_search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e8e3df;
    border-radius: 12px;
    padding: 9px 12px;
    margin: 6px 14px;
}

.app_search > span:first-child {
    font-size: 19px;
    color: #bbb;
}

.app_search p {
    font-size: 12px;
    color: #bbb;
    flex: 1;
}

.app_search_filter {
    font-size: 18px;
    color: #C55A36;
}

/* ── Sport pills ─────────────────────────────────────────────── */

.app_sport_pills {
    display: flex;
    gap: 6px;
    padding: 6px 14px;
    overflow-x: hidden;
}

.app_pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid #e0dbd7;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.app_pill span {
    font-size: 15px;
    color: #bbb;
}

.app_pill_active {
    background: #C55A36;
    border-color: #C55A36;
    color: #fff;
}

.app_pill_active span {
    color: #fff;
}

/* ── Section label ───────────────────────────────────────────── */

.app_section_label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 2px;
}

.app_section_label p {
    font-size: 14px;
    font-weight: 800;
    color: #0a0a0a;
}

.app_section_label span {
    font-size: 18px;
    color: #ccc;
}

/* ── Course cards ────────────────────────────────────────────── */

.app_card {
    margin: 6px 14px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e3df;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.app_card_img {
    height: 64px;
    background: linear-gradient(135deg, #e8845f 0%, #C55A36 50%, #a84830 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_card_img_dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #16213e 100%);
}

.app_card_sport_icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.2);
}

.app_card_rating {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.app_card_rating span {
    font-size: 12px;
    color: #fbbf24;
}

.app_card_body {
    padding: 10px 12px;
}

.app_card_row_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.app_card_sport {
    font-size: 14px;
    font-weight: 800;
    color: #0a0a0a;
}

.app_card_price {
    font-size: 14px;
    font-weight: 800;
    color: #C55A36;
}

.app_card_coach {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
}

.app_card_metas {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.app_card_meta {
    display: flex;
    align-items: center;
    gap: 3px;
}

.app_card_meta span {
    font-size: 13px;
    color: #ccc;
}

.app_card_meta p {
    font-size: 10px;
    color: #aaa;
}

.app_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #f5f2f0;
}

.app_card_spots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.app_card_spots span {
    font-size: 14px;
    color: #C55A36;
}

.app_card_spots p {
    font-size: 10px;
    color: #C55A36;
    font-weight: 600;
}

.app_card_btn {
    background: #C55A36;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

/* ── Bottom nav ──────────────────────────────────────────────── */

.app_bottomnav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 6px;
    margin-top: auto;
    background: #fff;
    border-top: 1px solid #f0ebe8;
    border-radius: 0 0 28px 28px;
}

.app_nav_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.app_nav_item span {
    font-size: 20px;
    color: #ccc;
}

.app_nav_item p {
    font-size: 9px;
    color: #ccc;
    font-weight: 600;
}

.app_nav_active span {
    color: #C55A36;
}

.app_nav_active p {
    color: #C55A36;
}

/* ── Sports carousel ─────────────────────────────────────────── */

#sports_band {
    padding: 0;
    overflow: hidden;
    background: #0a0a0a;
}

.sports_scroll {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    animation: scrollLeft 25s linear infinite;
    width: max-content;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.onesport_tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.onesport_tag span {
    font-size: 20px;
    color: #e8845f;
}

/* ── Section utils ───────────────────────────────────────────── */

.section_center {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section_header_center {
    text-align: center;
    margin-bottom: 48px;
}

.section_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C55A36;
    background: rgba(197, 90, 54, 0.08);
    border: 1px solid rgba(197, 90, 54, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section_badge span { font-size: 16px; color: #C55A36; }

.badge_dark {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #e8845f;
}

.badge_dark span { color: #e8845f; }

h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.section_subtitle {
    font-size: 16px;
    color: #888;
    font-family: 'Mulish', sans-serif;
}

.text_white { color: #fff; }
.text_grey { color: #999; }

/* ── Comment ça marche ───────────────────────────────────────── */

#comment-ca-marche {
    padding: 80px 24px;
}

.steps_grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step_item {
    text-align: center;
    flex: 1;
    max-width: 240px;
    padding: 0 16px;
}

.step_number {
    font-size: 40px;
    font-weight: 900;
    color: rgba(197, 90, 54, 0.1);
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.step_icon_holder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(197, 90, 54, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step_icon_holder span {
    font-size: 28px;
    color: #C55A36;
}

.step_icon_final {
    background: #C55A36;
}

.step_icon_final span {
    color: #fff;
}

.step_item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.step_item p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.step_divider {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.step_divider span {
    font-size: 24px;
    color: #d4c5bd;
}

/* ── Avantages ───────────────────────────────────────────────── */

#avantages {
    padding: 80px 24px;
    background: #0a0a0a;
}

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

.avantage_card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.avantage_card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(197, 90, 54, 0.3);
    transform: translateY(-4px);
}

.avantage_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(197, 90, 54, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.avantage_icon span {
    font-size: 24px;
    color: #e8845f;
}

.avantage_card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.avantage_card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* ── Social proof ────────────────────────────────────────────── */

#social_proof {
    padding: 48px 24px;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #C55A36, #e8845f) 1;
}

.proof_grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.proof_stat {
    text-align: center;
}

.proof_number {
    font-size: 40px;
    font-weight: 900;
    color: #C55A36;
    letter-spacing: -1px;
}

.proof_label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    margin-top: 4px;
}

.proof_divider {
    width: 1px;
    height: 48px;
    background: #e0dbd7;
}

/* ── FAQ ─────────────────────────────────────────────────────── */

#faq {
    padding: 80px 24px;
}

.faq_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq_item {
    background: #fff;
    border: 1px solid #e8e3df;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.2s ease;
}

.faq_item:hover {
    border-color: #d4c5bd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq_item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.faq_item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* ── CTA Final ───────────────────────────────────────────────── */

#cta_final {
    padding: 24px 80px 64px;
}

.cta_card {
    background: #0a0a0a;
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta_card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 90, 54, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.cta_content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
}

.cta_content p {
    color: #999;
    font-size: 16px;
    margin-bottom: 32px;
    font-family: 'Mulish', sans-serif;
}

.cta_buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn_cta_ghost {
    background: transparent;
    color: #999;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_cta_ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* ── Animations ──────────────────────────────────────────────── */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Footer ──────────────────────────────────────────────────── */

#footer a, #footer p { color: #000; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media screen and (max-width: 850px) {

    header {
        padding: 10px 16px;
    }

    .nav_links { display: none; }
    .blc_header_btn { display: none; }

    .btn_menu_mobile {
        display: block;
    }

    .btn_menu_mobile span {
        display: block;
        font-size: 14px;
        font-weight: 600;
        background: #C55A36;
        color: #fff;
        padding: 8px 22px;
        border-radius: 10px;
        cursor: pointer;
    }

    .blc_menu_mobile {
        display: none;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 200;
        padding: 24px;
    }

    .close_menu {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        cursor: pointer;
    }

    .close_menu span { font-size: 24px; color: #555; }

    .list_menu_mobile {
        margin-top: 64px;
    }

    .list_menu_mobile ul {
        list-style: none;
    }

    .list_menu_mobile li {
        padding: 18px 0;
        border-bottom: 1px solid #f0ebe8;
    }

    .list_menu_mobile a {
        font-size: 18px;
        font-weight: 600;
        color: #0a0a0a;
        text-decoration: none;
    }

    /* Hero */
    #hero {
        padding: 32px 16px;
    }

    .hero_content {
        flex-direction: column;
        gap: 40px;
    }

    .hero_left {
        max-width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 34px;
    }

    .hero_sub {
        font-size: 15px;
    }

    .hero_actions {
        flex-direction: column;
        align-items: center;
    }

    .btn_primary_large,
    .btn_secondary_large {
        width: 100%;
        justify-content: center;
    }

    .hero_trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero_right {
        display: flex;
        justify-content: center;
    }

    .hero_phone_mockup {
        width: 280px;
        transform: none;
    }

    .hero_phone_mockup:hover {
        transform: none;
    }

    .phone_screen {
        min-height: 540px;
    }

    /* Steps */
    .steps_grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step_divider {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .step_item {
        max-width: 100%;
    }

    /* Avantages */
    .avantages_grid {
        grid-template-columns: 1fr;
    }

    /* Proof */
    .proof_grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .proof_divider { display: none; }

    .proof_stat {
        width: 40%;
    }

    /* FAQ */
    .faq_grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    #cta_final {
        padding: 24px 16px 48px;
    }

    .cta_card {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .cta_content h2 {
        font-size: 24px;
    }

    .cta_buttons {
        flex-direction: column;
    }

    .btn_cta_ghost {
        width: 100%;
    }
}

@media screen and (min-width: 851px) and (max-width: 1100px) {

    header { padding: 12px 32px; }
    #hero { padding: 48px 32px; }

    h1 { font-size: 42px; }

    .hero_content { gap: 40px; }

    .avantages_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #cta_final { padding: 24px 32px 48px; }
    .cta_card { padding: 48px 32px; }
}