.offer-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.offer-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.offer-hero .hero-title {
    margin-bottom: 24px;
}

.offer-hero-mention {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.offer-badge {
    display: inline-block;
    background: var(--or);
    color: var(--noir);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.offer-hero .surtitle {
    display: block;
    margin-bottom: 24px;
}

.offer-hero .surtitle::before,
.offer-hero .surtitle::after {
    display: none;
}

.offer-hero .hero-buttons {
    margin-bottom: 16px;
}

.offer-badge-premium {
    background: linear-gradient(135deg, var(--or) 0%, #8B7355 100%);
}

.offer-section {
    padding: 120px 0;
}

.section-intro {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-bottom: 48px;
}

.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.6);
}

.section-conclusion {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 48px;
    color: var(--anthracite);
}

.check-grid {
    display: grid;
    gap: 32px;
    max-width: 800px;
}

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

.check-icon {
    color: var(--or);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.check-content h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--anthracite);
}

.check-content p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.section-dark .check-content h4 {
    color: var(--blanc);
}

.section-dark .check-content p {
    color: rgba(255, 255, 255, 0.6);
}

.constat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .constat-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.constat-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.constat-text p:last-child {
    margin-bottom: 0;
    color: var(--blanc);
}

.stat-box {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 200;
    color: var(--or);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .stat-box {
    background: rgba(201, 162, 39, 0.08);
}

.section-light .stat-label {
    color: rgba(0, 0, 0, 0.6);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pillar-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-dark .pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--or);
    margin-bottom: 12px;
}

.section-light .pillar-title {
    color: #8B7355;
}

.pillar-text {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.section-dark .pillar-text {
    color: rgba(255, 255, 255, 0.6);
}

.livrables-grid,
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

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

.deliverable-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-4px);
    border-color: var(--or);
    background: rgba(255, 255, 255, 0.05);
}

.deliverable-icon {
    color: var(--or);
    margin-bottom: 20px;
}

.deliverable-icon svg {
    stroke: var(--or);
}

.deliverable-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--blanc);
    margin-bottom: 12px;
}

.deliverable-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .deliverable-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-light .deliverable-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-light .deliverable-icon svg {
    stroke: #8B7355;
}

.section-light .deliverable-icon {
    color: #8B7355;
}

.section-light .deliverable-card h4 {
    color: var(--anthracite);
}

.section-light .deliverable-card p {
    color: rgba(0, 0, 0, 0.6);
}

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

.livrable-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.livrable-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--or);
    margin-bottom: 8px;
}

.livrable-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .livrable-content h4 {
    color: #8B7355;
}

.section-light .livrable-content p {
    color: rgba(0, 0, 0, 0.6);
}

.timeline {
    display: grid;
    gap: 40px;
    max-width: 700px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 600px) {
    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }
}

.step-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--or);
    line-height: 1;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--anthracite);
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.section-dark .step-content h4 {
    color: var(--blanc);
}

.section-dark .step-content p {
    color: rgba(255, 255, 255, 0.6);
}

.summary-box {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin-top: 56px;
}

.section-dark .summary-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.summary-icon {
    font-size: 1.8rem;
}

.summary-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

.section-dark .summary-label {
    color: rgba(255, 255, 255, 0.6);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.guarantee-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--or);
    margin-bottom: 24px;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.section-light .testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.section-light .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--or);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--blanc);
    margin-bottom: 24px;
    font-style: italic;
}

.section-light .testimonial-quote {
    color: var(--anthracite);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--or) 0%, #8B7355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--noir);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.section-light .author-role {
    color: rgba(0, 0, 0, 0.5);
}

.testimonial-result {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--or);
    text-transform: uppercase;
}

.price-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 2px solid var(--or);
    border-radius: 24px;
    padding: 56px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.section-light .price-box {
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.price-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 32px;
}

.price-features {
    text-align: left;
    margin-bottom: 40px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.section-light .price-feature {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.price-feature:last-child {
    border-bottom: none;
}

.price-check {
    color: var(--or);
    font-weight: 700;
}

.price-amount {
    font-size: 4rem;
    font-weight: 200;
    color: var(--or);
    margin-bottom: 8px;
    line-height: 1;
}

.price-mention {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.section-light .price-mention {
    color: rgba(0, 0, 0, 0.5);
}

.cta-final {
    padding: 120px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-mentions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-alt {
    margin-top: 48px;
}

.cta-alt p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.cta-alt a {
    color: var(--or);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cta-alt a:hover {
    opacity: 0.7;
}

.timeline-week {
    border-left: 2px solid var(--or);
    padding-left: 32px;
    padding-bottom: 16px;
    position: relative;
}

.timeline-week::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--or);
    border-radius: 50%;
}

.week-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--or);
    margin-bottom: 8px;
}

.week-headline {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.week-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-light .week-details {
    color: rgba(0, 0, 0, 0.6);
}

.week-bullets {
    margin-top: 16px;
    padding-left: 20px;
}

.week-bullets li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.section-light .week-bullets li {
    color: rgba(0, 0, 0, 0.6);
}

.two-parts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

@media (max-width: 900px) {
    .two-parts {
        grid-template-columns: 1fr;
    }
}

.part-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.section-light .part-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.part-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--or);
    margin-bottom: 8px;
}

.part-headline {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.part-list {
    list-style: none;
    padding: 0;
}

.part-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-light .part-list li {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.part-list li:last-child {
    border-bottom: none;
}

.part-list .icon {
    color: var(--or);
    flex-shrink: 0;
}

.part-list .text {
    font-size: 0.95rem;
    font-weight: 500;
}

.part-list .subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.section-light .part-list .subtext {
    color: rgba(0, 0, 0, 0.5);
}

.part-cta {
    margin-top: 24px;
    color: var(--or);
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.advantage-card {
    text-align: center;
    padding: 32px 24px;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--or);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.advantage-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .advantage-text {
    color: rgba(0, 0, 0, 0.6);
}

.candidature-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

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

.candidature-step .number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--or);
    margin-bottom: 16px;
}

.candidature-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.candidature-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .candidature-step p {
    color: rgba(0, 0, 0, 0.6);
}

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

.differentiators {
    display: grid;
    gap: 40px;
    max-width: 700px;
}

.diff-item {
    display: flex;
    gap: 24px;
}

.diff-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.diff-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.diff-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .diff-content p {
    color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 480px) {
    .offer-hero {
        padding: 120px 16px 60px;
    }
    
    .offer-hero-title {
        font-size: 28px;
    }
    
    .offer-hero-subtitle {
        font-size: 16px;
    }
    
    .offer-hero-price {
        font-size: 36px;
    }
    
    .offer-hero-oldprice {
        font-size: 16px;
    }
    
    .offer-section {
        padding: 60px 16px;
    }
    
    .offer-section-title {
        font-size: 22px;
    }
    
    .check-item {
        gap: 12px;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    .check-content h4 {
        font-size: 1rem;
    }
    
    .check-content p {
        font-size: 0.85rem;
    }
    
    .benefit-item,
    .deliverable-item,
    .step-item {
        padding: 20px;
    }
    
    .benefit-title,
    .deliverable-title,
    .step-title {
        font-size: 16px;
    }
    
    .benefit-desc,
    .deliverable-desc,
    .step-desc {
        font-size: 13px;
    }
    
    .guarantee-box {
        padding: 32px 20px;
    }
    
    .guarantee-title {
        font-size: 20px;
    }
    
    .cta-section {
        padding: 60px 16px;
    }
    
    .cta-box {
        padding: 32px 20px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .week-card,
    .part-card {
        padding: 24px;
    }
    
    .week-title {
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .offer-hero {
        padding: 110px 12px 50px;
    }
    
    .offer-hero-title {
        font-size: 24px;
    }
    
    .offer-hero-subtitle {
        font-size: 14px;
    }
    
    .offer-hero-price {
        font-size: 32px;
    }
    
    .offer-section {
        padding: 50px 12px;
    }
    
    .offer-section-title {
        font-size: 20px;
    }
    
    .benefits-grid,
    .deliverables-grid,
    .steps-grid {
        gap: 12px;
    }
    
    .benefit-item,
    .deliverable-item,
    .step-item {
        padding: 16px;
    }
    
    .btn-primary {
        padding: 16px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .cta-box {
        padding: 24px 16px;
    }
    
    .faq-item summary {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .faq-item p {
        font-size: 13px;
        padding: 0 16px 14px;
    }
}

@media (min-width: 1600px) {
    .offer-container {
        max-width: 1400px;
    }
    
    .offer-hero-title {
        font-size: 56px;
    }
    
    .offer-section-title {
        font-size: 40px;
    }
    
    .benefits-grid,
    .deliverables-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (hover: none) and (pointer: coarse) {
    .benefit-item:hover,
    .deliverable-item:hover,
    .step-item:hover,
    .week-card:hover,
    .part-card:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--or);
    transform: translateY(-1px);
}

.language-toggle .lang-icon {
    font-size: 16px;
    line-height: 1;
}

.language-toggle .lang-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--blanc);
    letter-spacing: 0.5px;
}

.offer-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 32px 0;
}

.offer-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--or);
    line-height: 1;
}

.offer-price-mention {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.process-steps-weeks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.process-week {
    background: var(--blanc);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-week:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.week-label {
    display: inline-block;
    background: var(--or);
    color: var(--noir);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.process-week h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 12px;
}

.process-week p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Process Steps Grid - Diagnostic Page */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    background: var(--blanc);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--or);
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--or) 0%, #e5b84a 100%);
    color: var(--noir);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.process-step h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 24px 20px;
    }
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--or);
    transform: translateY(-4px);
}

.diff-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--blanc);
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.two-parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.part-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.part-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--or);
    margin-bottom: 16px;
}

.part-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.part-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.part-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.part-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--or);
    font-weight: 700;
}

.part-conclusion {
    font-size: 1rem;
    font-weight: 500;
    color: var(--or);
    font-style: italic;
}

.not-for-you-block {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
}

.not-for-you-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 16px;
}

.not-for-you-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.not-for-you-block li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.not-for-you-block li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.candidature-block {
    max-width: 800px;
}

.candidature-block p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.candidature-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.candidature-block li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
}

.candidature-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--or);
    font-weight: 700;
}

.upsell-block {
    background: var(--blanc);
    border-radius: 20px;
    padding: 48px;
    max-width: 800px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.upsell-block p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.guarantee-section {
    text-align: center;
}

.guarantee-block {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    color: var(--or);
    margin-bottom: 24px;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blanc);
    margin-bottom: 24px;
}

.guarantee-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.final-cta-offer {
    text-align: center;
    padding: 100px 0;
}

.final-cta-block {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
}

.final-cta-reassurance {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 24px;
}

.final-cta-secondary {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 16px;
}

.faq-offer-section .faq-list {
    max-width: 800px;
}

.process-visual {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 100px;
    padding: 16px 32px;
    margin-top: 48px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.section-light .process-visual {
    color: rgba(0, 0, 0, 0.7);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.avantage-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.avantage-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--or);
    transform: translateY(-4px);
}

.avantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.avantage-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blanc);
    margin-bottom: 12px;
}

.avantage-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-light .avantage-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-light .avantage-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-light .avantage-card h4 {
    color: var(--anthracite);
}

.section-light .avantage-card p {
    color: rgba(0, 0, 0, 0.6);
}

.gold-link {
    color: var(--or);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.gold-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .offer-price {
        font-size: 2.5rem;
    }
    
    .process-steps-weeks {
        grid-template-columns: 1fr;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .two-parts-grid {
        grid-template-columns: 1fr;
    }
    
    .part-block {
        padding: 24px;
    }
    
    .upsell-block {
        padding: 24px;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
    }
}
