:root {
    --navy: #0b1f3a;
    --blue: #123f73;
    --teal: #16a6a3;
    --gold: #d8a849;
    --text: #1d2b3a;
    --muted: #6d7b8a;
    --light: #f4f7fb;
    --white: #ffffff;
    --border: #dfe7f0;
    --shadow: 0 24px 70px rgba(11, 31, 58, 0.14);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(22, 166, 163, 0.12), transparent 34rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #f4f7fb 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 6%;
    background: rgba(248, 251, 255, 0.84);
    border-bottom: 1px solid rgba(223, 231, 240, 0.75);
    backdrop-filter: blur(18px);
}

.navbar {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 78px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(18, 63, 115, 0.18);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #516273;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-button,
.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 14px 30px rgba(18, 63, 115, 0.22);
}

.secondary-button {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.hero-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 86px 6% 74px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 54px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-content h1 {
    max-width: 620px;
    color: var(--navy);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.hero-text {
    max-width: 610px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-highlights {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-highlights div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    color: var(--navy);
    font-size: 15px;
}

.hero-highlights span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-image-card {
    position: relative;
    width: min(100%, 620px);
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(223, 231, 240, 0.9);
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(22, 166, 163, 0.14), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.9));
    box-shadow: var(--shadow);
}

.hero-image-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    top: -90px;
    border-radius: 999px;
    background: rgba(216, 168, 73, 0.16);
}

.hero-image-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: -120px;
    border-radius: 999px;
    background: rgba(22, 166, 163, 0.12);
}

.main-bridge-image {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    border-radius: 26px;
    object-fit: contain;
    box-shadow: 0 20px 46px rgba(11, 31, 58, 0.12);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 185px;
    padding: 14px 16px;
    border: 1px solid rgba(223, 231, 240, 0.9);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
    backdrop-filter: blur(14px);
}

.floating-card-left {
    left: 8px;
    top: 64px;
}

.floating-card-right {
    right: 8px;
    bottom: 72px;
}

.mini-icon,
.service-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--navy);
    font-size: 15px;
}

.floating-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.secure-badge {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(11, 31, 58, 0.14);
    transform: translateX(-50%);
}

.secure-badge span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #23c26b;
    box-shadow: 0 0 0 6px rgba(35, 194, 107, 0.16);
}

.services-section,
.process-section,
.trust-section,
.site-footer {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 6%;
    padding-right: 6%;
}

.services-section {
    padding-top: 70px;
    padding-bottom: 72px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading h2,
.trust-content h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow),
.trust-content p:not(.eyebrow) {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.process-step {
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 36px rgba(11, 31, 58, 0.06);
}

.service-card {
    padding: 24px;
}

.service-card h3,
.process-step h3 {
    color: var(--navy);
    font-size: 19px;
}

.service-card p,
.process-step p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-icon {
    margin-bottom: 18px;
}

.process-section {
    padding-top: 68px;
    padding-bottom: 76px;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.process-step::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -54px;
    bottom: -54px;
    border-radius: 999px;
    background: rgba(22, 166, 163, 0.1);
}

.step-number {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--gold);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.trust-section {
    margin-bottom: 70px;
    padding-top: 46px;
    padding-bottom: 46px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: center;
    border: 1px solid rgba(223, 231, 240, 0.9);
    border-radius: 34px;
    background: linear-gradient(135deg, var(--navy), #123f73);
    box-shadow: var(--shadow);
}

.trust-content h2,
.trust-content p:not(.eyebrow) {
    color: var(--white);
}

.trust-content .eyebrow {
    color: #7ff0e9;
}

.trust-list {
    display: grid;
    gap: 14px;
}

.trust-list div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: var(--white);
}

.trust-list span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--border);
}

.site-footer p {
    margin-top: 10px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 22px;
    color: var(--muted);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--teal);
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-section,
    .trust-section {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 58px;
    }

    .hero-visual {
        min-height: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .site-header,
    .hero-section,
    .services-section,
    .process-section,
    .trust-section,
    .site-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .nav-button {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-highlights,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-card {
        padding: 14px;
        border-radius: 28px;
    }

    .main-bridge-image {
        border-radius: 20px;
    }

    .floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }

    .secure-badge {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 14px auto 0;
        transform: none;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}