/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* CONTAINER */
.ss-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.ss-hero {
    background: linear-gradient(135deg, #0a5ea8, #083d6b);
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
}

.ss-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.ss-hero p {
    font-size: 18px;
    max-width: 850px;
    margin: auto;
    opacity: 0.95;
}

/* SECTIONS */
.ss-section {
    padding: 70px 0;
}

.ss-light {
    background: #f4f9ff;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

/* INTRO */
.ss-intro {
    max-width: 900px;
}

/* GRID */
.ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ss-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.ss-card h3 {
    color: #0a5ea8;
    margin-bottom: 8px;
}

/* PROCESS */
.ss-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ss-step {
    background: #eaf4ff;
    padding: 24px;
    border-radius: 14px;
    border-left: 6px solid #0a5ea8;
}

.ss-step span {
    font-weight: 700;
    color: #0a5ea8;
}

/* BENEFITS */
.ss-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ss-benefit {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #dbe9ff;
}

/* CTA */
.ss-cta {
    background: #0a5ea8;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

.ss-cta h2 {
    margin-bottom: 10px;
}

.ss-cta a {
    display: inline-block;
    margin-top: 16px;
    background: #ffffff;
    color: #0a5ea8;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ss-grid,
    .ss-process,
    .ss-benefits {
        grid-template-columns: 1fr;
    }

    .ss-hero h1 {
        font-size: 32px;
    }
}
