:root {
    --gyq-blue: #004d99;
    --gyq-blue-dark: #013765;
    --gyq-yellow: #ffdd00;
    --gyq-green: #1b8f5a;
    --gyq-text: #27313d;
    --gyq-muted: #637083;
    --gyq-line: #dfe8f2;
    --gyq-soft: #f6f9fc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--gyq-text);
    background: #fff;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(0, 77, 153, 0.96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.nav-wrap,
.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.logo-link img {
    width: 142px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.site-nav a {
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--gyq-yellow);
}

.header-phone {
    background: var(--gyq-yellow);
    color: var(--gyq-blue-dark);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.hero {
    min-height: 520px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 42, 78, 0.88), rgba(0, 77, 153, 0.45)),
        var(--hero-image) center/cover;
    color: #fff;
}

.hero-content {
    width: min(760px, 100%);
    padding: 88px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--gyq-yellow);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
}

.hero p {
    margin: 0 0 26px;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 680px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gyq-yellow);
    color: var(--gyq-blue-dark);
}

.btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
}

.btn-outline {
    color: var(--gyq-blue);
    border-color: var(--gyq-blue);
}

.section {
    padding: 76px 0;
}

.section-soft {
    background: var(--gyq-soft);
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-title h2 {
    margin: 0 0 12px;
    color: var(--gyq-blue);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-title p {
    margin: 0;
    color: var(--gyq-muted);
    line-height: 1.65;
    font-size: 1.05rem;
}

.grid {
    display: grid;
    gap: 22px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.panel,
.service-card,
.value-card,
.metric-card,
.step-card {
    background: #fff;
    border: 1px solid var(--gyq-line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.panel {
    padding: 28px;
}

.panel h3,
.service-card h3,
.value-card h3,
.metric-card strong,
.step-card strong {
    color: var(--gyq-blue);
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}

.split img,
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split img {
    min-height: 360px;
    border-radius: 8px;
}

.service-card img {
    height: 230px;
}

.service-card .body,
.value-card,
.metric-card,
.step-card {
    padding: 24px;
}

.service-card p,
.value-card p,
.metric-card p,
.step-card p,
.panel p,
.check-list li {
    color: var(--gyq-muted);
    line-height: 1.6;
}

.icon {
    color: var(--gyq-green);
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.check-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gyq-green);
    font-weight: 800;
}

.cta-band {
    background: var(--gyq-blue);
    color: #fff;
    border-radius: 8px;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.cta-band h2 {
    margin: 0 0 8px;
}

.cta-band p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer {
    background: var(--gyq-blue-dark);
    color: #fff;
    padding: 34px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-links a {
    text-decoration: none;
}

.site-footer p {
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
    .nav-wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .split {
        grid-template-columns: 1fr;
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .nav-wrap,
    .container {
        width: min(100% - 24px, 1180px);
    }

    .site-nav {
        font-size: 0.88rem;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 62px 0;
    }

    .section {
        padding: 54px 0;
    }

    .panel,
    .cta-band {
        padding: 22px;
    }
}
