/* =========================================================
 *  GLOBAL
 = *======================================================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #0b0f17;
    color: #e6edf3;
}

body {
    line-height: 1.6;
}

/* =========================================================
 *  LAYOUT
 = *======================================================== */

.wrapper {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    width: 100%;
}

/* =========================================================
 *  BADGE
 = *======================================================== */

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 25px;
    color: #c3d1dc;
}

/* =========================================================
 *  HEADINGS
 = *======================================================== */

h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 60px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
}

.subtitle {
    font-size: 17px;
    color: #9aa7b3;
    margin-bottom: 60px;
}

/* =========================================================
 *  SECTIONS
 = *======================================================== */

.positioning,
.methodology,
.offers,
.engagement,
.contact {
    margin-bottom: 80px;
}

.positioning p,
.engagement p,
.method-step p {
    color: #c3d1dc;
    margin-bottom: 15px;
}

/* =========================================================
 *  MÉTHODOLOGIE
 = *======================================================== */

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.method-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 25px;
}

.method-step h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* =========================================================
 *  OFFERS
 = *======================================================== */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offer {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 35px;
    transition: border-color 0.2s ease;
}

.offer:hover {
    border-color: rgba(0,123,255,0.5);
}

.featured {
    border: 1px solid rgba(0,123,255,0.7);
}

.price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer ul {
    padding-left: 18px;
}

.offer li {
    margin-bottom: 10px;
    color: #c3d1dc;
}

/* =========================================================
 *  FORM
 = *======================================================== */

.form-card,
.contact form {
    max-width: 650px;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #4da3ff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* =========================================================
 *  BUTTON
 = *======================================================== */

button {
    width: 100%;
    padding: 14px;
    background: #1f6feb;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: #2a7cff;
}

/* =========================================================
 *  SUCCESS MESSAGE
 = *======================================================== */

.success {
    background: rgba(0,200,120,0.08);
    border: 1px solid rgba(0,200,120,0.3);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
    color: #7cffc4;
}

/* =========================================================
 *  MONITOR DASHBOARD
 = *======================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    color: #9aa7b3;
}

.monitor-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
    font-size: 13px;
}

.monitor-table th,
.monitor-table td {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px;
}

.monitor-table th {
    background: rgba(255,255,255,0.05);
}

canvas {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 50px;
}

/* =========================================================
 *  FOOTER
 = *======================================================== */

.footer {
    font-size: 14px;
    color: #7f8c98;
    margin-top: 60px;
}

.footer a {
    color: #4da3ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* =========================================================
 *  HONEYPOT FIELD
 = *======================================================== */

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

/* =========================================================
 *  RESPONSIVE
 = *======================================================== */

@media (max-width: 768px) {

    h1 {
        font-size: 26px;
    }

    .wrapper {
        padding: 40px 15px;
    }

    .offer-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }
}
