:root {
    --ink: #152238;
    --muted: #5a6878;
    --line: #dbe4ee;
    --paper: #ffffff;
    --wash: #f3f7fb;
    --navy: #123c69;
    --blue: #1769aa;
    --accent: #2f7fbd;
    --accent-soft: #e7f1fb;
    --shadow: 0 22px 60px rgba(18, 60, 105, 0.12);
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--wash);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

section {
    scroll-margin-top: 86px;
}

a {
    color: var(--blue);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(47, 127, 189, 0.35);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 12px;
    z-index: 1100;
    transform: translateY(-160%);
    background: var(--paper);
    color: var(--navy);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(219, 228, 238, 0.9);
    box-shadow: 0 10px 34px rgba(18, 60, 105, 0.07);
    backdrop-filter: blur(12px);
}

.navbar-brand img {
    width: 184px;
    height: auto;
}

.navbar .nav-link {
    color: var(--muted);
    font-weight: 700;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--navy);
}

.navbar-toggler {
    border-color: var(--line);
    border-radius: 8px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 76px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(18, 60, 105, 0.97), rgba(23, 105, 170, 0.92)),
        radial-gradient(circle at 84% 18%, rgba(242, 184, 75, 0.28), transparent 34%),
        var(--navy);
}

.hero h1 {
    max-width: 850px;
    margin: 0 0 1.35rem;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 850;
    line-height: 1.03;
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hero .eyebrow,
.contact-box .eyebrow {
    color: #c9e1f6;
}

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

.btn {
    border-radius: 8px;
    font-weight: 800;
    padding: 0.82rem 1.15rem;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: #246da6;
    border-color: #246da6;
    color: #ffffff;
}

.btn-quiet {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
}

.btn-quiet:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.15);
}

.hero-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.panel-header {
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-header strong {
    display: block;
    color: #ffffff;
    font-size: 1.04rem;
}

.panel-row {
    display: flex;
    gap: 18px;
    align-items: start;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.panel-row:last-child {
    border-bottom: 0;
}

.panel-row strong {
    display: block;
    flex: 0 0 168px;
    color: #ffffff;
}

.panel-row p {
    flex: 1 1 auto;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.proof-strip {
    padding: 24px 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-item strong {
    color: var(--navy);
    font-size: 1.04rem;
}

.proof-item span {
    color: var(--muted);
}

.section {
    padding: 78px 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-heading.compact {
    margin-bottom: 24px;
}

.section-heading h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 850;
    line-height: 1.12;
}

.section-heading p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.module-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 48px rgba(18, 60, 105, 0.07);
}

.module-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--navy);
    background: var(--accent-soft);
}

.module-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.module-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    font-weight: 850;
}

.module-card p {
    margin: 0;
    color: var(--muted);
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-list {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
}

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

.security-card {
    background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.product-section {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-visual {
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 0 0 0 10px #f4f8fc, 0 18px 48px rgba(18, 60, 105, 0.07);
}

.product-visual img {
    width: min(82%, 390px);
    height: auto;
    border-radius: 8px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.check-list span {
    flex: 0 0 24px;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--navy);
    background: var(--accent-soft);
    font-weight: 900;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 48px rgba(18, 60, 105, 0.07);
}

.timeline-step {
    padding: 30px;
    border-right: 1px solid var(--line);
}

.timeline-step:last-child {
    border-right: 0;
}

.timeline-step span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-weight: 900;
}

.timeline-step h3 {
    margin-bottom: 0.6rem;
    font-size: 1.18rem;
    font-weight: 850;
}

.timeline-step p {
    margin: 0;
    color: var(--muted);
}

.contact-section {
    padding: 74px 0;
    background: var(--navy);
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #ffffff;
}

.contact-box h2 {
    max-width: 720px;
    margin-bottom: 0.75rem;
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 850;
    line-height: 1.12;
}

.contact-box p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.76);
    background: #0b233d;
}

.site-footer a {
    color: #c9e1f6;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.legal-page {
    padding: 72px 0;
    background: var(--wash);
}

.legal-card {
    max-width: 1080px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 48px rgba(18, 60, 105, 0.07);
}

.legal-card p,
.legal-card address,
.legal-card ul {
    max-width: 860px;
}

.legal-card h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 850;
}

.legal-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 850;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card address {
    color: var(--muted);
    font-style: normal;
}

.legal-card .note {
    padding: 16px;
    border-left: 4px solid var(--accent);
    background: var(--accent-soft);
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 72px 0 58px;
    }

    .hero-panel {
        margin-top: 8px;
    }

    .panel-row {
        flex-direction: column;
        row-gap: 4px;
    }

    .panel-row strong,
    .panel-row p {
        flex: 1 1 auto;
        width: 100%;
    }

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

    .feature-list.two-columns {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .timeline-step:last-child {
        border-bottom: 0;
    }

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

@media (max-width: 767.98px) {
    .navbar-brand img {
        width: 156px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-copy {
        font-size: 1.05rem;
    }

    .section,
    .contact-section {
        padding: 56px 0;
    }

    .module-card,
    .timeline-step {
        padding: 24px;
    }

    .product-visual {
        min-height: 270px;
    }

}
