.hero { padding: 80px 0; text-align: center; }
.features ul { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.image-text { display: flex; gap: 40px; align-items: center; }
.image-text.right { flex-direction: row-reverse; }
.cta { text-align: center; padding: 60px 0; background: #f4f6fb; }

.pricing {
    text-align: center;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}

.form-section {
    font-size:22px;
    margin:40px 0 16px;
}

.form-grid {
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:16px;
    margin-bottom:16px;
}

label {
    display:flex;
    flex-direction:column;
    gap:6px;
    font-weight:600;
}

input, select, textarea {
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:10px 12px;
    color:#fff;
}

input:focus, textarea:focus, select:focus {
    outline:none;
    border-color:#006b85;
}

small.muted {
    font-size:13px;
}

.cms-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cms-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.cms-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.cms-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.cms-content a {
    color: #2563eb;
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

/* ===================== FORM CARD ===================== */

.form-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Titres dans le formulaire */
.form-card h1 {
    font-size: 34px;
    margin-bottom: 8px;
}

.form-card p.muted {
    font-size: 16px;
    margin-bottom: 28px;
}

/* Sections */
.form-section {
    font-size: 20px;
    margin: 36px 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Labels */
label {
    font-weight: 500;
    font-size: 14px;
}

/* Inputs */
input,
select,
textarea {
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    color: #fff;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,.45);
}

/* Focus */
input:focus,
select:focus,
textarea:focus {
    border-color: #006b85;
    box-shadow: 0 0 0 3px rgba(0,107,133,.25);
}

/* Grid responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Submit area */
.form-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn.primary {
    background: #006b85;
    border-color: #006b85;
}

.btn.primary:hover {
    background: #0087a6;
}