/* style.css - Version inspirée Mon Histoire Magique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FBF7F0 0%, #F5EFE0 100%);
    color: #2C3A2B;
    line-height: 1.6;
    min-height: 100vh;
    padding: 30px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    min-height: 70vh;
}

/* Header / Menu (inspiré du header) */
.main-menu {
    background: white;
    border-radius: 60px;
    padding: 15px 25px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #E9DCCF;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #2C3A2B;
}

.logo span {
    color: #D9A13B;
}

.nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    background: #F5EFE0;
    color: #4C6A3B;
}

.nav-links a:hover {
    background: #D9A13B;
    color: white;
    transform: translateY(-2px);
}

.btn-licence {
    background: transparent !important;
    border: 2px solid #8FBC8F;
    color: #4C6A3B !important;
}

.btn-licence:hover {
    background: #8FBC8F !important;
    color: white !important;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 60px 0;
    flex-wrap: wrap;
    background: white;
    border-radius: 60px;
    padding: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2C3A2B;
}

.highlight {
    color: #D9A13B;
}

.hero-image {
    flex: 1;
    text-align: center;
    font-size: 120px;
}

.hero-note {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

/* Boutons */
.btn, button, .btn-primary {
    background: #D9A13B;
    color: #2C3A2B;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover, button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 161, 59, 0.3);
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid #8FBC8F;
    color: #4C6A3B;
}

.btn-secondary:hover {
    background: #8FBC8F;
    color: white;
}

/* Section titre */
.section-title {
    text-align: center;
    font-size: 32px;
    margin: 50px 0 30px;
    color: #4C6A3B;
}

/* Cartes avantages */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Tarifs */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #D9A13B;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D9A13B;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0;
}

.price span {
    font-size: 14px;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    margin: 10px 0;
}

/* Formulaires */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4C6A3B;
}

input, select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #E9DCCF;
    border-radius: 40px;
    background: white;
    transition: 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #D9A13B;
    box-shadow: 0 0 0 3px rgba(217, 161, 59, 0.1);
}

/* Compteur essais */
.compteur {
    background: #F5EFE0;
    padding: 15px;
    border-radius: 40px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Histoire */
.histoire-texte {
    background: white;
    border-radius: 30px;
    padding: 30px;
    line-height: 1.6;
    font-size: 17px;
    color: #2C3A2B;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.histoire-texte p {
    margin-bottom: 12px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #E9DCCF;
    margin-top: 50px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .main-menu {
        flex-direction: column;
        text-align: center;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}