* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1d1f24;
    background-color: #f7f8fb;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4c6ef5;
    margin-bottom: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #1e2a4a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    font-weight: 500;
    color: #1e2a4a;
}

.nav-menu a {
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #4c6ef5;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 6px;
    flex-direction: column;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #1e2a4a;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: #4c6ef5;
    color: #fff;
    box-shadow: 0 14px 30px rgba(76, 110, 245, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #3b5bdb;
}

.btn-secondary {
    background: #ffffff;
    color: #1e2a4a;
    border: 1px solid #dce2f2;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.btn-outline {
    border: 1px solid #dce2f2;
    color: #1e2a4a;
    background: #ffffff;
}

.hero {
    padding: 110px 0 80px;
    background: radial-gradient(circle at top right, #dbe4ff 0%, #f7f8fb 55%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 40px;
}

.hero h1 {
    font-size: clamp(2.4rem, 2vw + 2rem, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1e2a4a;
}

.lead {
    font-size: 1.1rem;
    color: #495066;
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.trust-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.trust-title {
    font-weight: 700;
    color: #1e2a4a;
    display: block;
}

.trust-sub {
    color: #667085;
    font-size: 0.9rem;
}

.hero-card {
    background: #1e2a4a;
    color: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.hero-card .btn-primary {
    width: 100%;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.checklist li {
    padding-left: 28px;
    position: relative;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a5b4fc;
    font-weight: 700;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 1.6vw + 1.5rem, 2.8rem);
    color: #1e2a4a;
    margin-bottom: 16px;
}

.section-header p {
    color: #616a80;
}

.services {
    background: #ffffff;
}

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

.service-card {
    background: #f7f8fb;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
    margin-bottom: 12px;
    color: #1e2a4a;
}

.service-card p {
    color: #5a647a;
}

.highlight {
    background: #f1f4ff;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.highlight h2 {
    margin-bottom: 16px;
    color: #1e2a4a;
}

.highlight p {
    color: #5a647a;
}

.highlight-cards {
    display: grid;
    gap: 16px;
}

.highlight-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.highlight-card h4 {
    margin-bottom: 8px;
    color: #1e2a4a;
}

.process {
    background: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.process-step {
    background: #f7f8fb;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.step-number {
    display: inline-block;
    font-weight: 700;
    color: #4c6ef5;
    margin-bottom: 12px;
}

.portfolio {
    background: #f7f8fb;
}

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

.portfolio-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.portfolio-visual {
    height: 160px;
    border-radius: 14px;
    background: linear-gradient(130deg, #dbe4ff, #f5f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1e2a4a;
    margin-bottom: 18px;
}

.testimonials {
    background: #ffffff;
}

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

.testimonial-card {
    background: #f7f8fb;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    color: #4a5368;
}

.testimonial-card span {
    display: block;
    margin-top: 16px;
    font-weight: 600;
    color: #1e2a4a;
}

.faq {
    background: #f1f4ff;
}

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

.faq-item {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: #1e2a4a;
}

.contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
    color: #1e2a4a;
}

.contact-info p {
    color: #5a647a;
    margin-bottom: 22px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-details span {
    font-weight: 600;
    color: #1e2a4a;
    display: block;
    margin-bottom: 6px;
}

.contact-details a {
    color: #4c6ef5;
    font-weight: 600;
}

.contact-form {
    background: #f7f8fb;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.contact-form label {
    font-weight: 600;
    color: #1e2a4a;
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dce2f2;
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-top: 8px;
}

.contact-form button {
    width: 100%;
    margin-top: 18px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #7a8397;
    text-align: center;
}

.footer {
    background: #1e2a4a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 26px;
    margin-bottom: 30px;
}

.footer h3,
.footer h4 {
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
}

@media (max-width: 980px) {
    .nav-menu {
        position: fixed;
        inset: 70px 0 auto 0;
        background: #ffffff;
        flex-direction: column;
        padding: 28px;
        gap: 18px;
        transform: translateY(-120%);
        transition: transform 0.2s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 130px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-card {
        padding: 24px;
    }
}
