/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}


/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
}

.btn--glow {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
    to { box-shadow: 0 0 30px rgba(37, 99, 235, 0.6); }
}

.btn--pulse {
    animation: pulse 2s infinite;
}

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

.btn__ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Text Gradient - Adapté au logo */
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav__logo:hover {
    transform: scale(1.05);
}

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

.nav__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Space Grotesk', sans-serif;
    display: none; /* Caché car le logo contient déjà le texte */
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #2563eb;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    z-index: 2;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

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

.hero__title {
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

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

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #a0a9c0;
    line-height: 1.7;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.stat:nth-child(1) { animation-delay: 0.4s; }
.stat:nth-child(2) { animation-delay: 0.5s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #2563eb;
}

.stat__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat__content {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.9rem;
    color: #a0a9c0;
    font-weight: 500;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero__guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
    animation: slideInUp 0.8s ease-out;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

.hero__urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #f59e0b;
    font-weight: 600;
    animation: slideInUp 0.8s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    z-index: 3;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: #a0a9c0;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator:hover span {
    color: #f59e0b;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__card-container {
    position: relative;
    perspective: 1000px;
}

.hero__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.hero__card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(2deg); }
}

.card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(37, 99, 235, 0.3);
}

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

.avatar__status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.card__info h4 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.card__info p {
    margin: 0;
    color: #a0a9c0;
    font-size: 0.9rem;
}

.card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.card__rating i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.card__rating span {
    color: #a0a9c0;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.card__content {
    text-align: center;
}

.card__earnings {
    margin-bottom: 1.5rem;
}

.earnings__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #10b981;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.earnings__period {
    font-size: 0.9rem;
    color: #a0a9c0;
    margin-bottom: 0.5rem;
}

.earnings__trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
}

.earnings__trend i {
    font-size: 0.7rem;
}

.card__chart {
    margin: 1.5rem 0;
    height: 80px;
    position: relative;
}

.card__achievements {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 0.8rem;
    color: #2563eb;
    font-weight: 600;
}

.achievement i {
    font-size: 0.9rem;
}

.floating-messages {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.message {
    position: absolute;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: messageFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.message-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.message-2 {
    top: 50%;
    left: -30px;
    animation-delay: 1s;
}

.message-3 {
    bottom: 20%;
    right: -25px;
    animation-delay: 2s;
}

@keyframes messageFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0px) scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-10px) scale(1); 
    }
}

/* Video Introduction Section */
.video-intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.video-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="video-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234f46e5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23video-pattern)"/></svg>');
    opacity: 0.3;
}

.video-intro__content {
    position: relative;
    z-index: 1;
}

.video-intro .section__title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.video-intro .section__subtitle {
    color: #a0a9c0;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
}

.play-icon {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.video-info p {
    color: #a0a9c0;
    margin-bottom: 1rem;
}

.video-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
}

.video-iframe {
    position: relative;
    width: 100%;
    height: 500px;
}

.video-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.video-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.video-stats .stat i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.video-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.video-stats .stat-label {
    color: #a0a9c0;
    font-size: 0.9rem;
}

.video-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #2563eb;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #a0a9c0;
    margin: 0;
    line-height: 1.6;
}

.video-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Opportunity Section */
.opportunity {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="opportunity-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23opportunity-pattern)"/></svg>');
    opacity: 0.3;
}

.opportunity__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.opportunity__hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.hero__title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    color: #cbd5e1;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Example Card */
.opportunity__example {
    margin-bottom: 4rem;
}

.example__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.example__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.example__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.example__header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.example__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow__step, .flow__result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.flow__step:hover, .flow__result:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step__icon, .result__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.result__icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.step__content h4, .result__content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step__content p, .result__content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
}

.flow__arrow {
    color: #f59e0b;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

/* Requirements Section */
.opportunity__requirements {
    margin-bottom: 4rem;
}

.requirements__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.requirements__intro p {
    color: #cbd5e1;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.requirements__intro h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.requirements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirement__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.requirement__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.requirement__card h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.requirement__card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
}

/* Promises Section */
.opportunity__promises {
    margin-bottom: 4rem;
}

.promises__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promise__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.promise__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promise__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.promise__content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promise__content p {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.opportunity__cta {
    text-align: center;
}

.cta__card {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.cta__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.4);
}

.cta__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.cta__content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.cta__button {
    margin-top: 1.5rem;
}

.opportunity .btn--primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.opportunity .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.opportunity .btn--primary i {
    margin-right: 0.5rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="timeline-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23timeline-pattern)"/></svg>');
    opacity: 0.3;
}

.timeline__content {
    position: relative;
    z-index: 1;
}

.timeline-section .section__title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-section .section__subtitle {
    color: #d1d5db;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.7;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.timeline__step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.timeline__step:nth-child(odd) {
    flex-direction: row;
}

.timeline__step:nth-child(even) {
    flex-direction: row-reverse;
}

.step__marker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.marker__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    border: 4px solid #1f2937;
}

.marker__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step__content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.step__content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(37, 99, 235, 0.3);
}

.step__header {
    margin-bottom: 1.5rem;
}

.step__title {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step__description {
    margin-bottom: 2rem;
}

.step__description p {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.step__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #10b981;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature__item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature__item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature__item span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline__cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta__content p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Results Video Section */
.results-video {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.results-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="results-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%232563eb" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23results-pattern)"/></svg>');
    opacity: 0.3;
}

.results-video .section__title {
    color: #1f2937;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-video .section__subtitle {
    color: #6b7280;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.7;
}

.results-video .video-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.results-video .video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.results-video .video-placeholder {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.results-video .video-placeholder:hover {
    transform: scale(1.02);
}

.results-video .video-thumbnail {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.results-video .thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.results-video .video-placeholder:hover .thumbnail-image {
    transform: scale(1.05);
}

.results-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.results-video .play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.results-video .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.results-video .play-icon {
    position: relative;
    z-index: 2;
    margin-left: 4px;
}

.results-video .play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 2s infinite;
}

.results-video .video-info {
    text-align: center;
    color: white;
}

.results-video .video-duration {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.results-video .video-iframe {
    position: relative;
    width: 100%;
    height: 500px;
}

.results-video .video-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.results-video .video-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.results-video .video-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.results-video .video-stats .stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.results-video .video-stats .stat i {
    color: #2563eb;
    font-size: 1.2rem;
}

.results-video .video-stats .stat span {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

.results-video .video-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.results-video .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.results-video .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.results-video .benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.results-video .benefit-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.results-video .benefit-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.results-video .video-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.results-video .cta-text h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.results-video .cta-text p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.social-proof__content {
    text-align: center;
}

.social-proof__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 2rem;
}

.social-proof__logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    margin-bottom: 1rem;
    color: #1f2937;
}

.section__subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit__title {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.5rem;
}

.benefit__description {
    color: #6b7280;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step__title {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step__description {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial__quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__name {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.testimonial__role {
    margin: 0;
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Program Section */
.program {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.program__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program .section__title,
.program .section__subtitle {
    color: white;
}

.program__features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.25rem;
}

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

.program__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
}

.card__header h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.timeline__week {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline__content {
    color: #e5e7eb;
    font-size: 0.95rem;
}

/* CTA Section */
/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%232563eb" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.contact__content {
    position: relative;
    z-index: 1;
}

.contact .section__title {
    color: #1f2937;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact .section__subtitle {
    color: #4b5563;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact__intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.contact__intro p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.booking-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

/* TidyCal full-height embed */
.booking-embed iframe {
    display: block;
    width: 100%;
    height: 100vh; /* full viewport height to avoid inner scrolling */
    border: 0;
}

@media (max-width: 768px) {
    .booking-embed iframe {
        height: 120vh; /* extra room on mobile where UI is taller */
    }
}

/* Program Details Section */
.program-details {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.program-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="program-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%232563eb" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23program-pattern)"/></svg>');
    opacity: 0.3;
}

.program-details .section__title {
    color: #1f2937;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.program-details__content {
    position: relative;
    z-index: 1;
}

.program-details__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.program-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.program-item__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.program-item__content h3 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.program-item__content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.program-details__image {
    text-align: center;
    margin: 3rem 0;
}

.bundle-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bundle-image:hover {
    transform: scale(1.02);
}

.program-details__cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Force visibility for FAQ elements */
.faq .section__header,
.faq .faq__list,
.faq .faq__item {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Force visibility for Results Video elements */
.results-video .section__header,
.results-video .video-container,
.results-video .video-stats,
.results-video .video-benefits,
.results-video .video-cta {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%232563eb" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
}

.faq .section__title {
    color: #1f2937;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq .section__subtitle {
    color: #6b7280;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq__item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq__question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq__item:hover .faq__question::before {
    opacity: 1;
}

.faq__question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq__question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq__question i {
    color: #2563eb;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.faq__answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(248, 250, 252, 0.5);
}

.faq__answer p {
    padding-top: 10px;
}

.faq__item.active .faq__answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq__answer p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer__content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.footer__brand {
    flex-shrink: 0;
}

.footer__logo {
    height: 50px;
    width: auto;
    max-width: 198px;
}

.footer__text {
    flex: 1;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.footer__legal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    /* Amélioration de l'espacement général sur mobile */
    .section__title {
        padding: 0 16px;
    }
    
    .section__subtitle {
        padding: 0 16px;
    }
    
    .timeline-section .section__title,
    .timeline-section .section__subtitle {
        padding: 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        justify-content: center;
    }
    
    .hero__cta {
        align-items: center;
    }
    
    .hero__card-container {
        margin-top: 2rem;
    }
    
    .floating-messages {
        display: none;
    }
    
    .video-container {
        margin: 0 auto 2rem;
    }
    
    .video-thumbnail {
        height: 300px;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .video-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    /* Opportunity Section Mobile */
    .opportunity {
        padding: 4rem 0;
    }

    .opportunity__example {
        padding: 2rem;
        margin: 2rem 0;
    }

    .example__scenario {
        gap: 1.5rem;
    }

    .scenario__item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .scenario__icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .scenario__result {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        transform: none;
    }

    .result__icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .result__text p {
        font-size: 1.1rem;
    }

    .opportunity__requirements {
        margin: 2rem 0;
    }

    .requirements__list {
        gap: 1rem;
    }

    .requirement__item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .requirement__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .opportunity__promise {
        padding: 2rem;
        margin: 2rem 0;
    }

    .promise__item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .opportunity__accompaniment {
        padding: 2rem;
        margin-top: 2rem;
    }

    .accompaniment__content h3 {
        font-size: 1.4rem;
    }

    .accompaniment__content p {
        font-size: 1rem;
    }

    /* Timeline Section Mobile */
    .timeline-section {
        padding: 4rem 0;
    }

    .timeline {
        padding: 1rem 0;
    }

    .timeline__line {
        left: 40px;
        width: 3px;
    }

    .timeline__step {
        flex-direction: row !important;
        gap: 2rem;
        margin-bottom: 3rem;
        padding-left: 0;
        margin-left: 0;
    }

    .step__marker {
        position: absolute;
        left: -1.5rem;
        top: 0;
    }

    .marker__number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-width: 3px;
    }

    .marker__icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step__content {
        padding: 2rem;
        margin-left: 1rem;
    }

    .step__title {
        font-size: 1.2rem;
    }

    .step__description p {
        font-size: 1rem;
    }

    .feature__item {
        padding: 0.5rem 0.75rem;
    }

    .feature__item span {
        font-size: 0.9rem;
    }

    .timeline__cta {
        padding: 2rem;
        margin-top: 2rem;
    }

    .cta__content h3 {
        font-size: 1.4rem;
    }

    .cta__content p {
        font-size: 1rem;
    }

    /* Opportunity Section Mobile */
    .opportunity {
        padding: 4rem 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .example__card {
        padding: 2rem;
    }

    .example__flow {
        flex-direction: column;
        gap: 1.5rem;
    }

    .flow__step, .flow__result {
        min-width: auto;
        width: 100%;
    }

    .flow__arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .requirements__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .requirement__card {
        padding: 2rem;
    }

    .promises__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promise__card {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .cta__card {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cta__content h3 {
        font-size: 1.4rem;
    }

    .cta__content p {
        font-size: 1rem;
    }

    .cta__button {
        margin-top: 1rem;
    }

    .opportunity .btn--primary {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }

    /* FAQ Section Mobile */
    .faq {
        padding: 4rem 0;
    }

    .faq__question {
        padding: 1.5rem;
    }

    .faq__question h3 {
        font-size: 1rem;
    }

    .faq__answer {
        padding: 0 1.5rem;
    }

    .faq__item.active .faq__answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq__answer p {
        font-size: 1rem;
        padding-top: 10px;
    }

    /* Results Video Section Mobile */
    .results-video {
        padding: 4rem 0;
    }

    .results-video .video-container {
        margin: 0 auto 2rem;
    }

    .results-video .video-thumbnail {
        height: 250px;
    }

    .results-video .video-iframe {
        height: 250px;
    }

    .results-video .play-button {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .results-video .video-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .results-video .video-stats .stat {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .results-video .video-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .results-video .benefit-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .results-video .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .results-video .video-cta {
        padding: 2rem;
    }

    .results-video .cta-text h3 {
        font-size: 1.4rem;
    }

    .results-video .cta-text p {
        font-size: 1rem;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .program__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__brand {
        align-self: center;
    }
    
    .footer__text {
        text-align: center;
    }
    
    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer__disclaimer {
        font-size: 0.85rem;
    }
    
    .footer__copyright {
        font-size: 0.85rem;
    }
    
    .footer__link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn--large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .section__header {
        margin-bottom: 2rem;
    }
    
    .benefits,
    .process,
    .testimonials,
    .program,
    .contact,
    .faq {
        padding: 3rem 0;
    }

    .contact__intro {
        margin-bottom: 2rem;
    }

    .contact__intro p {
        font-size: 1rem;
    }

    .booking-embed {
        margin: 0 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
}

/* Focus states for accessibility */
.btn:focus,
.form__input:focus,
.form__select:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        background: #000;
        color: #fff;
    }
    
    .text-gradient {
        color: #000;
        -webkit-text-fill-color: #000;
    }
}


/* Offerings Section */
.offerings {
    padding: 5rem 0;
    background: #ffffff;
    color: #1f2937;
}

.offerings .section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.offerings .section__eyebrow {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offerings .section__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.offerings__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.offering {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offering__header {
    margin-bottom: 1.5rem;
}

.offering__title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #c20776, #5113e4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offering__media {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offering__media img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offering__content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

.offering__content strong {
    color: #1f2937;
    font-weight: 600;
}

.offerings__cta {
    text-align: center;
    margin-top: 3rem;
}

.offerings__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.offerings__proof img {
    width: 110px;
    height: 110px;
    border-radius: 10px;
}

.offerings__proof p {
    color: #1f2937;
    font-size: 1.1rem;
}

/* Demand Section */
.demand {
    padding: 5rem 0;
    background: #ffffff;
    color: #1f2937;
}

.demand .section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.demand .section__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.demand .section__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.demand__example {
    background: #f9fafb;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
}

.example__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

.demand__example p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
}

.demand__example strong {
    color: #f59e0b;
    font-weight: 700;
}

.demand__requirements {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.requirements__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

.requirements__list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.requirements__list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.requirements__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.demand__requirements p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
}

.demand__cta {
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cta__lead {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #f59e0b;
}

.cta__note {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .offerings__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offering {
        padding: 1.5rem;
    }
    
    .offerings .section__title {
        font-size: 2rem;
    }
    
    .demand .section__title {
        font-size: 2rem;
    }
    
    .demand__example,
    .demand__requirements,
    .demand__cta {
        padding: 1.5rem;
    }
    
    .offerings__proof {
        flex-direction: column;
        text-align: center;
    }
}
