/* ==========================================
   HOME PAGE (Apple Style)
   ========================================== */

/* --- HERO SECTION --- */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background: var(--bg-body);
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Badge Version */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.03);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.2);
}

/* Typography Hero */
.hero-title {
    font-size: 4rem; /* 64px */
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #0071e3 0%, #00c7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-floating);
    background: #000; /* Cadre sombre pour l'app */
    padding: 8px; /* Bordure fine noire */
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.25rem;
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-body);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease-apple);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.price-card {
    background: var(--bg-alt);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid transparent;
    transition: transform 0.3s ease;
}

/* Featured Card (Creator) */
.price-card.featured {
    background: var(--bg-body);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); /* Ombre plus marquée */
    border: 2px solid var(--accent); /* Bordure colorée subtile */
    z-index: 2;
    transform: scale(1.05);
}

.tag-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 113, 227, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plan-header h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.price {
    font-size: 3rem; /* Prix plus gros */
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 4px;
}

.plan-desc {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--text-secondary);
}

.plan-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.plan-features ul li i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 16px; /* Alignement icones */
    text-align: center;
}

/* Style pour les features désactivées (croix) */
.plan-features ul li.disabled {
    color: var(--text-tertiary);
}
.plan-features ul li.disabled i {
    color: var(--text-tertiary);
}

.plan-features ul li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.full-width {
    width: 100%;
    margin-top: 24px;
}

/* --- ANIMATIONS CLASSES (GSAP Targets) --- */
.fade-in, .fade-in-up {
    opacity: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .price-card.featured { transform: scale(1); border-width: 1px; }
    .hero-title { font-size: 2.5rem; }
}