/* VARIABLES */
:root {
    --gold: #c9a962;
    --gold-light: #d4bc7c;
    --gold-dark: #a8893f;
    --black: #000000;
    --black-light: #0a0a0a;
    --black-lighter: #0d0d0d;
    --gray: #777777;
    --gray-light: #999999;
    --gray-dark: #333333;
    --white: #ffffff;
    --light-bg: #EEEEEE;
    --radius: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.3px;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-dark);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-dark);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-premium {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 98, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
    flex-shrink: 0;
}

.logo img,
.logo-img {
    height: 35px !important;
    max-height: 35px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    display: block;
}

.footer-logo {
    height: 45px !important;
    max-height: 45px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    margin-bottom: 15px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-nav {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.7rem !important;
}

.btn-nav:hover {
    background: var(--gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 60%, var(--black) 100%),
        url('hero-bg.jpg') center center / cover no-repeat;
}

.hero-content {
    max-width: 950px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-proof {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 60px 0;
    background: var(--black-lighter);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.social-proof-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTION TITLES */
.section-title {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-headline {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 300;
}

/* GOLDEN GLOW EFFECT */
.hero,
.about,
.methode,
.suivi-detail,
.tarifs,
.testimonials,
.resultats,
.faq,
.cta-final {
    position: relative;
    overflow: hidden;
}

.hero::before,
.about::before,
.methode::before,
.suivi-detail::before,
.tarifs::before,
.testimonials::before,
.resultats::before,
.faq::before,
.cta-final::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.hero > *,
.about > *,
.methode > *,
.suivi-detail > *,
.tarifs > *,
.testimonials > *,
.resultats > *,
.faq > *,
.cta-final > * {
    position: relative;
    z-index: 1;
}

/* Positions variées du glow par section */
.hero::before {
    top: 20%;
    right: -150px;
    width: 800px;
    height: 800px;
}

.about::before {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.methode::before {
    bottom: -200px;
    left: -100px;
}

.suivi-detail::before {
    top: 10%;
    right: -200px;
}

.tarifs::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
}

.testimonials::before {
    bottom: -100px;
    right: -150px;
}

.resultats::before {
    top: -100px;
    left: -200px;
}

.faq::before {
    top: 40%;
    right: -100px;
}

.cta-final::before {
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}
.about {
    padding: 100px 0;
    background: var(--black);
}

.about-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    background: rgb(10, 10, 10);
    border-radius: 20px;
    overflow: hidden;
}

/* Tile Image */
.about-tile-image {
    position: relative;
    border: 1px solid rgb(36, 36, 36);
    border-radius: 20px;
    overflow: hidden;
    margin: 16px;
}

.about-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 580px;
    border-radius: 20px;
}

.about-tile-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

/* Tile Content */
.about-tile-content {
    border: 1px solid rgb(36, 36, 36);
    border-radius: 20px;
    margin: 16px 16px 16px 0;
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(14, 14, 14, 1);
}

.about-tile-top {
    display: flex;
    flex-direction: column;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: transparent;
    border: 1px solid rgb(36, 36, 36);
    border-radius: 8px;
    font-size: 0.7rem;
    color: rgb(191, 191, 191);
    text-transform: lowercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    font-weight: 400;
    width: fit-content;
}

.about-tile-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-headline {
    font-size: 2.8rem;
    margin-bottom: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(128, 128, 128) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: rgb(191, 191, 191);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
    text-align: left;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgb(36, 36, 36);
}

.about-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: rgb(140, 140, 140);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* METHODE */
.methode {
    padding: 100px 0;
    background: var(--black-lighter);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
}

.feature-card {
    padding: 50px 40px;
    text-align: left;
    position: relative;
    transition: background 0.3s ease;
}

.features-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.features-grid-6 .feature-card {
    border-right: 1px solid rgba(201, 169, 98, 0.15);
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.features-grid-6 .feature-card:nth-child(3n) {
    border-right: none;
}

.features-grid-6 .feature-card:nth-child(n+4) {
    border-bottom: none;
}

.feature-card:nth-child(1) {
    border-right: 1px solid rgba(201, 169, 98, 0.15);
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.feature-card:nth-child(2) {
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.feature-card:nth-child(3) {
    border-right: 1px solid rgba(201, 169, 98, 0.15);
}

.feature-card:hover {
    background: rgba(201, 169, 98, 0.03);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    line-height: 1;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.15);
    line-height: 1;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CE QUI EST INCLUS */
.inclus {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.inclus .section-title {
    color: var(--gold-dark);
}

.inclus .section-headline {
    color: var(--black);
}

.inclus .section-subtitle {
    color: #555;
}

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

.inclus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.inclus-item:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.inclus-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.15);
    color: var(--gold);
}

.inclus-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.inclus-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.inclus-text p {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* RÉSULTATS GARANTIS */
.resultats-garantis {
    padding: 100px 0;
    background: var(--black-lighter);
    text-align: center;
}

.garantis-headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.garantis-subtitle {
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 60px;
}

.garantis-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1050px;
    margin: 0 auto;
}

.garantis-col {
    padding: 0 40px;
    text-align: left;
    position: relative;
}

.garantis-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.garantis-bar {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

.garantis-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

.garantis-col-inner h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.garantis-col-inner p {
    color: var(--gray-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

.garantis-card p {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.tarifs {
    padding: 50px 0 100px;
    background: var(--black);
    text-align: center;
}

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

.pricing-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--gold);
}

.pricing-card.popular:hover {
    transform: translateY(-5px);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 35px 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-label {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 10px;
}

.pricing-label.gold {
    color: var(--gold);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-tagline {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.pricing-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-intro {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-light);
}

.pricing-features li.included {
    color: var(--white);
}

.pricing-features li.excluded {
    color: var(--gray);
    opacity: 0.5;
}

.pricing-features li.bonus {
    color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
    margin: 0 -30px;
    padding: 12px 30px;
}

.pricing-features .check {
    color: #4ade80;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features .check.gold {
    color: var(--gold);
}

.pricing-features .cross {
    color: var(--gray);
    font-weight: 700;
    flex-shrink: 0;
}

/* PRICE CTA BOXES - Boutons avec prix en bas */
.pricing-cta-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
}

.price-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-cta-box:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.price-cta-box.gold-border {
    border-color: rgba(201, 169, 98, 0.3);
}

.price-cta-box.gold-border:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
}

.price-cta-box.featured {
    background: rgba(201, 169, 98, 0.08);
}

.price-cta-box .best-value {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-dark);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-cta-box .best-value.gold-bg {
    background: var(--gold);
    color: var(--black);
}

.price-cta-box .duration {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.price-cta-box .price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.price-cta-box .price-amount.gold-text {
    color: var(--gold);
}

.price-cta-box .price-amount .currency {
    font-size: 1rem;
}

.price-cta-box .price-per {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.price-cta-box .cta-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.price-cta-box .cta-text.gold-text {
    color: var(--gold);
    border-top-color: rgba(201, 169, 98, 0.2);
}

/* GUARANTEE */
.guarantee-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px 40px;
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text {
    text-align: left;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.guarantee-text strong {
    color: var(--gold);
}

/* PAYMENT SECTION */
.payment-section {
    text-align: center;
}

.payment-title {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.testimonials .section-title {
    color: var(--gold-dark);
}

.testimonials .section-headline {
    color: var(--black);
}

.testimonials .section-subtitle {
    color: #555;
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 35px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: var(--black);
}

.testimonial-info p {
    color: var(--gold-dark);
    font-size: 0.75rem;
}

/* RESULTATS */
.resultats {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
    overflow: hidden;
}

/* Marquee Carousel */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.marquee-left {
    animation: marqueeLeft 40s linear infinite;
}

.marquee-right {
    animation: marqueeRight 40s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

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

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

.marquee-slide {
    flex: 0 0 auto;
    width: 220px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.marquee-slide:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 169, 98, 0.15);
    z-index: 2;
}

.marquee-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .marquee-slide {
        width: 170px;
    }
    .marquee-slide img {
        height: 230px;
    }
}

@media (max-width: 480px) {
    .marquee-slide {
        width: 140px;
    }
    .marquee-slide img {
        height: 190px;
    }
    .marquee-track {
        gap: 10px;
    }
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: rgb(10, 10, 10);
    text-align: center;
}

.faq .section-title {
    color: var(--gold);
}

.faq .section-headline {
    color: var(--white);
}

.faq .section-subtitle {
    color: rgb(191, 191, 191);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgb(18, 18, 18);
    border: 1px solid rgb(36, 36, 36);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    padding: 22px 24px;
    font-size: 1rem;
    font-weight: 400;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.faq-question:hover {
    color: rgb(255, 255, 255);
}

/* Icon: red cross (+) */
.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon-h,
.faq-icon-v {
    position: absolute;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Barre horizontale */
.faq-icon-h {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Barre verticale (forme le +) */
.faq-icon-v {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Quand ouvert : la barre verticale disparaît → ne reste que le — */
.faq-item.active .faq-icon-v {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

.faq-question-text {
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: rgb(191, 191, 191);
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 0 24px 22px 54px;
}

/* CTA FINAL */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-lighter) 100%);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-final p {
    color: var(--gray-light);
    margin-bottom: 35px;
    font-size: 1rem;
}

/* FOOTER */
.footer {
    padding: 80px 0 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    margin-bottom: 25px;
}

.footer-brand .social-links {
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-col p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    color: var(--gray);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.social-links a svg {
    fill: currentColor;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--black-lighter);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius);
    max-width: 450px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    padding: 40px;
}

.modal-body h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.modal-features {
    list-style: none;
    margin-bottom: 25px;
}

.modal-features li {
    color: var(--gray-light);
    font-size: 0.9rem;
    padding: 8px 0;
}

.modal-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.modal-price-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.modal-price-option.popular {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

.modal-duration {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.modal-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-amount.gold {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about-card {
        grid-template-columns: 1fr;
    }

    .about-tile-content {
        margin: 0 16px 16px 16px;
    }

    .about-headline {
        font-size: 1.8rem;
    }

    .about-tile-image img {
        min-height: 400px;
    }

    .about-tile-content {
        padding: 35px 28px;
    }
    
    .pricing-grid.two-cols {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .garantis-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        order: -1;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(201, 169, 98, 0.15) !important;
    }

    .features-grid-6 .feature-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(201, 169, 98, 0.15) !important;
    }

    .features-grid-6 .feature-card:nth-child(2n) {
        border-right: none !important;
    }

    .inclus-grid {
        grid-template-columns: 1fr;
    }

    .garantis-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .garantis-col {
        padding: 0;
    }

    .garantis-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 40px;
    }
    
    .feature-card:last-child {
        border-bottom: none !important;
    }
    
    .guarantee-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* PADDING GLOBAL */
    .container {
        padding: 0 18px;
    }

    /* HERO */
    .hero h1 {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-proof {
        font-size: 0.7rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }
    
    /* SECTIONS TITRES */
    .section-title {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .section-headline {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .suivi-headline {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .suivi-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    
    /* SOCIAL PROOF */
    .proof-number {
        font-size: 1.4rem;
    }
    
    .proof-label {
        font-size: 0.65rem;
    }
    
    .social-proof-content {
        gap: 30px;
    }
    
    .social-proof {
        padding: 35px 0;
    }
    
    /* ABOUT */
    .about-headline {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    /* METHODE */
    .feature-card h3 {
        font-size: 0.95rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .methode {
        padding: 60px 0;
    }
    
    /* INCLUS */
    .inclus-text h3 {
        font-size: 0.95rem;
    }
    
    .inclus-text p {
        font-size: 0.8rem;
    }
    
    /* ONGLETS */
    .tab-info h3 {
        font-size: 1.15rem;
    }
    
    .tab-desc {
        font-size: 0.85rem;
    }
    
    .feature-text strong {
        font-size: 0.8rem;
    }
    
    .feature-text span {
        font-size: 0.75rem;
    }
    
    .suivi-detail {
        padding: 60px 0;
    }
    
    /* TARIFS / OFFRES */
    .offre-card {
        padding: 30px 20px;
    }
    
    .offre-price {
        font-size: 2rem;
    }
    
    .offre-name {
        font-size: 1rem;
    }
    
    .offre-desc {
        font-size: 0.8rem;
    }
    
    .offre-feature span {
        font-size: 0.8rem;
    }
    
    .tarifs {
        padding: 60px 0;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 0.85rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    /* FORMULAIRE */
    .form-header h2 {
        font-size: 1.1rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.7rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 12px 14px;
    }
    
    /* BOUTONS */
    .btn {
        font-size: 0.75rem;
        padding: 12px 24px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    /* CTA BOXES */
    .suivi-cta-box h3 {
        font-size: 1rem;
    }
    
    .suivi-cta-box p {
        font-size: 0.85rem;
    }
    
    .pricing-cta-boxes {
        grid-template-columns: 1fr;
    }
    
    /* GARANTIE */
    .garantis-title {
        font-size: 1rem;
    }
    
    .garantis-desc {
        font-size: 0.8rem;
    }

    /* CTA FINAL */
    .cta-final h2 {
        font-size: 1.2rem;
    }

    /* OFFRES */
    .offre-title {
        font-size: 1.2rem;
    }

    /* CTA OFFRES */
    .cta-offres-box h2 {
        font-size: 1.2rem;
    }
}

/* ========================================
   SECTION SUIVI - SYSTÈME D'ONGLETS
======================================== */
.suivi-detail {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, #050505 100%);
}

.suivi-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.resultats .suivi-header {
    max-width: 950px;
}

.section-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 25px;
}

.suivi-headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.resultats .suivi-headline {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gold-text {
    color: var(--gold);
}

.suivi-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 300;
}

.suivi-subtitle strong {
    color: var(--gold);
}

/* Tabs Container */
.tabs-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
}

.tab-btn .tab-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.tab-btn .tab-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover .tab-label {
    color: var(--white);
}

.tab-btn.active .tab-label {
    color: var(--gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

/* Tab Panels */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

/* Tab Grid Layout */
.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
}

.tab-grid.reverse {
    grid-template-columns: 1.4fr 1fr;
}

.tab-grid.reverse .tab-visual {
    order: 2;
}

.tab-grid.reverse .tab-info {
    order: 1;
}

/* Phone Mockup */
.tab-visual {
    display: flex;
    justify-content: center;
}

.mockup-phone {
    position: relative;
    width: 200px;
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 32px;
    padding: 10px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1.5px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #0d0d0d;
    border-radius: 15px;
    z-index: 10;
}

.mockup-phone::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 11;
    box-shadow: inset 0 0 2px rgba(201, 169, 98, 0.4);
}

.mockup-screen {
    background: #0d0d0d;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tab Info */
.tab-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.tab-desc {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.tab-desc strong {
    color: var(--white);
}

/* Tab Features */
.tab-features {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tab-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tab-feature:hover {
    background: rgba(201, 169, 98, 0.06);
    border-color: rgba(201, 169, 98, 0.15);
}

.tab-feature .feature-icon {
    width: 22px;
    height: 22px;
    background: rgba(201, 169, 98, 0.15);
    color: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
    flex-shrink: 0;
}

.tab-feature .feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tab-feature .feature-text strong {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
}

.tab-feature .feature-text span {
    color: var(--gray);
    font-size: 0.72rem;
}

/* CTA Box */
.suivi-cta {
    margin-top: 80px;
    text-align: center;
}

.suivi-cta-box {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.03) 100%);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 24px;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.suivi-cta-box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.suivi-cta-box p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Responsive Tabs */
@media (max-width: 1024px) {
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 15px 25px;
    }
    
    .tab-grid,
    .tab-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
    }
    
    .tab-grid.reverse .tab-visual,
    .tab-grid.reverse .tab-info {
        order: unset;
    }
    
    .tab-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        gap: 5px;
        padding: 8px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        flex: 1;
        min-width: 0;
    }
    
    .tab-btn .tab-icon {
        font-size: 1.5rem;
    }
    
    .tab-btn .tab-label {
        font-size: 0.7rem;
    }
    
    .tab-info h3 {
        font-size: 1.5rem;
    }
    
    .mockup-phone {
        width: 220px;
    }
    
    .suivi-cta-box {
        padding: 40px 25px;
    }
    
    .suivi-cta-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tabs-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-btn {
        padding: 15px 10px;
    }
    
    .tab-btn.active::after {
        display: none;
    }
}

/* OFFRES */
.tarifs {
    padding: 100px 0;
    background: linear-gradient(180deg, #050505 0%, var(--black) 100%);
}

.offres-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.offre-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.offre-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.offre-card.premium {
    border-color: rgba(201, 169, 98, 0.25);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.offre-card.premium:hover {
    border-color: rgba(201, 169, 98, 0.4);
}

.offre-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.offre-badge.gold {
    background: rgba(201, 169, 98, 0.12);
    color: var(--gold);
    border-color: rgba(201, 169, 98, 0.25);
}

.offre-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.offre-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

.offre-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    flex-grow: 1;
    text-align: left;
    width: 100%;
}

.offre-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.4;
}

.offre-features li.option {
    color: var(--gray-light);
}

.offre-features li strong {
    color: var(--gray);
    font-weight: 500;
}

.check-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.check-svg.gold {
    fill: var(--gold);
}

.btn-offre {
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-offre:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-offre.gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 700;
}

.btn-offre.gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

@media (max-width: 768px) {
    .offres-grid {
        grid-template-columns: 1fr;
    }
}

/* FORMULAIRE */
.form-section {
    padding: 100px 0;
    background: var(--black);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 1rem;
    color: var(--gray-light);
}

.form-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.form-cta-btn {
    font-size: 1.15rem;
    padding: 20px 48px;
    letter-spacing: 0.5px;
}

.form-iframe-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    background: transparent;
}

.form-iframe-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: height 0.3s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 1rem;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-offres-box {
        padding: 50px 25px;
    }
    
    .cta-offres-box h2 {
        font-size: 1.2rem;
    }
}
