/* Transformez votre réalité émotionnelle - Specialized Styling */

:root {
    --re-primary: #0a0e27;
    /* Deep Midnight Blue */
    --re-secondary: #1a237e;
    /* Royal Blue */
    --re-accent: #F5B041;
    /* Golden Orange (CTA) */
    --re-text-light: #e0e0e0;
    --re-text-dark: #2c2e35;
    --re-bg-light: #f5f7fa;
    --re-glass: rgba(10, 14, 39, 0.8);
}

.re-page {
    font-family: 'Inter', sans-serif;
    color: var(--re-text-dark);
    overflow-x: hidden;
}

/* Hero Section */
.re-hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.re-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
    z-index: 2;
}

.re-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-wrap: balance;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.re-subtitle {
    font-size: var(--text-2xl);
    opacity: 0.9;
    margin-bottom: var(--spacing-3xl);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.re-countdown {
    background: var(--re-glass);
    backdrop-filter: blur(12px);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    display: inline-block;
    margin-bottom: var(--spacing-3xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.re-timer {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
}

.re-timer-item {
    display: flex;
    flex-direction: column;
}

.re-timer-item span:first-child {
    font-size: var(--text-4xl);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--re-accent);
}

.re-timer-item span:last-child {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

/* Content Sections */
.re-main-content {
    padding: var(--spacing-4xl) 0;
    line-height: 1.8;
    font-size: var(--text-lg);
    background: white;
}

.re-main-content h2 {
    color: var(--re-primary);
    margin-top: var(--spacing-4xl);
    margin-bottom: var(--spacing-xl);
    font-size: var(--text-4xl);
    text-align: center;
    font-weight: 700;
}

.re-main-content h3 {
    color: var(--re-secondary);
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* Inscription Card */
.re-inscription {
    background: var(--re-primary);
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
}

.re-inscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(26, 35, 126, 0.4) 0%, transparent 70%);
}

.re-offer-card {
    background: white;
    color: var(--re-text-dark);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-4xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
}

.re-offer-card h2 {
    color: var(--re-primary);
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-sm);
}

.re-offer-intro {
    font-size: var(--text-xl);
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-3xl);
}

/* Pricing Grid */
.re-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
}

.re-price-option {
    padding: var(--spacing-2xl);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    background: var(--re-bg-light);
    transition: transform 0.3s ease;
}

.re-price-option.featured {
    border: 2px solid var(--re-accent);
    background: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.option-label {
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gray-dark);
}

.re-price-option .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--re-primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.re-price-option .subtext {
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-xl);
    min-height: 1.5em;
}

/* Buttons */
.btn-re-accent {
    background-color: var(--re-accent);
    color: var(--re-primary);
    font-weight: 700;
}

.btn-re-accent:hover {
    background-color: #fabc5a;
    color: var(--re-primary);
    transform: translateY(-2px);
}

.btn-re-outline {
    border: 2px solid var(--re-primary);
    color: var(--re-primary);
    font-weight: 600;
}

.btn-re-outline:hover {
    background: var(--re-primary);
    color: white;
}

.re-features {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: var(--spacing-3xl) auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.re-features li {
    padding-left: var(--spacing-xl);
    position: relative;
    font-weight: 500;
}

.re-features li::before {
    content: "✨";
    position: absolute;
    left: 0;
}

.re-guarantee {
    margin-top: var(--spacing-2xl);
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
    font-style: italic;
}

@media (max-width: 992px) {
    .re-pricing-grid {
        grid-template-columns: 1fr;
    }

    .re-price-option.featured {
        transform: none;
    }

    .re-features {
        grid-template-columns: 1fr;
    }
}