* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, Arial, sans-serif;
}

body {
    color: #0f172a;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.header {
    background: #020617;
    color: #fff;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.hero h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.subtitle {
    max-width: 700px;
    margin: auto;
}

.hero-points {
    list-style: none;
    margin: 25px 0;
}

.hero-points li {
    margin: 6px 0;
}

.cta-group button {
    padding: 12px 22px;
    margin: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.cta-group button {
    background: #fff;
    color: #1e3a8a;
}

.cta-group .secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* Sections */
section {
    padding: 70px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
}

/* Trust */
.trust {
    background: #f1f5f9;
    text-align: center;
    font-weight: 500;
}

/* Approach */
.approach-intro {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.steps {
    max-width: 500px;
    margin: 30px auto 0;
}

.steps li {
    margin: 10px 0;
}

/* Why */
.why-list {
    max-width: 600px;
    margin: auto;
    list-style: none;
}

.why-list li {
    margin: 10px 0;
}

/* Contact */
.contact {
    background: #020617;
    color: #fff;
    text-align: center;
}

.contact form {
    max-width: 450px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
}

.contact button, .secondary {
    background: #2563eb;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

a.secondary {
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.success {
    margin-top: 15px;
    color: #22c55e;
}

/* Footer */
.footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
