/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6600;
    --secondary-color: #ff8c42;
    --accent-color: #fbbf24;
    --dark-bg: #1a1a2e;
    --light-bg: #fff9f5;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6600 0%, #ff8c42 100%);
    --gradient-secondary: linear-gradient(135deg, #fbbf24 0%, #ff6600 100%);
    --shadow-soft: 0 10px 40px rgba(255, 102, 0, 0.2);
    --shadow-hover: 0 15px 50px rgba(255, 102, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 50%, #fff5eb 100%);
    animation: heroGlow 8s ease-in-out infinite;
}

/* Hero inversé : image à gauche, texte à droite */
.hero-reversed {
    flex-direction: row;
    gap: 80px;
    padding-left: 60px;
    padding-right: 60px;
}

.hero-reversed .hero-image {
    order: 1;
    margin-right: 0;
    margin-left: 0;
}

.hero-reversed .container {
    order: 2;
    padding: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 600px;
    padding: 0;
}

@keyframes heroGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    max-width: 550px;
    z-index: 2;
    text-align: left;
    flex: 1;
    padding: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.2);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

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

.floating-emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.floating-emoji:first-child {
    animation-delay: 0s;
}

.floating-emoji:last-child {
    animation-delay: 1.5s;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-title span {
    display: block;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.hero-title .word-1 { animation-delay: 0.2s; }
.hero-title .word-2 { animation-delay: 0.4s; }
.hero-title .word-3 { animation-delay: 0.6s; }
.hero-title .highlight { animation-delay: 0.8s; }

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

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-cta {
    margin-top: 40px;
}

.btn-primary {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 105, 0, 0.2);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 105, 0, 0.4);
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    animation: none;
}

.cta-button-container {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 105, 0, 0.2);
}

.btn-large {
    font-size: 1.3rem;
    padding: 25px 50px;
    min-width: 400px;
    box-shadow: 0 15px 50px rgba(255, 105, 0, 0.4);
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 105, 0, 0.6);
}

.btn-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.btn-text {
    display: block;
    position: relative;
    z-index: 2;
}

.btn-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

/* Shimmer effect for buttons */
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    width: 40%;
    max-width: 420px;
    z-index: 1;
    flex-shrink: 0;
}

.mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.coaches-photo {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 0, 0.3);
    animation: float-image 6s ease-in-out infinite;
}

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

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #fef8f3 0%, #fff5eb 50%, #ffe8d6 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 140, 66, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

/* Animated title for "Qui sommes-nous" */
.animate-title {
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: expandLine 2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes expandLine {
    to { width: 60%; }
}

.title-decoration {
    font-size: 1.5rem;
    margin: 0 15px;
    display: inline-block;
    animation: spin-float 4s ease-in-out infinite;
}

.title-decoration:first-child {
    animation-delay: 0s;
}

.title-decoration:last-child {
    animation-delay: 2s;
}

@keyframes spin-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(10deg);
    }
    75% {
        transform: translateY(10px) rotate(-10deg);
    }
}

.about-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.coach-card {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 105, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.coach-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.1) 0%, transparent 70%);
    animation: rotate-glow 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coach-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 105, 0, 0.3);
}

.coach-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.coach-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.2);
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-photo {
    transform: scale(1.05);
}

.coach-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.coach-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.coach-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.coach-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.specialty {
    background: rgba(255, 105, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.specialty:hover {
    background: rgba(255, 105, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.2);
}

/* ===================================
   Story Section
   =================================== */
.story {
    padding: 80px 40px;
    background: white;
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 105, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    animation: moveGradient 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes moveGradient {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(50px) translateY(30px); }
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 50px;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.block-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.story-block:hover .block-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
}

.story-text {
    padding-left: 80px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.quote-box {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 105, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quote-box::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.quote-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.2);
}

.quote-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quote-author {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.poetry-verse {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 105, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.poetry-verse:hover {
    background: rgba(255, 105, 0, 0.1);
    transform: scale(1.02);
}

.poetry-verse p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.revelation-box {
    background: linear-gradient(135deg, #ff6900 0%, #ff8c42 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 105, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 105, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 60px rgba(255, 105, 0, 0.5);
    }
}

.revelation-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    from { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    to { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.revelation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.revelation-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.sacred-symbol {
    font-size: 2rem;
    display: inline-block;
    animation: pulse-scale 2s ease-in-out infinite;
}

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

.revelation-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
}

.truth-statement {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.truth-statement:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.2);
}

.truth-statement p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promise-box {
    background: white;
    border: 2px solid var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce-spin 2s ease-in-out infinite;
}

@keyframes bounce-spin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(10deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-10deg);
    }
}

.promise-box p {
    font-size: 1.1rem;
    color: #555;
}

/* ===================================
   CTA Section
   =================================== */
/* CTA Compact & Élégant */
.cta-compact {
    margin: 40px 0;
    padding: 0;
}

.cta-compact-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 140, 66, 0.08) 100%);
    border: 2px solid rgba(255, 102, 0, 0.15);
    border-radius: 24px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

.cta-compact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: slide-shimmer 4s ease-in-out infinite;
}

@keyframes slide-shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.cta-compact-left {
    flex: 1;
}

.cta-compact-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.cta-compact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-compact-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-compact-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-compact-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-compact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    white-space: nowrap;
}

.cta-compact-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.4);
}

.cta-compact-button svg {
    transition: transform 0.3s ease;
}

.cta-compact-button:hover svg {
    transform: translateX(5px);
}

.cta-compact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
}

.cta-section {
    position: relative;
    background: linear-gradient(135deg, #ff6600 0%, #ff8c42 100%);
    padding: 80px 60px;
    border-radius: 40px;
    margin: 50px 0;
    overflow: hidden;
    animation: gradient-shift 5s ease-in-out infinite;
    background-size: 200% 200%;
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Shimmer effect for CTA section */
.cta-shimmer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: cta-shimmer-anim 4s ease-in-out infinite;
}

@keyframes cta-shimmer-anim {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.star {
    position: absolute;
    font-size: 2rem;
    animation: twinkle 3s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.star:nth-child(3) { bottom: 15%; left: 20%; animation-delay: 1s; }
.star:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 650px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.15rem;
    margin-bottom: 45px;
    line-height: 1.9;
    opacity: 0.95;
}

.cta-offer {
    margin: 40px 0 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 1.05rem;
    text-decoration: line-through;
    opacity: 0.85;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-reason {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta-button {
    position: relative;
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 22px 55px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: button-glow 2s ease-in-out infinite;
    margin-top: 10px;
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
    animation: none;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fbbf24, #f97316, #ec4899, #a855f7);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .btn-glow {
    opacity: 1;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: 100px 40px;
    background: linear-gradient(160deg, #fff5eb 0%, #ffe0cc 50%, #ffd6b8 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 102, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.benefits-section .section-header {
    z-index: 1;
}

.benefits-section .section-title {
    position: relative;
    padding-bottom: 20px;
}

.benefits-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 105, 0, 0.12);
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 140, 66, 0.1);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 105, 0, 0.25);
    border-color: var(--primary-color);
    background: white;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* New circular icon style */
.benefit-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35);
}

.benefit-icon-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: rotate-shimmer 3s linear infinite;
    z-index: -1;
}

@keyframes rotate-shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icon symbols - Icônes spirituelles élégantes */

/* 1. Œil spirituel avec rayon de lumière (Clarté sur tes blocages) */
.icon-lightbulb {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Œil extérieur */
.icon-lightbulb::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 22px;
    background: transparent;
    border: 2.5px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Pupille avec lumière intérieure */
.icon-lightbulb::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.4),
        inset 0 0 5px rgba(255,140,66,0.3);
    animation: eye-glow 2s ease-in-out infinite;
}

@keyframes eye-glow {
    0%, 100% { 
        box-shadow: 
            0 0 10px rgba(255,255,255,0.8),
            0 0 20px rgba(255,255,255,0.4);
    }
    50% { 
        box-shadow: 
            0 0 15px rgba(255,255,255,1),
            0 0 30px rgba(255,255,255,0.6),
            0 0 40px rgba(255,140,66,0.3);
    }
}

/* 2. Cœur avec mains bienveillantes (Accueil de tes parts blessées) */
.icon-heart {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cœur central */
.icon-heart::before {
    content: '♡';
    position: absolute;
    font-size: 24px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    animation: heart-pulse 2s ease-in-out infinite;
}

/* Mains enveloppantes - lignes courbes */
.icon-heart::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border: 2px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    border-style: dashed;
    border-spacing: 4px;
}

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

/* 3. Couronne de lotus (Ta souveraineté émotionnelle - dignité intérieure) */
.icon-crown {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Couronne - cercle avec pointes */
.icon-crown::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 2.5px solid white;
    border-radius: 50%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 -16px 0 -11px white,
        12px -12px 0 -11px white,
        -12px -12px 0 -11px white,
        16px 0 0 -11px white,
        -16px 0 0 -11px white;
}

/* Joyau central de la couronne */
.icon-crown::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
    animation: crown-sparkle 2s ease-in-out infinite;
}

@keyframes crown-sparkle {
    0%, 100% { 
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
    }
}

/* 4. Infini avec cœur (Aimer sans te perdre - équilibre parfait) */
.icon-like {
    width: 44px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Symbole infini */
.icon-like::before {
    content: '∞';
    position: absolute;
    color: white;
    font-size: 36px;
    font-weight: 300;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Petit cœur au centre de l'infini */
.icon-like::after {
    content: '♥';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    animation: infinity-heart 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

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

.benefit-card:hover .benefit-icon-circle {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1.2) rotate(10deg) translateY(0); }
    50% { transform: scale(1.3) rotate(10deg) translateY(-10px); }
}

.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.benefit-card:hover .card-glow {
    opacity: 0.15;
    animation: glow-rotate 3s linear infinite;
}

@keyframes glow-rotate {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}

/* ===================================
   Exclusion Section
   =================================== */
.exclusion-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
    padding: 80px 40px;
    border-radius: 30px;
    color: white;
}

.exclusion-header {
    text-align: center;
    margin-bottom: 40px;
}

.sacred-flame {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.exclusion-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.title-emphasis {
    color: #ff6900;
    font-size: 3rem;
    display: inline-block;
    margin: 0 10px;
    animation: emphasis-pulse 2s ease-in-out infinite;
}

@keyframes emphasis-pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 105, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 105, 0, 0.8);
    }
}

.exclusion-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.exclusion-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.exclusion-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.exclusion-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exclusion-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 140, 66, 0.5);
    transform: translateY(-5px) scale(1.03);
}

.exclusion-card:hover::after {
    opacity: 1;
}

.card-icon {
    margin-bottom: 20px;
}

.icon-bg {
    font-size: 3rem;
}

.exclusion-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.exclusion-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.exclusion-footer {
    text-align: center;
    margin-top: 40px;
}

.sacred-promise {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 105, 0, 0.2);
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 140, 66, 0.5);
    animation: promise-glow 3s ease-in-out infinite;
}

@keyframes promise-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 105, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 140, 66, 0.5);
    }
}

.promise-icon {
    font-size: 1.5rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 100px 40px;
    background: linear-gradient(135deg, #fefdfb 0%, #fcf8f3 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 105, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\2665';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.05;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 0.15;
    transform: scale(1.2) rotate(20deg);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateZ(1deg);
    box-shadow: 0 15px 40px rgba(255, 105, 0, 0.3);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff6900;
    display: inline-block;
    animation: star-shimmer 3s ease-in-out infinite;
}

@keyframes star-shimmer {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 5px #fbbf24);
        transform: scale(1.05);
    }
}

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

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

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: #888;
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
    overflow: hidden;
    animation: bg-shift 10s ease-in-out infinite;
}

@keyframes bg-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Starry sky background */
.starry-sky {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.5;
        background-position: 0% 0%;
    }
    50% { 
        opacity: 1;
        background-position: 100% 100%;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: float-cosmic 6s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 105, 0, 0.5));
}

.element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.element:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.element:nth-child(3) { top: 60%; left: 15%; animation-delay: 2s; }
.element:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 3s; }
.element:nth-child(5) { bottom: 30%; left: 30%; animation-delay: 4s; }

@keyframes float-cosmic {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6900 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-shimmer 4s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes title-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.sacred-invitation h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.criteria-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.2), transparent);
    transition: width 0.5s ease;
}

.criteria-item:hover::before {
    width: 100%;
}

.criteria-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 140, 66, 0.5);
    transform: translateX(10px);
}

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

/* Green checkmark style */
.criteria-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: check-pulse 2s ease-in-out infinite;
}

@keyframes check-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

.criteria-item p {
    font-size: 1.1rem;
    margin: 0;
}

.final-offer {
    background: rgba(255, 105, 0, 0.2);
    border: 2px solid rgba(255, 140, 66, 0.5);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    animation: offer-glow 3s ease-in-out infinite;
}

@keyframes offer-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 105, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 140, 66, 0.5);
    }
}

.offer-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gift-icon {
    font-size: 3rem;
}

.offer-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.offer-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.offer-message {
    font-size: 1rem;
    opacity: 0.9;
}

.final-cta-button {
    margin: 50px 0;
}

.btn-cosmic {
    position: relative;
    background: linear-gradient(135deg, #ff6900 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(255, 105, 0, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: cosmic-pulse 2s ease-in-out infinite;
}

@keyframes cosmic-pulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(255, 105, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 105, 0, 0.6), 0 0 40px rgba(255, 140, 66, 0.4);
        transform: scale(1.02);
    }
}

.btn-cosmic:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 25px 70px rgba(255, 105, 0, 0.7), 0 0 50px rgba(255, 140, 66, 0.5);
    animation: none;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-aurora {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: aurora 3s linear infinite;
}

@keyframes aurora {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-text {
    opacity: 0.8;
}

.footer-disclaimer {
    margin-top: 20px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        max-width: 400px;
        margin: 40px auto 0;
        transform: none;
    }
    
    .coaches-grid {
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .exclusion-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-reversed {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-reversed .hero-image {
        order: 2;
        margin-top: 40px;
    }
    
    .hero-reversed .container {
        order: 1;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 60px 30px;
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
    }
    
    .story {
        padding: 60px 30px;
    }
    
    .story-text {
        padding-left: 0;
    }
    
    .testimonials {
        padding: 80px 30px;
    }
    
    .block-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-compact-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 25px;
    }
    
    .cta-compact-title {
        font-size: 1.6rem;
    }
    
    .cta-compact-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .exclusion-cards {
        gap: 20px;
    }
    
    .benefits-section {
        padding: 80px 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .btn-cosmic {
        padding: 20px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section {
        padding: 50px 20px;
    }
    
    .coach-card {
        padding: 30px 20px;
    }
    
    .story {
        padding: 50px 20px;
    }
    
    .testimonials {
        padding: 60px 20px;
    }
    
    .benefits-section {
        padding: 60px 20px;
    }
    
    .benefits-grid {
        gap: 25px;
        padding: 0;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
}