:root {
    --navy: #071D33;
    --navy2: #0B2A4A;
    --blue: #0878D1;
    --cyan: #19A9E5;
    --ink: #101828;
    --muted: #667085;
    --line: #D9E5EF;
    --bg: #F4F8FC;
    --white: #fff;
    --shadow: 0 18px 50px rgba(7, 29, 51, .1);
    --radius: 18px;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.6
}

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

button,
input,
textarea,
select {
    font: inherit
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e8eef4
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 225px
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--blue), var(--cyan));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    padding: 7px;
    gap: 3px
}

.brand-mark i {
    background: #fff;
    height: 55%;
    border-radius: 2px
}

.brand-mark i:nth-child(2) {
    height: 80%
}

.brand-mark i:nth-child(3) {
    height: 65%
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: var(--navy)
}

.brand-text b {
    color: var(--blue)
}

.brand-text small {
    display: block;
    font-size: 6px;
    letter-spacing: 1px;
    color: #667085;
    margin-top: 5px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1
}

.main-nav>a,
.nav-drop>button {
    border: 0;
    background: none;
    padding: 10px 10px;
    font-weight: 650;
    color: #344054;
    font-size: 13px;
    border-radius: 9px;
    cursor: pointer
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-drop>button:hover,
.nav-drop>button.active {
    color: var(--blue);
    background: #eef7ff
}

.nav-drop {
    position: relative
}

.drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow)
}

.nav-drop:hover .drop-menu,
.nav-drop.open .drop-menu {
    display: block
}

.drop-menu a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px
}

.drop-menu a:hover {
    background: #f0f7fd;
    color: var(--blue)
}

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

.phone-link {
    display: flex;
    gap: 7px;
    color: var(--navy)
}

.phone-link small {
    font-size: 9px;
    color: #667085;
    line-height: 1.1
}

.phone-link strong {
    display: block;
    color: var(--navy);
    font-size: 11px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 20px;
    border-radius: 9px;
    font-weight: 750;
    border: 1px solid transparent;
    transition: .2s
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(8, 120, 209, .18)
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-outline {
    border-color: #9fb5c7;
    color: var(--navy);
    background: #fff
}

.btn-light {
    background: #fff;
    color: var(--navy)
}

.btn-small {
    padding: 10px 14px;
    font-size: 12px
}

.nav-toggle {
    display: none;
    border: 0;
    background: none
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px
}

.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(3, 17, 31, .95), rgba(5, 29, 51, .76) 45%, rgba(7, 29, 51, .18))
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 62%;
    padding: 90px 0
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 9px
}

.hero .eyebrow {
    color: #8bdcff
}

.hero h1 {
    font-size: clamp(42px, 5.5vw, 70px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 0 0 20px
}

.hero h1 span {
    color: var(--cyan)
}

.hero p {
    font-size: 17px;
    color: #d7e7f3;
    max-width: 650px
}

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

.hero .btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff
}

.hero-trust {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: min(650px, 55%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(4, 24, 43, .82);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px 16px 0 0;
    z-index: 3
}

.trust-item {
    padding: 18px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .15)
}

.trust-item:last-child {
    border: 0
}

.trust-icon {
    width: 36px;
    height: 36px;
    margin: auto auto 7px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(25, 169, 229, .15);
    color: #8bdcff;
    font-size: 11px
}

.trust-item strong {
    font-size: 11px
}

.stats {
    padding: 28px 0;
    border-bottom: 1px solid var(--line)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    padding: 8px 24px;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat strong {
    display: block;
    font-size: 31px;
    color: var(--blue);
    line-height: 1
}

.stat span {
    font-size: 12px;
    color: var(--muted)
}

.section {
    padding: 95px 0
}

.section-soft {
    background: var(--bg)
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 38px
}

.section-head h2,
.section-title h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.08;
    letter-spacing: -1px
}

.section-head p,
.section-title p {
    color: var(--muted)
}

.section-title {
    text-align: center;
    margin-bottom: 42px
}

.section-title p {
    max-width: 650px;
    margin: 12px auto 0
}

.about-grid,
.why-grid,
.government-grid,
.security-grid,
.detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.image-card {
    position: relative
}

.image-card img,
.gov-image img,
.dark-image img,
.security-image img,
.detail-hero img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--blue);
    color: #fff;
    padding: 18px 20px;
    border-radius: 14px
}

.experience-badge strong {
    display: block;
    font-size: 28px;
    line-height: 1
}

.about-copy h2,
.why-grid h2 {
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.07;
    margin: 0 0 16px
}

.about-copy p,
.why-grid p {
    color: var(--muted)
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 25px 0
}

.feature {
    padding: 14px;
    background: #f7fbfe;
    border: 1px solid var(--line);
    border-radius: 12px
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #e3f3ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-weight: 800
}

.feature strong {
    display: block;
    font-size: 12px;
    margin-top: 8px
}

.feature small {
    color: var(--muted);
    font-size: 10px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-card,
.benefit,
.quote-card,
.resource-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px
}

.service-card {
    padding: 25px;
    transition: .2s
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #b9d9ef
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #eaf6ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 16px
}

.service-card h3 {
    margin: 0 0 6px
}

.service-card p {
    color: var(--muted);
    font-size: 13px
}

.learn {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800
}

.dark-section {
    background: var(--navy);
    color: #fff
}

.dark-section p {
    color: #c4d4e0
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 25px
}

.check {
    display: flex;
    gap: 10px
}

.check-bullet {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(25, 169, 229, .15);
    color: #8bdcff;
    font-size: 10px
}

.check strong {
    display: block;
    font-size: 13px
}

.check span {
    display: block;
    color: #b5c9d8;
    font-size: 11px
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0
}

.pill {
    padding: 7px 12px;
    border: 1px solid #c9dfed;
    border-radius: 99px;
    color: #31556f;
    background: #fff;
    font-size: 11px;
    font-weight: 700
}

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

.process:before {
    content: "";
    position: absolute
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px
}

.step h3 {
    margin: 0 0 5px;
    font-size: 16px
}

.step p {
    color: var(--muted);
    font-size: 12px
}

.security-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.security-point {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px
}

.security-point h3 {
    font-size: 14px;
    margin: 0 0 4px
}

.security-point p {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 16px 15px;
    color: #fff;
    background: linear-gradient(transparent, rgba(4, 24, 43, .9))
}

.testimonial-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.quote-card {
    padding: 26px
}

.stars {
    color: #0b86d9
}

.quote-card blockquote {
    margin: 14px 0;
    font-size: 14px;
    color: #344054
}

.client {
    display: flex;
    gap: 10px;
    align-items: center
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dff2ff;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800
}

.client strong {
    display: block;
    font-size: 12px
}

.client span {
    font-size: 10px;
    color: var(--muted)
}

.resource-card {
    overflow: hidden
}

.resource-card img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.resource-body {
    padding: 19px
}

.resource-meta {
    font-size: 9px;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.resource-body h3 {
    font-size: 17px;
    margin: 7px 0
}

.resource-body p {
    font-size: 12px;
    color: var(--muted)
}

.cta {
    padding: 60px 0;
    background: linear-gradient(110deg, #071D33, #0B4F8A);
    color: #fff
}

.cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px
}

.cta h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 43px);
    line-height: 1.05
}

.cta p {
    color: #cfe1ee
}

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

.page-hero {
    padding: 85px 0;
    background: linear-gradient(105deg, #071D33, #0B4F8A);
    color: #fff
}

.page-hero h1 {
    font-size: clamp(39px, 5vw, 60px);
    line-height: 1.05;
    margin: 0 0 12px
}

.page-hero p {
    max-width: 720px;
    color: #d1e4f0
}

.breadcrumbs {
    font-size: 11px;
    color: #9ed9f7;
    margin-bottom: 13px
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.benefit {
    padding: 24px
}

.benefit h3 {
    margin: 0 0 6px
}

.benefit p {
    font-size: 12px;
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 30px
}

.contact-panel {
    background: var(--navy);
    color: #fff;
    border-radius: 22px;
    padding: 35px
}

.contact-panel p {
    color: #c8d8e5
}

.contact-info {
    display: grid;
    gap: 17px;
    margin-top: 25px
}

.contact-info a,
.contact-info div {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.form-card {
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.field {
    display: grid;
    gap: 6px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 11px;
    font-weight: 750
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #ccd9e4;
    border-radius: 9px;
    outline: 0
}

.field textarea {
    min-height: 145px
}

.alert {
    padding: 13px;
    border-radius: 9px;
    background: #eaf7ee;
    color: #17663a;
    margin-bottom: 18px
}

.alert.error {
    background: #fff0f0;
    color: #9c2020
}

.faq {
    display: grid;
    gap: 9px
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 17px;
    text-align: left;
    font-weight: 750;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.faq-a {
    display: none;
    padding: 0 17px 17px;
    color: var(--muted);
    font-size: 12px
}

.faq-item.open .faq-a {
    display: block
}

.site-footer {
    background: #041626;
    color: #d7e4ed;
    padding-top: 65px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr 1.2fr;
    gap: 42px;
    padding-bottom: 42px
}

.brand-footer .brand-text {
    color: #fff
}

.footer-brand p,
.site-footer p {
    color: #9db2c1;
    font-size: 12px
}

.site-footer h3 {
    font-size: 13px;
    color: #fff;
    margin: 0 0 14px
}

.footer-links,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px
}

.footer-links a,
.contact-list {
    font-size: 11px;
    color: #9db2c1
}

.socials {
    display: flex;
    gap: 8px
}

.socials a {
    width: 33px;
    height: 33px;
    border: 1px solid #2d4558;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px
}

.newsletter {
    display: flex;
    border: 1px solid #2c4559;
    border-radius: 8px;
    overflow: hidden
}

.newsletter input {
    flex: 1;
    min-width: 0;
    background: #071D33;
    border: 0;
    padding: 10px;
    color: #fff
}

.newsletter button {
    width: 42px;
    background: var(--blue);
    color: #fff;
    border: 0
}

.footer-bottom {
    border-top: 1px solid #22394a;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #718899
}

.footer-bottom i {
    font-style: normal;
    margin: 0 7px
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: none;
    z-index: 50
}

.back-top.show {
    display: block
}