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

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #F7F1ED;
    color: #1A1A1A;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Header */
.header {
    padding: 20px 0;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: lowercase;
}

.logo-pipe {
    color: #ee6123;
    font-weight: 900;
    padding: 0 2px;
    font-size: 26px;
}

.logo-subtitle {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    text-align: center;
    margin-top: 2px;
}

.header-cta {
    padding: 10px 20px;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-cta:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.highlight {
    color: #ee6123;
    font-weight: 800;
}

.hero-description {
    font-size: 22px;
    color: #9ca3af;
    margin-bottom: 45px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Hero Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='fade' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23ee6123;stop-opacity:0.4'/%3E%3Cstop offset='100%25' style='stop-color:%23ff6f00;stop-opacity:0.05'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg%3E%3Cline x1='100' y1='0' x2='50' y2='600' stroke='url(%23fade)' stroke-width='1'/%3E%3Cline x1='200' y1='0' x2='100' y2='600' stroke='url(%23fade)' stroke-width='1.5'/%3E%3Cline x1='300' y1='0' x2='150' y2='600' stroke='url(%23fade)' stroke-width='0.8'/%3E%3Cline x1='400' y1='0' x2='200' y2='600' stroke='url(%23fade)' stroke-width='1.2'/%3E%3Cline x1='500' y1='0' x2='250' y2='600' stroke='url(%23fade)' stroke-width='0.7'/%3E%3Cline x1='600' y1='0' x2='600' y2='600' stroke='url(%23fade)' stroke-width='2'/%3E%3Cline x1='700' y1='0' x2='950' y2='600' stroke='url(%23fade)' stroke-width='0.7'/%3E%3Cline x1='800' y1='0' x2='1000' y2='600' stroke='url(%23fade)' stroke-width='1.2'/%3E%3Cline x1='900' y1='0' x2='1050' y2='600' stroke='url(%23fade)' stroke-width='0.8'/%3E%3Cline x1='1000' y1='0' x2='1100' y2='600' stroke='url(%23fade)' stroke-width='1.5'/%3E%3Cline x1='1100' y1='0' x2='1150' y2='600' stroke='url(%23fade)' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    opacity: 0.7;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.sans {
    font-weight: 600;
    color: #9ca3af;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.btn {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ee6123 0%, #ff6f00 100%);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #ee6123 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Question */
.section-question {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 50px;
    text-align: center;
}

/* VSL Section */
.vsl-section {
    padding: 80px 0 100px;
    background: #FAFAFA;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.15);
}

.overlay-content {
    background: rgba(70, 130, 180, 0.5);
    padding: 30px 50px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.overlay-text {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.mute-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.overlay-cta {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Case Study Section */
.case-study {
    padding: 100px 0;
    background: #FFFFFF;
}

.case-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.case-subtitle {
    text-align: center;
    color: #777;
    font-size: 16px;
    margin-bottom: 35px;
    font-weight: 400;
}

.case-intro {
    text-align: center;
    font-size: 19px;
    color: #1A1A1A;
    margin-bottom: 45px;
    font-weight: 400;
}

.case-main-container {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    overflow: hidden;
}

.case-top-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
}

.case-left-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.case-item p {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.case-item strong {
    font-weight: 700;
    color: #1A1A1A;
}

.case-right-calculation {
    flex: 0.8;
    padding: 30px;
    background: #ECECEC;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.result-formula {
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 5px;
    font-weight: 500;
}

.result-value {
    font-size: 26px;
    color: #ee6123;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.result-divider {
    width: 80%;
    height: 1px;
    background: #CCC;
    margin: 10px auto 20px;
}

.result-label {
    font-size: 15px;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-weight: 400;
}

.result-total {
    font-size: 40px;
    color: #ee6123;
    font-weight: 800;
    margin: 0;
}

.case-bottom-conclusion {
    margin: 0 40px 40px 40px;
    padding: 30px 40px;
    background: #F8F8F8;
    border-radius: 6px;
    text-align: center;
}

.case-bottom-conclusion p {
    margin: 0;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.6;
    font-weight: 400;
}

.case-bottom-conclusion strong {
    font-weight: 700;
    color: #1A1A1A;
}

/* Vendeur Section */
.vendeur-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.vendeur-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.vendeur-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #1A1A1A;
}

.vendeur-subtitle strong {
    font-weight: 700;
}

.vendeur-text {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color: #333;
}

.vendeur-blockers-title {
    max-width: 650px;
    margin: 0 auto 25px;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.vendeur-list {
    max-width: 650px;
    margin: 0 auto 60px;
    padding-left: 0;
    list-style: none;
}

.vendeur-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 17px;
    color: #333;
    line-height: 1.5;
}

.vendeur-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ee6123;
    font-size: 22px;
    line-height: 1;
    top: 0;
}

.vendeur-role {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.vendeur-question {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #ee6123;
    margin-bottom: 60px;
}

.vendeur-conclusion {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #666;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.results-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.highlight-blue {
    color: #ee6123;
}

.results-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.results-content {
    background: #E8F3FF;
    border-radius: 10px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.results-left {
    flex: 1;
}

.results-intro {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.results-intro strong {
    font-weight: 700;
    color: #1A1A1A;
}

.results-wants {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.results-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.results-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 17px;
    color: #333;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.results-no-more {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.results-right {
    flex: 0.9;
}

.results-card {
    background: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.card-amount {
    font-size: 36px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.card-note {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.card-crossed {
    margin-bottom: 35px;
}

.card-crossed p {
    margin: 8px 0;
    font-size: 16px;
    color: #999;
}

.card-crossed s {
    text-decoration-color: #CCC;
}

.card-audience {
    padding-top: 25px;
    border-top: 1px solid #E5E5E5;
    text-align: center;
}

.audience-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.audience-count {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.audience-count strong {
    font-weight: 700;
}

.audience-platforms {
    font-size: 14px;
    color: #888;
}

.audience-platforms.large-text {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

.results-conclusion {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.results-conclusion h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.results-conclusion p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.results-conclusion strong {
    font-weight: 700;
    color: #1A1A1A;
}

/* Accompagnement Section */
.accompagnement-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.eco-label {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.accompagnement-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 60px;
}

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

.service-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: #7A7A7A;
    line-height: 1.5;
}

/* Objective Section */
.objective-section {
    padding: 80px 0;
    background: white;
}

.objective-box {
    background: #FFF4F0;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.objective-line1 {
    font-size: 18px;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.objective-line2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.objective-line2 .highlight {
    color: #ee6123;
}

.objective-line3 {
    font-size: 18px;
    color: #4A4A4A;
}

/* Bloques Section */
.bloques-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.bloques-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 60px;
}

.bloques-title .highlight {
    color: #ee6123;
}

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

.bloque-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bloque-number {
    width: 40px;
    height: 40px;
    background: #ee6123;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bloque-number span {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.bloque-text {
    font-size: 18px;
    color: #1A1A1A;
    line-height: 1.4;
    padding-top: 8px;
}

.bloques-conclusion {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.bloques-conclusion p {
    font-size: 20px;
    color: #1A1A1A;
    line-height: 1.5;
}

/* 5 Blocs Section */
.blocs-section {
    padding: 100px 0;
    background: white;
}

.blocs-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 80px;
}

.blocs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.bloc-item {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
}

.bloc-number {
    width: 50px;
    height: 50px;
    background: #ee6123;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.bloc-name {
    font-size: 22px;
    font-weight: 700;
    color: #ee6123;
    text-align: center;
    margin-bottom: 15px;
}

.bloc-desc {
    font-size: 15px;
    color: #1A1A1A;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 25px;
    min-height: 60px;
}

.bloc-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-item span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Comment Section */
.comment-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.comment-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 80px;
}

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

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    text-align: left;
}

.garantie-box {
    background: #FFF4F0;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.garantie-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.garantie-icon svg {
    width: 100%;
    height: 100%;
}

.garantie-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.garantie-desc {
    font-size: 18px;
    color: #1A1A1A;
    line-height: 1.5;
}

/* Pour Qui Section */
.pour-qui-section {
    padding: 100px 0;
    background: white;
}

.pour-qui-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.column-title.orange {
    color: #ee6123;
}

.column-title.red {
    color: #F44336;
}

.title-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.pour-qui-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pour-qui-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon,
.x-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pour-qui-list span {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.5;
}

/* Pourquoi Maintenant Section */
.pourquoi-maintenant-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.maintenant-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 60px;
}

.urgent-box {
    background: #FFF5F5;
    border: 3px solid #FF4444;
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.urgent-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #FF4444;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.2);
}

.red-dot {
    width: 10px;
    height: 10px;
    background: #FF4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.urgent-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 35px;
}

.urgent-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.urgent-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgent-item .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.urgent-item p {
    font-size: 17px;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.5;
}

.urgent-footer {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
}

.urgent-footer p {
    font-size: 18px;
    color: #1A1A1A;
    margin: 0;
    font-weight: 500;
}

.blue-text {
    color: #ee6123;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 60px;
}

.testimonials-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #2B2D31;
    border-radius: 12px;
    padding: 20px;
}

.discord-message {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #313338;
    margin-bottom: 15px;
    transition: background 0.2s;
}

.discord-message:hover {
    background: #36383F;
}

.discord-message:last-child {
    margin-bottom: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.username {
    font-weight: 600;
    color: #F2F3F5;
    font-size: 14px;
}

.timestamp {
    font-size: 12px;
    color: #949BA4;
}

.message-text {
    color: #DCDDDE;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
}

.message-list {
    color: #DCDDDE;
    font-size: 14px;
    line-height: 1.8;
    margin: 10px 0 10px 20px;
}

.message-list li {
    margin-bottom: 5px;
}

.message-subtext {
    color: #949BA4;
    font-size: 12px;
    font-style: italic;
    margin-top: 5px;
}

.reactions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.reaction {
    background: #2B2D31;
    border: 1px solid #404249;
    border-radius: 8px;
    padding: 3px 8px;
    font-size: 12px;
    color: #DCDDDE;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.reply {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #404249;
}

.reply-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.reply-text {
    color: #00A8FC;
    font-size: 13px;
    cursor: pointer;
}

.reply-time {
    color: #949BA4;
    font-size: 12px;
    margin-left: auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #F0F7FF;
}

.cta-box {
    text-align: center;
    background: #FFF4F0;
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #ee6123;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.final-title {
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.final-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ee6123;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.btn-cta:hover {
    background: #ff6f00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 97, 35, 0.3);
}

.btn-cta .arrow-icon {
    transition: transform 0.3s;
}

.btn-cta:hover .arrow-icon {
    transform: translateX(5px);
}

.final-note {
    font-size: 16px;
    color: #999;
    font-style: italic;
    margin: 0;
}

/* Chat Container */
.chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Chat Widget */
.chat-widget {
    width: 60px;
    height: 60px;
    background: #ee6123;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(238, 97, 35, 0.3);
    transition: all 0.3s;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(238, 97, 35, 0.4);
}

.chat-widget svg {
    width: 30px;
    height: 30px;
}

/* Calendly Bubble */
.calendly-bubble {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 16px;
    width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: bubbleSlideIn 0.3s ease;
}

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

.bubble-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    font-size: 18px;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
    transition: all 0.2s;
}

.bubble-close:hover {
    background: #E5E5E5;
    color: #374151;
}

.bubble-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 0;
}

.bubble-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
}

.bubble-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #1F2937;
}

.bubble-info p {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0;
}

.bubble-body {
    padding: 15px 20px 20px;
}

.bubble-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1F2937;
}

.bubble-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 20px;
}

.availability-notice {
    background: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1F2937;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.availability-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        transparent 40%,
        #ff6f00 50%,
        #ee6123 60%,
        #ff6f00 70%,
        transparent 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: slideGradient 3s linear infinite;
}

@keyframes slideGradient {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.timer {
    font-weight: 700;
    font-size: 14px;
    color: #1F2937;
}

.date-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.date-btn {
    flex: 1;
    padding: 12px 4px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    color: #6B7280;
    transition: all 0.2s;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

.date-btn:hover {
    border-color: #ee6123;
    background: #F0F4FF;
}

.date-btn.active {
    border-color: #ee6123;
    background: #EFF6FF;
    color: #1E40AF;
}

.reserve-btn {
    width: 100%;
    padding: 14px;
    background: #ee6123;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.reserve-btn:hover {
    background: #ff6f00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 97, 35, 0.3);
}

/* Reservation Modal */
.reservation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 980px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.modal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    font-size: 20px;
    color: #6B7280;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: #E5E5E5;
    color: #374151;
}

.modal-tabs {
    display: flex;
    justify-content: center;
    padding: 20px 40px;
    border-bottom: 1px solid #E5E7EB;
    gap: 40px;
    font-size: 14px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #1F2937;
    font-weight: 600;
}

.tab-item.completed {
    color: #ee6123;
    font-weight: 500;
}

.tab-dot {
    width: 8px;
    height: 8px;
    background: #ee6123;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    transition: all 0.3s ease;
}

.tab-item.completed .tab-dot {
    background: #ee6123;
    width: 16px;
    height: 16px;
    font-size: 10px;
    color: white;
    font-weight: bold;
}

.modal-content-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.modal-left {
    flex: 1;
    padding: 20px 40px 40px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    position: relative;
}

.modal-left.form-disabled {
    overflow: hidden !important;
}

.form-disabled-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1000 !important;
    background: rgba(248, 248, 248, 0.95) !important;
    backdrop-filter: blur(3px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.validation-message {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-logo {
    width: 50px;
    height: 50px;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-subdesc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.growth-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 15px;
}

.growth-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    text-align: center;
}

.success-story {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.success-story:last-child {
    margin-bottom: 0;
}

.success-story:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.story-name {
    font-size: 12px;
    font-weight: 700;
    color: #ee6123;
    min-width: 45px;
}

.story-transformation {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.story-transformation .before {
    font-size: 11px;
    color: #6b7280;
    opacity: 0.9;
}

.story-transformation .arrow {
    color: #ee6123;
    font-weight: 700;
    font-size: 12px;
}

.story-transformation .after {
    font-size: 11px;
    color: #ee6123;
    font-weight: 600;
}

.story-method {
    font-size: 10px;
    color: #6b7280;
    font-style: italic;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.5;
    margin-bottom: 8px;
    display: block;
}

.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group textarea:focus {
    outline: none;
    border-color: #ee6123;
    box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.1);
}

.form-group input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #ee6123;
    box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.radio-item:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-item span {
    font-size: 14px;
    color: #374151;
}

.radio-item:has(input:checked) {
    background: #EFF6FF;
    border-color: #ee6123;
}

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

.form-row input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-row input:focus {
    outline: none;
    border-color: #ee6123;
    box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.country-code {
    width: 110px;
    padding: 12px 10px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.country-code:focus {
    outline: none;
    border-color: #ee6123;
    box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.1);
}

.phone-number {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.phone-number:focus {
    outline: none;
    border-color: #ee6123;
    box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.1);
}

.form-terms {
    margin: 10px 0;
}

.form-terms p {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.5;
}

.form-terms a {
    color: #ee6123;
    text-decoration: underline;
}

.form-submit {
    padding: 14px 24px;
    background: #ee6123;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.form-submit:hover {
    background: #2563EB;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 97, 35, 0.3);
}

.extended-fields {
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(238, 97, 35, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extended-fields[style*="display: none"] {
    opacity: 0;
}

.extended-fields[style*="display: block"] {
    opacity: 1;
}

/* Animation d'apparition fluide sur mobile */
@media (max-width: 768px) {
    .extended-fields {
        animation: fadeSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    @keyframes fadeSlideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.modal-right {
    display: block;
    width: 380px;
    background: #F9FAFB;
    padding: 40px 30px;
    border-left: 1px solid #E5E7EB;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.calendar-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
}

.cal-nav {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    border-radius: 6px;
    color: #6B7280;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-nav:hover {
    background: #F3F4F6;
    color: #1F2937;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-days span {
    text-align: center;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 600;
    padding: 8px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.cal-empty {
    padding: 10px;
}

.cal-date {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #4B5563;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-date:hover {
    background: white;
    color: #1F2937;
}

.cal-date.selected {
    background: #DBEAFE;
    color: #1E40AF;
    font-weight: 600;
}

.calendar-notice {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
}

.calendar-notice p {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    line-height: 1.5;
}

/* Modal footer removed - no longer needed */

/* Responsive */

/* Desktop - Larger Logo */
@media (min-width: 769px) {
    .logo-title {
        font-size: 36px;
    }

    .logo-pipe {
        font-size: 40px;
    }

    .logo-subtitle {
        font-size: 14px;
    }
}

/* Modal Responsive - Optimisé pour être moins intrusif */
@media (max-width: 768px) {
    .reservation-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: none; /* Caché par défaut, sera changé en flex par JS */
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .modal-container {
        position: relative;
        width: calc(100% - 20px);
        max-width: 420px;
        height: auto;
        max-height: calc(100vh - 20px);
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        animation: fadeInScale 0.3s ease-out;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .modal-inner {
        display: flex;
        flex-direction: column;
        max-height: calc(100vh - 60px);
        overflow: hidden;
    }

    .modal-content-wrapper {
        flex: 1;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        min-height: 0;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .modal-left {
        padding: 28px 24px 24px;
        flex-shrink: 0;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        min-height: auto;
    }

    /* Animation fluide de sortie du formulaire */
    .modal-container.form-validated .modal-left {
        animation: slideOutLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        pointer-events: none;
    }

    @keyframes slideOutLeft {
        0% {
            opacity: 1;
            transform: translateX(0);
        }
        100% {
            opacity: 0;
            transform: translateX(-30px);
            display: none;
        }
    }

    /* Calendrier préparé pour l'animation */
    .modal-right {
        display: none;
        width: 100%;
        padding: 28px 24px;
        border-left: none;
        border-top: none;
        overflow-y: auto;
        opacity: 0;
        transform: translateX(30px);
    }

    /* Animation d'entrée du calendrier */
    .modal-container.form-validated .modal-right {
        display: block;
        animation: slideInRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    }

    /* Garder le bouton fermer toujours visible */
    .modal-container.form-validated .modal-close-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Masquer les tabs sur mobile */
    .modal-tabs {
        display: none;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 12px;
        text-align: center;
        line-height: 1.3;
    }

    /* Réduire la section growth pour gagner de l'espace */
    .growth-section {
        padding: 8px;
        margin-bottom: 12px;
        background: #f9fafb;
        border-radius: 8px;
    }

    .growth-section h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .success-story {
        padding: 4px 8px;
        margin-bottom: 4px;
        font-size: 11px;
    }

    .story-name {
        font-size: 11px;
        min-width: 35px;
    }

    .story-transformation {
        gap: 4px;
    }

    .story-transformation .before,
    .story-transformation .after {
        font-size: 10px;
    }

    /* Compacter le formulaire */
    .modal-desc,
    .modal-subdesc {
        display: none; /* Cacher les descriptions longues sur mobile */
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 8px 10px;
    }

    .form-group textarea {
        min-height: 60px;
    }

    .phone-input {
        gap: 8px;
    }

    .country-code {
        width: 95px;
        padding: 8px 8px;
        font-size: 13px;
    }

    .phone-number {
        padding: 8px 10px;
    }

    .form-row {
        gap: 8px;
        flex-direction: row;
    }

    .form-row input {
        padding: 10px 12px;
        width: 50%;
        font-size: 16px; /* Évite le zoom sur iOS */
        min-width: 0; /* Permet le rétrécissement */
    }

    .radio-item {
        padding: 6px 10px;
        margin-bottom: 4px;
    }

    .radio-item span {
        font-size: 12px;
    }

    .radio-item input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    .form-terms {
        margin: 8px 0;
    }

    .form-terms p {
        font-size: 10px;
    }

    .form-submit {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: 12px;
    }

    /* Bouton de fermeture plus visible sur mobile */
    .modal-close-btn {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(238, 97, 35, 0.95);
        color: white;
        font-size: 24px;
        z-index: 10001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        border-radius: 50%;
    }

    .modal-close-btn:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    /* Optimiser l'overlay de validation */
    .form-disabled-overlay {
        padding: 20px;
    }

    .validation-message {
        padding: 20px !important;
        max-width: 280px !important;
    }

    .validation-message h3 {
        font-size: 16px !important;
    }

    .validation-message p {
        font-size: 12px !important;
    }

    /* Calendrier mobile optimisé */
    .calendar-header {
        margin-bottom: 15px;
    }

    .calendar-header h3 {
        font-size: 16px;
    }

    .cal-nav {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .calendar-days {
        margin-bottom: 8px;
    }

    .calendar-days span {
        font-size: 10px;
        padding: 6px 0;
    }

    .calendar-grid {
        gap: 3px;
    }

    .cal-date {
        padding: 8px;
        font-size: 13px;
    }

    .calendar-notice {
        margin-top: 15px;
        padding: 10px !important;
    }

    .calendar-notice p {
        font-size: 11px !important;
    }

    /* Overlay de la modal plus sombre sur mobile pour focus */
    .modal-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    /* Animation pour fermer la modale */
    .modal-container.closing {
        animation: fadeOutScale 0.3s ease-out;
    }

    @keyframes fadeOutScale {
        from {
            opacity: 1;
            transform: scale(1);
        }
        to {
            opacity: 0;
            transform: scale(0.9);
        }
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 220px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-question {
        font-size: 26px;
        padding: 0 20px;
    }

    /* Default header state on mobile */
    .header {
        transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: padding, box-shadow;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
        transition: flex-direction 0.3s cubic-bezier(0.4, 0, 0.2, 1), gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo-title {
        transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo-pipe {
        transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo-subtitle {
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Scrolled header state on mobile */
    .header.scrolled {
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header.scrolled .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header.scrolled .logo-title {
        font-size: 24px;
    }

    .header.scrolled .logo-pipe {
        font-size: 28px;
    }

    .header.scrolled .logo-subtitle {
        opacity: 0;
        height: 0;
        overflow: hidden;
    }

    .header.scrolled .header-cta {
        width: auto;
        margin-top: 0;
        padding: 10px 15px;
        font-size: 14px;
    }

    .header.scrolled .header-cta::before {
        display: none;
    }

    .header-cta {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        margin-top: 10px;
        position: relative;
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    margin-top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-cta::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 16.67%;
        width: 66.66%;
        height: 2px;
        background-color: #e5e5e5;
    }

    .vsl-section {
        padding: 40px 0 60px;
    }

    .vsl-section .container {
        padding: 0;
    }

    .video-container {
        margin: 0 10px;
        border-radius: 8px;
        max-width: calc(100% - 20px);
    }

    .overlay-content {
        padding: 20px 30px;
    }

    .overlay-text {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .mute-icon {
        width: 40px;
        height: 40px;
    }

    .overlay-cta {
        font-size: 18px;
    }

    /* Case Study Responsive */
    .case-study {
        padding: 60px 0;
    }

    .case-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .case-subtitle {
        font-size: 16px;
    }

    .case-intro {
        font-size: 18px;
        padding: 0 20px;
    }

    .case-main-container {
        margin: 0 20px 30px;
    }

    .case-top-section {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .case-left-points {
        gap: 20px;
    }

    .case-right-calculation {
        padding: 25px 20px;
        width: 100%;
    }

    .case-bottom-conclusion {
        margin: 0 20px 20px 20px;
        padding: 20px;
    }

    .case-item p {
        font-size: 15px;
    }

    .result-formula {
        font-size: 18px;
    }

    .result-value {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .result-label {
        font-size: 14px;
    }

    .result-total {
        font-size: 32px;
    }

    .case-bottom-conclusion p {
        font-size: 15px;
    }

    /* Vendeur Section Responsive */
    .vendeur-section {
        padding: 60px 0;
    }

    .vendeur-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .vendeur-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
        padding: 0 20px;
    }

    .vendeur-text {
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .vendeur-blockers-title {
        font-size: 18px;
        padding: 0 20px;
    }

    .vendeur-list {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .vendeur-list li {
        font-size: 16px;
    }

    .vendeur-role {
        font-size: 16px;
        padding: 0 20px;
    }

    .vendeur-question {
        font-size: 18px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .vendeur-conclusion {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Results Section Responsive */
    .results-section {
        padding: 60px 0;
    }

    .results-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .results-subtitle {
        font-size: 18px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .results-content {
        flex-direction: column;
        padding: 30px 20px;
        margin: 0 20px 40px;
        gap: 30px;
    }

    .results-intro {
        font-size: 16px;
    }

    .results-wants {
        font-size: 17px;
    }

    .results-list li {
        font-size: 16px;
    }

    .results-no-more {
        font-size: 15px;
    }

    .results-card {
        padding: 25px;
    }

    .card-amount {
        font-size: 28px;
    }

    .card-subtitle {
        font-size: 16px;
    }

    .card-note {
        font-size: 15px;
    }

    .card-audience {
        text-align: center !important;
    }

    .audience-platforms.large-text {
        text-align: center !important;
        display: block;
    }

    /* Logo responsive */
    .logo-title {
        font-size: 38px;
    }

    .logo-pipe {
        font-size: 42px;
        padding: 0 1px;
    }

    .logo-subtitle {
        font-size: 13px;
    }

    .results-conclusion h3 {
        font-size: 20px;
        padding: 0 20px;
    }

    .results-conclusion p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Accompagnement Section Responsive */
    .accompagnement-section {
        padding: 60px 0;
    }

    .eco-label {
        font-size: 12px;
    }

    .accompagnement-title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

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

    .service-item {
        padding: 20px;
        gap: 20px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-desc {
        font-size: 13px;
        text-align: left;
    }

    /* Objective Section Responsive */
    .objective-section {
        padding: 60px 0;
    }

    .objective-box {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .objective-line1 {
        font-size: 16px;
    }

    .objective-line2 {
        font-size: 22px;
    }

    .objective-line3 {
        font-size: 16px;
    }

    /* Bloques Section Responsive */
    .bloques-section {
        padding: 60px 0;
    }

    .bloques-title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .bloques-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .bloque-number {
        width: 35px;
        height: 35px;
    }

    .bloque-number span {
        font-size: 18px;
    }

    .bloque-text {
        font-size: 16px;
        padding-top: 6px;
    }

    .bloques-conclusion {
        margin: 40px auto 0;
        padding: 0 20px;
    }

    .bloques-conclusion p {
        font-size: 17px;
    }

    /* 5 Blocs Section Responsive */
    .blocs-section {
        padding: 60px 0;
    }

    .blocs-title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 50px;
    }

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

    .bloc-item {
        padding: 25px;
    }

    .bloc-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .bloc-name {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .bloc-desc {
        font-size: 14px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .point-item span {
        font-size: 13px;
    }

    /* Comment Section Responsive */
    .comment-section {
        padding: 60px 0;
    }

    .comment-title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .garantie-box {
        padding: 30px 20px;
        margin: 0 20px;
        border-radius: 15px;
    }

    .garantie-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .garantie-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .garantie-desc {
        font-size: 16px;
    }

    /* Pour Qui Section Responsive */
    .pour-qui-section {
        padding: 60px 0;
    }

    .pour-qui-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .column-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .title-icon {
        width: 24px;
        height: 24px;
    }

    .pour-qui-list {
        gap: 18px;
    }

    .pour-qui-list li {
        gap: 12px;
    }

    .check-icon,
    .x-icon {
        width: 22px;
        height: 22px;
    }

    .pour-qui-list span {
        font-size: 15px;
    }

    /* Pourquoi Maintenant Section Responsive */
    .pourquoi-maintenant-section {
        padding: 60px 0;
    }

    .maintenant-title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .urgent-box {
        padding: 30px 20px;
        margin: 0 20px;
        border-width: 2px;
        border-radius: 15px;
    }

    .urgent-label {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .red-dot {
        width: 8px;
        height: 8px;
    }

    .urgent-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .urgent-points {
        gap: 18px;
        margin-bottom: 30px;
    }

    .urgent-item .icon {
        font-size: 20px;
    }

    .urgent-item p {
        font-size: 15px;
    }

    .urgent-footer {
        padding: 18px 20px;
    }

    .urgent-footer p {
        font-size: 16px;
    }

    /* Testimonials Section Responsive */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 32px;
        padding: 0 20px;
        margin-bottom: 15px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .testimonials-heading {
        font-size: 22px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

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

    .testimonial-card {
        padding: 15px;
    }

    .discord-message {
        padding: 12px;
        gap: 12px;
    }

    .avatar {
        width: 36px;
        height: 36px;
    }

    .username {
        font-size: 13px;
    }

    .timestamp {
        font-size: 11px;
    }

    .message-text {
        font-size: 13px;
    }

    .message-list {
        font-size: 13px;
    }

    .reaction {
        font-size: 11px;
        padding: 2px 6px;
    }

    /* CTA Section Responsive */
    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 30px 20px;
        margin: 0 20px;
        border-radius: 15px;
    }

    .cta-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    /* Final CTA Section Responsive */
    .final-cta-section {
        padding: 60px 0;
    }

    .final-title {
        font-size: 32px;
        padding: 0 20px;
        margin-bottom: 15px;
    }

    .final-subtitle {
        font-size: 17px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 15px 30px;
        margin: 0 20px 25px;
    }

    .final-note {
        font-size: 14px;
        padding: 0 20px;
    }

    /* Chat Container Responsive */
    .chat-container {
        bottom: 20px;
        right: 20px;
    }

    .chat-widget {
        width: 50px;
        height: 50px;
    }

    .chat-widget svg {
        width: 25px;
        height: 25px;
    }

    /* Calendly Bubble Responsive */
    .calendly-bubble {
        width: 340px;
        right: 0;
        left: auto;
        bottom: 70px;
        max-width: calc(100vw - 40px);
    }

    .bubble-header {
        padding: 15px 15px 0;
    }

    .bubble-avatar {
        width: 40px;
        height: 40px;
    }

    .bubble-info h3 {
        font-size: 14px;
    }

    .bubble-info p {
        font-size: 12px;
    }

    .bubble-body {
        padding: 12px 15px 15px;
    }

    .bubble-body h4 {
        font-size: 15px;
    }

    .bubble-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .availability-notice {
        padding: 8px 10px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .timer {
        font-size: 13px;
    }

    .date-selector {
        gap: 6px;
        margin-bottom: 15px;
    }

    .date-btn {
        padding: 8px 2px;
        font-size: 11px;
    }

    .reserve-btn {
        font-size: 14px;
        padding: 10px;
    }
}

/* ========================================
   OPTIMIZED MODAL STYLES - MAX CONVERSION
   ======================================== */

/* Compact 48h Calendar Cards */
.day-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.day-card:hover {
    transform: translateY(-4px);
}

.day-card.selected {
    animation: selectPulse 0.3s ease;
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.05); }
}

/* Mobile responsive for compact calendar */
@media (max-width: 640px) {
    #daySelector {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .day-card {
        width: 100% !important;
    }
}

/* Time Slot Animations */
.time-slot {
    transition: all 0.2s ease;
}

.time-slot:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 97, 35, 0.2);
}

.time-slot.selected {
    animation: timeSlotSelect 0.3s ease;
}

@keyframes timeSlotSelect {
    0% { background: white; }
    100% { background: #ee6123; }
}

/* Mobile-First Modal Optimizations */
@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }

    .modal-content-wrapper {
        flex-direction: column !important;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-left, .modal-right {
        width: 100% !important;
        padding: 20px !important;
    }

    /* Calendar Mobile */
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .cal-date {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        border-radius: 8px;
    }

    /* Touch-friendly time slots */
    #timeSlots {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .time-slot {
        padding: 16px !important;
        font-size: 16px !important;
        -webkit-tap-highlight-color: transparent;
    }

    /* Form Mobile Optimizations */
    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-row input {
        width: 100%;
    }

    /* Prevent iOS zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
    }

    /* Bottom sheet style for form step */
    #formStep {
        position: sticky;
        bottom: 0;
        background: white;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        padding: 24px 20px 40px !important;
        margin-top: auto;
    }

    /* Mobile-specific button styles */
    .form-submit {
        -webkit-tap-highlight-color: rgba(238, 97, 35, 0.1);
        touch-action: manipulation;
    }

    .form-submit:active {
        transform: scale(0.98);
    }
}

/* Remove urgency animations for cleaner look */
.urgency-banner {
    /* No animation - more professional */
}

/* Success Animation */
@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ee6123;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tab Improvements */
.tab-item {
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-item.active {
    /* No background color for cleaner look */
}

.tab-item.completed {
    /* No background color for cleaner look */
}

.tab-dot {
    width: 24px;
    height: 24px;
    background: #e5e7eb;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tab-item.active .tab-dot {
    background: #ee6123;
    color: white;
}

.tab-item.completed .tab-dot {
    background: #ee6123;
    color: white;
}

/* Phone input styling */
.phone-input {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 110px;
}

/* Calendar header improvements */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px 8px 0 0;
}

/* ==========================================
   MOBILE RESPONSIVE MODAL - COMPLETE OVERHAUL
   ========================================== */

@media (max-width: 768px) {
    /* Full screen modal on mobile */
    .reservation-modal {
        align-items: stretch !important;
        justify-content: stretch !important;
    }

    .modal-container {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .modal-inner {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Fixed header tabs */
    .modal-tabs {
        padding: 12px 20px !important;
        gap: 20px !important;
        font-size: 13px !important;
        position: sticky;
        top: 0;
        background: white;
        z-index: 100;
        border-bottom: 1px solid #E5E7EB;
        flex-shrink: 0;
    }

    /* Single scrollable column */
    .modal-content-wrapper {
        flex: 1;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        flex-direction: column !important;
        min-height: 0;
    }

    /* Left section (calendar) */
    .modal-left {
        width: 100% !important;
        padding: 20px !important;
        border-right: none !important;
        flex: none;
    }

    /* Right section (form) */
    .modal-right {
        width: 100% !important;
        padding: 0 !important;
        border-left: none !important;
        border-top: 1px solid #E5E7EB;
        background: #F9FAFB;
        flex: none;
    }

    /* Form as bottom sheet when visible */
    #formStep {
        padding: 24px 20px 40px 20px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    #waitingStep {
        padding: 30px 20px !important;
    }

    /* Urgency banner mobile */
    .urgency-banner {
        margin: 10px 20px !important;
        padding: 8px !important;
        font-size: 12px !important;
    }

    /* Compact calendar mobile */
    #daySelector {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .day-card {
        width: 100% !important;
        padding: 16px !important;
        min-height: 80px !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(238, 97, 35, 0.1);
        user-select: none;
        cursor: pointer !important;
    }

    .day-card:active {
        transform: scale(0.98) !important;
        opacity: 0.9;
    }

    /* Time slots - 2 columns on mobile */
    #timeSlots {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 !important;
    }

    .time-slot {
        padding: 16px 8px !important;
        font-size: 16px !important;
        min-height: 52px !important;
        -webkit-tap-highlight-color: rgba(238, 97, 35, 0.1);
        touch-action: manipulation;
        user-select: none;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .time-slot:active:not(:disabled) {
        transform: scale(0.96) !important;
        opacity: 0.8;
    }

    .time-slot:disabled {
        opacity: 0.5 !important;
        cursor: not-allowed !important;
    }

    /* Form fields mobile */
    .form-row {
        flex-direction: row !important;
        gap: 10px !important;
    }

    .form-row input {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .phone-input {
        flex-direction: row !important;
        gap: 10px !important;
    }

    .country-code {
        width: 100px !important;
    }

    /* Prevent iOS zoom on input focus */
    input[type="text"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        border-radius: 8px;
    }

    /* Submit button mobile */
    .form-submit {
        padding: 18px !important;
        font-size: 17px !important;
        -webkit-tap-highlight-color: rgba(238, 97, 35, 0.1);
        touch-action: manipulation;
    }

    .form-submit:active {
        transform: scale(0.98);
    }

    /* Close button mobile */
    .modal-close-btn {
        position: fixed !important;
        top: 12px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
        background: white !important;
        border: 2px solid #E5E7EB !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        z-index: 10001 !important;
    }

    /* Client review mobile */
    .client-review {
        margin-bottom: 15px !important;
        padding: 8px !important;
        font-size: 12px !important;
    }

    /* Title and description mobile */
    .modal-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .modal-desc {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .modal-tabs {
        font-size: 11px !important;
        gap: 15px !important;
    }

    .tab-dot {
        width: 20px !important;
        height: 20px !important;
        font-size: 10px !important;
    }

    #daySelector {
        gap: 8px !important;
    }

    .day-card {
        padding: 14px !important;
        min-height: 70px !important;
    }

    #timeSlots {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .time-slot {
        padding: 14px 6px !important;
        font-size: 15px !important;
        min-height: 48px !important;
    }

    .form-submit {
        font-size: 16px !important;
        padding: 16px !important;
    }
}

/* Ensure buttons are clearly clickable */
@media (max-width: 768px) {
    button, .button, [role="button"] {
        -webkit-appearance: none;
        appearance: none;
    }

    /* Prevent double-tap zoom */
    * {
        touch-action: pan-x pan-y;
    }

    input, textarea, select, button {
        touch-action: manipulation;
    }
}

.cal-nav {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 18px;
    color: #6b7280;
}

.cal-nav:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Calendar days header */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 12px;
    background: #fafafa;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-days span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}