.site-nav {
    background: #0f2742;
    padding: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-logo img.logo-reg {
    height: 52px;
    width: auto;
    display: block;
}

.nav-logo img.logo-stacked {
    display: none;
    width: auto;
    height: auto;
    max-width: 140px;
}

.nav-contact {
    text-align: right;
}

.nav-contact .phone {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.nav-contact .phone a {
    color: #fff;
    text-decoration: none;
}

.nav-links {
    background: #163555;
}

.nav-links-inner {
    display: flex;
    align-items: center;
}

.nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.nav-links ul li a {
    display: block;
    color: #cce0f5;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 11px 18px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-links ul li a:hover,
.nav-links ul li.active a {
    background: #0f2742;
    color: #fff;
}

.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    line-height: 1;
}

.nav-menu-toggle:focus {
    outline: 2px solid #cce0f5;
    outline-offset: 2px;
}

.section {
    padding: 70px 0;
}

.section-gray {
    padding: 70px 0;
    background: #f4f8fd;
}

.section-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    color: #0f2742;
    margin: 0 0 10px;
}

.section-sub {
    font-size: 1rem;
    color: #5a6a7a;
    margin: 0 0 36px;
}

.section-sub-narrow {
    max-width: 620px;
    margin: 0 auto;
}

.accent-rule {
    width: 48px;
    height: 3px;
    background: #e05c1a;
    margin: 0 0 32px;
    border-radius: 2px;
}

.accent-rule-center {
    width: 48px;
    height: 3px;
    background: #e05c1a;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    background: #e05c1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: #c44e14;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: #0f2742;
    border: 2px solid #0f2742;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
    background: #0f2742;
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #0f2742 0%, #1a4a7a 60%, #0f2742 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.22;
    margin: 0 0 18px;
}

.hero h1 span {
    color: #f5a623;
}

.hero-sub {
    color: #b8d4ee;
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 34px;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    color: #aad0f0;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 22px 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.process-grid {
    margin-top: 40px;
    row-gap: 20px;
    position: relative;
}

.process-card {
    background: #fff;
    border: 1px solid #dde6f0;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 42px;
    height: 42px;
    background: #f28c2b;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f2742;
    margin: 0 0 8px;
}

.step-desc {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.final-cta {
    background: linear-gradient(135deg, #0a1e33 0%, #1a4a7a 100%);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 14px;
}

.final-cta p {
    color: #b8d4ee;
    font-size: 1.05rem;
    margin: 0 0 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer {
    background: #0a1e33;
    padding: 50px 0 30px;
}

.footer-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.footer-location {
    color: #8aa8c4;
    font-size: 0.9rem;
    margin: 0 0 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: #8aa8c4;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav li a {
    color: #8aa8c4;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav li a:hover {
    color: #fff;
}

.footer-divider {
    border-top: 1px solid #1a3550;
    margin: 28px 0 16px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #4a6a84;
    text-align: center;
}

.img_nice {
    border-radius: 12px;
}

.problem-aside {
    background: #0f2742;
    color: #fff;
    border-radius: 8px;
    padding: 32px 28px;
}

.problem-aside h3 {
    color: #f5a623;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.problem-aside p {
    color: #c5dff5;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media screen and (min-width: 64em) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: #e5e7eb;
        z-index: 0;
    }
}

@media (max-width: 685px) {
    .nav-inner {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-contact {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 550px) {
    .nav-logo img.logo-reg {
        display: none;
    }

    .nav-logo img.logo-stacked {
        display: block;
    }
}

@media (max-width: 470px) {
    .nav-links-inner {
        flex-direction: column;
        align-items: flex-end;
        padding: 4px 0;
    }

    .nav-menu-toggle {
        display: flex;
    }

    .nav-links ul {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        padding-bottom: 6px;
    }

    .nav-links ul.is-open {
        display: flex;
    }

    .nav-links ul li {
        width: 100%;
        text-align: right;
    }

    .nav-links ul li a {
        padding: 9px 0;
    }
}

.section_bg_blue {
    padding: 70px 0;
    background: #112e4d;
}

.section_bg_gray {
    padding: 70px 0;
    background: #dcdcdc;
}

.section_bg_gray .section-sub {
    color: #08141f;
}

.section_bg_gray .portfolio-card-cell {
    margin-bottom: 28px;
    display: flex;
}

.section_bg_gray .portfolio-card-empty {
    height: 200px;
    background: #e8eef5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_bg_gray .portfolio-card-empty span {
    color: #8aa8c4;
    font-size: 0.85rem;
}

.section_bg_gray .portfolio-card-action {
    text-align: center;
}

.section_bg_gray .feature-card {
    border: 1px solid #0f2742;
}

.section_bg_blue .section-title {
    color: #ffffff;
}

.section_bg_blue .section-sub,
.section_bg_blue .why-intro,
.section_bg_blue .why-item p,
.section_bg_blue > div > p,
.section_bg_blue > div > div > p,
.section_bg_blue .section-copy {
    color: #f1f7ff;
}

.section_bg_blue .why-item h4,
.section_bg_blue strong {
    color: #ffffff;
}

.section_bg_blue .qualify-list li,
.section_bg_blue .portfolio-feature-list li {
    color: #dbe8f8;
    border-bottom-color: rgba(255,255,255,0.1);
}

.section_bg_blue .portfolio-feature-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.section_bg_blue .portfolio-feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.section_bg_blue .portfolio-feature-list li:last-child {
    border-bottom: 0;
}

.section_bg_blue .portfolio-feature-list .checkmark {
    position: absolute;
    left: 0;
    color: #e05c1a;
    font-weight: 700;
}

.portfolio-card-cell {
    margin-bottom: 26px;
    display: flex;
}

.project_container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.2s ease;
}

.project_container:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.project_title {
    background: #0f2742;
    color: #ffffff;
    padding: 14px 18px 12px;
    margin-bottom: 0;
}

.project_title h5 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.project_title p {
    margin: 0;
    font-size: 0.83rem;
    color: #cfe0f5;
}

.project_details {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project_details img {
    display: block;
    margin: 0 auto 18px;
    max-width: 100%;
    width: auto;
    max-height: 210px;
    object-fit: contain;
}

.project_details p {
    margin-bottom: 12px;
    line-height: 1.65;
    color: #4a5a6a;
}

.project_details p strong {
    color: #0f2742;
}

.bt_moredetails {
    display: inline-block;
    background: #e05c1a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.bt_moredetails:hover,
.bt_moredetails:focus {
    background: #c44e14;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.bt_moredetails:after {
    display: none;
}
