body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f7f9fc;
    color: #142033;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}





.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    width: 100%;
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(90deg, rgba(7, 22, 44, 0.68) 0%, rgba(7, 22, 44, 0.42) 42%, rgba(7, 22, 44, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 22, 44, 0.14) 0%, rgba(7, 22, 44, 0.28) 100%); */
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(180deg,rgba(0,0,0,.55) 100%,rgba(0,0,0,.28) 40%,rgba(0,0,0,.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
    padding-top: 80px;
}

.hero-kicker {
    margin: 0 0 18px;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d5e8ff;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.98;
    font-weight: 650;
    letter-spacing: -0.04em;
    max-width: 820px;
}

.hero-description {
    margin: 0 0 34px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #3266ce;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(117, 163, 255, 0.28);
}

.btn-primary:hover {
    background: #202a4c;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.intro-section {
    padding: 110px 0;
    background: #f7f9fc;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 34px;
    align-items: stretch;
}

.section-label {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2e83ff;
}

.section-label p {
    color: #fff !important;
}

.intro-copy h2,
.section-heading h2,
.cta-box h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #142033;
}

.intro-copy p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #415168;
    max-width: 760px;
}

.intro-copy h1 {
    color: #3266ce;
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    max-width: 760px;
}

.intro-card {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 28px;
    padding: 34px 32px;
    box-shadow: 0 18px 40px rgba(16, 42, 84, 0.08);
}

.intro-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #33445d;
    line-height: 1.9;
    font-size: 16px;
}

.services-preview {
    padding: 110px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: #f7f9fc;
    border: 1px solid #dbe7f6;
    border-radius: 24px;
    padding: 28px;
    min-height: 220px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 53, 106, 0.08);
    border-color: #bfd8f7;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.15;
    color: #142033;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #52627a;
}

.section-action {
    margin-top: 34px;
}

.process-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #edf5ff 0%, #f7f9fc 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #d6e4f5;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(16, 42, 84, 0.06);
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8f2ff;
    color: #2e83ff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.process-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #142033;
}

.process-card p {
    margin: 0;
    color: #52627a;
    font-size: 15px;
    line-height: 1.75;
}

.cta-section {
    padding: 110px 0;
    background: #ffffff;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, #0d2e63 0%, #1f5db8 100%);
    border-radius: 32px;
    padding: 44px;
    color: #ffffff;
}

.cta-box h2,
.cta-box p,
.cta-box .section-label {
    color: #ffffff;
}

.cta-box p {
    margin: 0;
    max-width: 650px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-box .btn-primary {
    background: #ffffff;
    color: #0d2e63;
    box-shadow: none;
}

.cta-box .btn-primary:hover {
    background: #eef5ff;
}

.cta-box .btn-secondary {
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
}

@media (max-width: 1100px) {
    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, 1200px);
    }



    .main-nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .main-nav a {
        font-size: 14px;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .hero-description {
        font-size: 16px;
    }

    .services-preview,
    .intro-section,
    .process-section,
    .cta-section {
        padding: 80px 0;
    }

    .service-cards,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .intro-copy h2,
    .section-heading h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .cta-box {
        padding: 30px 24px;
        border-radius: 24px;
    }
}
