* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #081c2c;
    color: white;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #0b2236;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    height: 60px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BOUTON */
.btn {
    background: #1da1f2;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}
.btn:hover {
    background: #0d8ddb;
    transform: translateY(-1px);
}
/* HERO COMPACT */
/* HERO */
.hero {
    height: 300px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(to right, rgba(5,20,35,0.95), rgba(5,20,35,0.4)),
        url('../img/hero.png') no-repeat center right;

    background-size: cover;
}

/* CONTENU HERO ALIGNÉ AVEC LE SITE */
.hero-inner {
    width: 100%;
}

/* TEXTE */
.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}
.center{
	text-align: center;
	
}
.hero p {
    margin-bottom: 15px;
    color: #cfe6ff;
}

/* SECTIONS */
.section {
    padding: 35px 0;
}

.section.dark {
    background: #0d2b45;
}

h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

p {
    color: #cfe8ff;
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* LIST */
.list {
    list-style: none;
    padding: 0;
}

.list li {
    margin-bottom: 12px;
}

/* PRICING */
.pricing-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;
    justify-content: center;   /* centre vertical */
    align-items: center;       /* centre horizontal */

    text-align: center;
    min-height: 250px; /* IMPORTANT pour l'équilibre visuel */
}

.pricing-card h2 {
    margin-bottom: 10px;
}

.price {
    font-size: 30px;
    font-weight: bold;
    color: #1da1f2;
    margin: 15px 0;
}
.price-highlight {
    margin-top: 15px;
    font-size: 14px;
    color: #9fcfff;
}
.card {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.06);
}

/* FORM */
.form {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-success {
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgba(0, 200, 100, 0.3);
    color: #00e676;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff5252;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.form input,
.form textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.form textarea {
    min-height: 80px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #071521;
}
.narrow {
    max-width: 700px;
}

/* Texte */
.lead {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 15px;
}

.sub {
    font-size: 16px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Bloc alerte */
.alert-box {
    margin-top: 25px;
    padding: 18px 20px;
    background: rgba(255, 170, 0, 0.08);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 10px;
    color: #ffc107;
    font-size: 15px;
}

.stat {
    padding: 40px 20px;
    text-align: center;
}

.stat-text {
    font-size: 18px;
    color: #cfe9ff;
    opacity: 0.9;
    line-height: 1.6;
}

.stat-text strong {
    color: #4fc3f7;
    font-weight: 600;
}

.stat-text span {
    display: block;
    margin-top: 5px;
    opacity: 0.7;
    font-size: 16px;
}
/* TITRE */
.price-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* PRIX */
.price {
    font-size: 32px;
    font-weight: bold;
    color: #4fc3f7;
    margin-bottom: 10px;
}

/* TEXTE */
.price-box p {
	opacity: 0.8;
    font-size: 15px;
}
.section.features {
    padding: 40px 0 40px; /* 👈 moins en haut, équilibré */
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* 👈 réduit (avant 30) */
}

/* CARTE */
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

/* HOVER PRO */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* TITRE */
.feature-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

/* LISTE */
.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
}

/* ICÔNE CHECK CUSTOM */
.feature-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #4fc3f7;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 30px;
    }

    .hero h1 {
        font-size: 22px;
    }
	
	.grid-2 {
        grid-template-columns: 1fr;
    }
	.lead {
        font-size: 16px;
    }

    .sub {
        font-size: 14px;
    }

    .alert-box {
        font-size: 14px;
        padding: 15px;
    }
	
	.stat-text {
        font-size: 16px;
    }

    .stat-text span {
        font-size: 14px;
    }
	
	.stat-text strong {
		color: #4fc3f7;
		text-shadow: 0 0 8px rgba(79, 195, 247, 0.4);
	}
}