@font-face {
    font-family: "TrebuchetCustom";
    src: url("../fonts/trebuc.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "TrebuchetCustom";
    src: url("../fonts/trebucbd.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg: #081224;
    --bg-2: #101d35;
    --card: #132440;
    --text: #ecf3ff;
    --muted: #adc1e0;
    --accent: #2ec4ff;
    --accent-2: #00a2d6;
    --line: #2b446f;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "TrebuchetCustom", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.flash-wrap {
    padding-top: 14px;
}

.flash {
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
    font-weight: 700;
}

.flash-success {
    background: #134a36;
    border: 1px solid #28b27f;
    color: #d5ffef;
}

.flash-error {
    background: #4a1f1f;
    border: 1px solid #d66b6b;
    color: #ffd6d6;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #323a47;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.04), transparent 55%),
        radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.03), transparent 60%),
        #1c1f24;
}

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

.brand img {
    height: 44px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    opacity: 0.9;
}

.main-nav a:hover {
    color: var(--accent);
}

.hero {
    background: radial-gradient(circle at top right, #1a3763 0%, var(--bg) 55%);
    border-bottom: 1px solid var(--line);
    padding: 72px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: center;
}

.eyebrow {
    color: #ffae54;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin: 0 0 14px;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 14px;
}

.lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 65ch;
}

.hero-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.hero-panel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.hero-panel h2 {
    margin-top: 0;
}

.hero-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

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

.btn {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #ffae54;
    color: #032132;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-secondary {
    border-color: #ffae54;
    color: #ffae54;
}

.section {
    padding: 62px 0;
}

.section h2 {
    margin-top: 0;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.section-intro {
    margin-top: -4px;
    margin-bottom: 26px;
    color: var(--muted);
}

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
}

.card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #2f4f7a;
    margin-bottom: 14px;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

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

.section-dark {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.showcase-item {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #132a49;
}

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

.showcase-item figcaption {
    padding: 12px 14px;
    color: var(--muted);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.flow-step {
    background: #10233f;
    border: 1px solid #2d4a75;
    border-radius: 12px;
    padding: 18px;
}

.flow-step span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #032132;
    margin-bottom: 10px;
}

.flow-step h3 {
    margin: 0 0 8px;
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checklist {
    color: var(--muted);
    margin: 0;
    padding-left: 18px;
}

.quote-box {
    border: 1px solid var(--line);
    background: #162e52;
    border-radius: 12px;
    padding: 22px;
}

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

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

.industries span {
    border: 1px solid #365789;
    padding: 8px 12px;
    border-radius: 999px;
    background: #122646;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.sales-email {
    color: #ffae54;
    font-weight: 700;
}

.sales-email:hover {
    color: #ffae54;
}

.contact-note {
    color: var(--muted);
    margin-top: 16px;
}

input,
select,
textarea {
    background: #0b1a31;
    color: var(--text);
    border: 1px solid #3a5f93;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    margin-top: 0;
    color: #c4cedd;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.04), transparent 55%),
        radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.03), transparent 60%),
        #1c1f24;
    border-top: 1px solid #323a47;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr;
    gap: 30px;
    padding: 42px 0 28px;
}

.footer-brand img {
    height: 42px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    margin: 0;
    max-width: 42ch;
    color: #c4cedd;
    line-height: 1.5;
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: #ffae54;
}

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

.footer-links li {
    color: #d8e1ee;
    font-size: 0.95rem;
}

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

.footer-links a:hover {
    color: #ffae54;
}

.footer-bottom {
    border-top: 1px solid #323a47;
    padding: 14px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #b8c2d0;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
}

@media (max-width: 940px) {
    .hero-grid,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

@media (max-width: 620px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .nav-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
    }

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

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