:root {
    --ink: #17202a;
    --muted: #5d6978;
    --line: #d9e0e8;
    --paper: #f6f8fb;
    --white: #ffffff;
    --blue: #145ca8;
    --blue-deep: #0d3766;
    --green: #12806a;
    --gold: #c98a18;
    --shadow: 0 18px 50px rgba(15, 32, 54, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    background: var(--paper);
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(217, 224, 232, .86);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0;
}

.brand-mark {
    width: 118px;
    height: 52px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 600;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: wait;
    opacity: .68;
    transform: none;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 12px 28px rgba(20, 92, 168, .24);
}

.button-primary:hover {
    background: #0f4f92;
}

.button-secondary {
    color: var(--blue-deep);
    background: var(--white);
    border-color: rgba(13, 55, 102, .18);
}

.button-secondary:hover {
    box-shadow: 0 10px 24px rgba(15, 32, 54, .1);
}

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(9, 26, 47, .92) 0%, rgba(9, 26, 47, .76) 46%, rgba(9, 26, 47, .32) 100%),
        url('https://images.unsplash.com/photo-1556905055-8f358a7a47b2?auto=format&fit=crop&w=1800&q=82') center / cover;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(246, 248, 251, 0), var(--paper));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    padding: 96px 0 150px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #d7eef6;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--gold);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    max-width: 700px;
    font-size: clamp(2.55rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.notice {
    width: min(620px, 100%);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.notice strong {
    color: var(--white);
}

.section {
    padding: 86px 0;
}

.intro-band {
    position: relative;
    z-index: 2;
    margin-top: -82px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
    align-items: stretch;
}

.panel {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.panel h2 {
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.12;
}

.panel p {
    color: var(--muted);
}

.order-panel {
    color: var(--white);
    background: var(--blue-deep);
    border-color: rgba(255, 255, 255, .08);
}

.order-panel p {
    color: rgba(255, 255, 255, .82);
}

.email-link {
    display: inline-flex;
    margin-top: 6px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

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

.section-heading h2 {
    max-width: 650px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-heading p {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--muted);
}

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

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(15, 32, 54, .08);
}

.service-card img {
    width: 100%;
    height: 236px;
    display: block;
    object-fit: cover;
    background: #e7edf4;
}

.service-card-content {
    padding: 24px;
}

.service-card h3 {
    margin-bottom: 9px;
    font-size: 1.22rem;
}

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

.process {
    background: var(--white);
    border-block: 1px solid var(--line);
}

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

.step {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfe;
}

.step-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 800;
}

.step h3 {
    margin-bottom: 8px;
}

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

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

.pill {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--blue-deep);
    background: var(--white);
    font-size: .92rem;
    font-weight: 700;
}

.quote-section {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.quote-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 34px;
    align-items: start;
}

.quote-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
}

.quote-copy p {
    color: var(--muted);
}

.quote-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

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

.quote-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .45em;
    width: 12px;
    height: 12px;
    border: 3px solid var(--green);
    border-radius: 50%;
}

.quote-form {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfe;
    box-shadow: 0 14px 38px rgba(15, 32, 54, .08);
}

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

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

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

.field label {
    font-size: .9rem;
    font-weight: 800;
    color: var(--blue-deep);
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: 3px solid rgba(20, 92, 168, .16);
    border-color: var(--blue);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.status-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
}

.status-success {
    color: #0f5132;
    background: #dff4e8;
    border: 1px solid #bce7cf;
}

.status-error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

.status-message ul {
    margin: 8px 0 0;
    padding-left: 20px;
    font-weight: 600;
}

.cta {
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(13, 55, 102, .96), rgba(18, 128, 106, .88)),
        url('https://images.unsplash.com/photo-1605902711622-cfb43c4437d5?auto=format&fit=crop&w=1600&q=80') center / cover;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.cta h2 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 4vw, 3.15rem);
    line-height: 1.08;
}

.cta p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .84);
}

.site-footer {
    padding: 28px 0;
    color: #718091;
    background: #0c1724;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .92rem;
}

.footer-inner a {
    color: #c7d3df;
}

.dialog-open {
    overflow: hidden;
}

.quote-dialog {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 23, 36, .68);
    backdrop-filter: blur(8px);
}

.quote-dialog.is-open {
    display: flex;
}

.quote-dialog__panel {
    position: relative;
    width: min(460px, 100%);
    padding: 34px;
    border: 1px solid rgba(217, 224, 232, .9);
    border-radius: 8px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.quote-dialog__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: var(--muted);
    background: #eef2f7;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.quote-dialog__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eef7f4;
}

.quote-dialog--success .quote-dialog__icon::before,
.quote-dialog--error .quote-dialog__icon::before {
    font-size: 2rem;
    font-weight: 800;
}

.quote-dialog--success .quote-dialog__icon::before {
    content: '✓';
    color: var(--green);
}

.quote-dialog--error .quote-dialog__icon {
    background: #f8d7da;
}

.quote-dialog--error .quote-dialog__icon::before {
    content: '!';
    color: #842029;
}

.quote-dialog h2 {
    margin-bottom: 10px;
    font-size: 1.75rem;
    line-height: 1.12;
}

.quote-dialog p {
    margin-bottom: 0;
    color: var(--muted);
}

.quote-dialog ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
    text-align: left;
}

.quote-dialog__button {
    margin-top: 24px;
}

.quote-spinner {
    width: 30px;
    height: 30px;
    border: 4px solid rgba(20, 92, 168, .18);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: quote-spin .8s linear infinite;
}

@keyframes quote-spin {
    to {
        transform: rotate(360deg);
    }
}

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

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero {
        min-height: 720px;
        background-position: 62% center;
    }

    .info-grid,
    .service-grid,
    .steps,
    .quote-layout,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav-links a:not(.button) {
        display: none;
    }

    .nav-links .button {
        width: 100%;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding: 72px 0 135px;
    }

    .hero-actions .button,
    .cta .button {
        width: 100%;
    }

    .panel,
    .step,
    .quote-form {
        padding: 22px;
    }

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

    .section {
        padding: 66px 0;
    }

    .intro-band {
        margin-top: -68px;
    }

    .quote-dialog__panel {
        padding: 28px 22px;
    }
}
