body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #020617, #1e293b);
}

.logo {
    width: 120px;
    margin-bottom: 15px;
}

h1 {
    color: #38bdf8;
    margin: 10px 0;
}

section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #38bdf8;
    margin-bottom: 15px;
}

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service {
    background: #020617;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #38bdf8;
}

.contact {
    background: #020617;
    text-align: center;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 15px;
    background: #020617;
    font-size: 14px;
}/* ===== ANIMATIONS ===== */

section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animation services */
.service {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(56,189,248,0.4);
}

/* Logo animation */
.logo {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}.infos {
    background: #020617;
    border-radius: 12px;
    margin-bottom: 40px;
}

.info-box p {
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}

.info-box p:last-child {
    border-bottom: none;
}/* ===== REVENDEUR TABLE ===== */

.reseller-table {
    background: #020617;
    border-radius: 14px;
    margin-bottom: 40px;
}

.reseller-sub {
    text-align: center;
    margin-bottom: 30px;
    color: #cbd5f5;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

thead th {
    background: #0f172a;
    color: #38bdf8;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #1e293b;
}

tbody td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #1e293b;
}

tbody tr:hover {
    background: #020617;
}

.api {
    color: #22c55e;
    font-weight: bold;
}

.no-api {
    color: #ef4444;
    font-weight: bold;
}

.reseller-why {
    margin-top: 30px;
}

.reseller-why ul {
    padding-left: 20px;
}

.reseller-why li {
    margin-bottom: 8px;
}

.reseller-note {
    margin-top: 25px;
    background: #1d4ed8;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}.logo {
    width: 160px;        /* taille du logo */
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto; /* centré + espace en bas */
}