
:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --text: #17273d;
    --text-muted: #5f6d7a;
    --border: #e8eef5;
    --primary: #0f2e4f;
    --primary-deep: #081d35;
    --accent: #4fd1c5;
    --accent-soft: #dff7f4;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f8fbff 0%, var(--bg) 100%);
}
img, svg { display: block; max-width: 100%; }
.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 40px;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 32px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 800;
}
.nav-links {
    display: flex;
    gap: 24px;
}
.nav-links a, .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #183a62 100%);
    color: white;
    box-shadow: 0 14px 30px rgba(15, 46, 79, 0.16);
}
.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
}
.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 42px 0 70px;
}
.eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
h1, h2, h3 {
    margin: 0;
    letter-spacing: -0.03em;
}
h1 {
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    line-height: 1.05;
    max-width: 640px;
    margin-bottom: 16px;
}
.hero-sub {
    margin: 0 0 24px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 610px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.bullet-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--text-muted);
}
.bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bullet-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #2f98b1 100%);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero-visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.8;
}
.orb-one {
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.34) 0%, rgba(79, 209, 197, 0) 70%);
    top: 40px;
    left: 40px;
}
.orb-two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(15, 46, 79, 0.16) 0%, rgba(15, 46, 79, 0) 72%);
    bottom: 20px;
    right: 28px;
}
.visual-card {
    position: relative;
    width: min(100%, 470px);
    padding: 18px;
    border-radius: 32px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(232,238,245,0.9);
    box-shadow: 0 28px 60px rgba(7,24,44,0.08);
    backdrop-filter: blur(16px);
}
.services, .process, .testimonial {
    padding: 36px 0 18px;
}
.section-heading { margin-bottom: 24px; }
.section-heading h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.service-card, .step, .quote-card, .cta-banner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(15,46,79,0.05);
}
.service-card { padding: 24px; }
.icon-wrap {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-soft);
    margin-bottom: 16px;
}
.icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3, .step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.service-card p, .step p, .quote-card p, .footer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.step { padding: 24px; }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #183a62 100%);
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}
.quote-card {
    padding: 32px;
    background: linear-gradient(135deg, #fdfefe 0%, #f3f9ff 100%);
}
.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 10px;
}
.quote {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 20px;
}
.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.quote-author span {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.cta-banner {
    margin: 30px 0 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #0d2e4d 0%, #163d64 100%);
    color: white;
}
.cta-banner .eyebrow { color: #8fe4da; }
.cta-banner h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 0 10px;
    color: var(--text-muted);
}
.brand-footer { margin-bottom: 8px; }
.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.social {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
}
.social svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}
@media (max-width: 980px) {
    .hero, .card-grid, .steps { grid-template-columns: 1fr; }
    .hero { gap: 24px; }
    .hero-visual { min-height: 360px; }
}
@media (max-width: 760px) {
    .page-shell { padding: 16px 16px 24px; }
    .nav { flex-wrap: wrap; gap: 12px; }
    .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    }
    .cta-banner, .footer {
    flex-direction: column;
    align-items: flex-start;
    }
}