@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
}


:root {
    --bg: #080a0d;
    --panel: #11151b;
    --line: #26303a;
    --text: #f5f7fa;
    --muted: #9ba5b0;
    --a: #58b9ff;
    --max: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 14px/1.6 Inter, Arial, sans-serif;
}


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


/* =========================
   Navigation
   ========================= */

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: var(--max);
    margin: auto;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #080a0de8;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #ffffff0b;
}


.brand {
    font: 700 22px 'Space Grotesk';
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: center;
}


.brand span {
    color: var(--a);
}


.brand-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--a);
    margin-right: 9px;
    box-shadow: 0 0 16px var(--a);
}


nav {
    display: flex;
    gap: 30px;
    color: #c3ccd5;
    font-size: 13px;
}


nav a:hover,
.nav-cta:hover {
    color: var(--a);
}


.nav-cta {
    border: 1px solid #40505e;
    border-radius: 11px;
    padding: 9px 14px;
    font-weight: 700;
    font-size: 12px;
}


/* =========================
   Solutions
   ========================= */

.solutions {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: var(--max);
    margin: auto;
    padding: 80px 24px;
}


.solutions:before {
    content: '';
    position: absolute;
    inset: 0 0 0 35%;
    background:
        linear-gradient(
            90deg,
            var(--bg) 0%,
            #080a0de8 23%,
            #080a0d33 68%,
            #080a0d00 100%
        ),
        url('gh-pc-solutions.png') center / cover no-repeat;
}


.solutions-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}


.eyebrow {
    color: var(--a);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 17px;
}


.solutions h1,
h1,
h2,
h3 {
    font-family: 'Space Grotesk';
    line-height: 0.98;
    letter-spacing: -0.05em;
}


.solutions h1 {
    font-size: clamp(56px, 7vw, 88px);
    margin: 0;
}


.solutions em,
h1 em,
h2 em {
    font-style: normal;
    color: #8995a2;
}


.lead {
    color: #b6c0ca;
    font-size: 17px;
    max-width: 650px;
    margin: 26px 0;
}


/* =========================
   Buttons
   ========================= */

.solutions-actions,
.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    padding: 13px 18px;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid #40505e;
}


.primary {
    background: var(--a);
    border-color: var(--a);
    color: #061019;
}


.ghost {
    background: #080a0d99;
    color: #fff;
}


.ghost:hover {
    border-color: var(--a);
    color: var(--a);
}


.trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 27px;
    color: #87929e;
    font-size: 11px;
}


/* =========================
   Stats
   ========================= */

.stats {
    max-width: var(--max);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.stats div {
    padding: 21px 18px;
    border-right: 1px solid var(--line);
}


.stats div:last-child {
    border-right: 0;
}


.stats b {
    display: block;
    color: var(--a);
    font: 700 22px 'Space Grotesk';
}


.stats span {
    display: block;
    font-weight: 700;
}


.stats small {
    color: #687480;
    font-size: 10px;
}


/* =========================
   Sections
   ========================= */

.section {
    max-width: var(--max);
    margin: auto;
    padding: 110px 24px;
}


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


.section h2 {
    font-size: clamp(42px, 5vw, 62px);
    margin: 0;
}


.section-head > p {
    max-width: 390px;
    color: var(--muted);
}


/* =========================
   Cards
   ========================= */

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


.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 27px;
    min-height: 400px;
    transition: 0.2s;
}


.card:hover {
    border-color: #40505e;
    transform: translateY(-3px);
}

.icon {

    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;
    color: var(--a);

    margin-bottom: 28px;
}


.card h3 {
    font-size: 21px;
    margin: 0 0 9px;
}


.card p {
    color: #919ca8;
    font-size: 13px;
}


.card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #cbd2d9;
    font-size: 11px;
}


.card li {
    margin: 6px 0;
}


.card li:before {
    content: '✓';
    color: var(--a);
    margin-right: 8px;
}


/* =========================
   Dark Sections
   ========================= */

.dark {
    max-width: none;
    background: #0d1116;
    border-block: 1px solid var(--line);
}


.dark > * {
    max-width: var(--max);
}


/* =========================
   Steps
   ========================= */

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


.step {
    padding: 25px 18px 10px 0;
    border-top: 1px solid #2b3640;
    margin-right: 18px;
}


.step b {
    color: var(--a);
    font-family: monospace;
}


.step h3 {
    font-size: 19px;
    margin: 19px 0 7px;
}


.step p {
    color: #838f9b;
    font-size: 12px;
}


/* =========================
   About
   ========================= */

.aboutbox {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 55px;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 50px;
    align-items: center;
}


.avatar {
    width: 185px;
    height: 245px;
    border-radius: 0px;
    display: grid;
    place-items: center;
    background: #101a22;
    border: 3px solid #29485e;
    color: var(--a);
    font: 700 40px 'Space Grotesk';
}


.aboutbox p {
    color: #a5afb9;
    max-width: 720px;
}


.small {
    font-size: 11px;
    color: #687480 !important;
}


/* =========================
   Contact
   ========================= */

.contactbox {
    background: linear-gradient(135deg, #17364d, #0e1b26);
    border: 1px solid #29485e;
    border-radius: 22px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}


.contactbox h2 {
    font-size: 54px;
    margin: 0;
}


.contactbox p {
    color: #b5c0cb;
    max-width: 560px;
}


.contact-note {
    width: 100%;
    font-size: 11px;
    color: #7f96a8;
}


/* =========================
   Footer
   ========================= */

footer {
    max-width: var(--max);
    margin: auto;
    border-top: 1px solid var(--line);
    padding: 32px 24px 45px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #687480;
    font-size: 11px;
}


.footer-brand {
    font: 700 18px 'Space Grotesk';
    color: #fff;
}


.footer-brand span {
    color: var(--a);
}


.footer-links {
    margin-left: auto;
    display: flex;
    gap: 18px;
}


/* =========================
   Form
   ========================= */

.formwrap,
.legal {
    max-width: 850px;
    margin: auto;
    padding: 80px 24px 120px;
}


.formwrap h1,
.legal h1 {
    font-size: clamp(48px, 6vw, 70px);
    margin: 0 0 30px;
}


.intro {
    color: var(--muted);
    margin-bottom: 38px;
}


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


label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #d7dee5;
}


label span {
    color: #687480;
    font-weight: 400;
}


input,
textarea {
    width: 100%;
    margin-top: 8px;
    padding: 13px;
    border: 1px solid #303b46;
    border-radius: 10px;
    background: #11151b;
    color: #fff;
    font: 13px Inter;
    outline: 0;
}


textarea {
    min-height: 130px;
    resize: vertical;
}


input:focus,
textarea:focus {
    border-color: var(--a);
}


.upload {
    padding: 18px;
    border: 1px dashed #3a4854;
    border-radius: 12px;
}


.upload small {
    display: block;
    color: #697580;
    font-weight: 400;
    margin-top: 7px;
}


.check {
    display: flex;
    gap: 9px;
    font-weight: 400;
}


.check input {
    width: auto;
    margin-top: 3px;
}


.check a {
    color: var(--a);
    text-decoration: underline;
}


.submit {
    width: 100%;
    justify-content: center;
    cursor: pointer;
}


.hint {
    font-size: 10px;
    color: #687480;
    text-align: center;
}


/* =========================
   Legal
   ========================= */

.legal h2 {
    font-size: 25px;
    margin: 42px 0 10px;
}


.legal p {
    color: #aab3bd;
    font-size: 14px;
}


.legal a {
    color: var(--a);
}


/* =========================
   Responsive – Tablet
   ========================= */

@media (max-width: 900px) {

    nav {
        display: none;
    }


    .solutions:before {
        inset: 0 0 0 15%;
        opacity: 0.7;
    }


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


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


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


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


/* =========================
   Responsive – Mobile
   ========================= */

@media (max-width: 600px) {

    .solutions {
        padding: 65px 18px;
        min-height: 620px;
    }


    .solutions:before {
        inset: 0;
        opacity: 0.42;
    }


    .section {
        padding: 80px 18px;
    }


    .stats {
        grid-template-columns: 1fr 1fr;
        margin: 0 18px;
    }


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


    .grid,
    .steps,
    .formgrid {
        grid-template-columns: 1fr;
    }


    .section-head {
        display: block;
    }


    .aboutbox {
        grid-template-columns: 1fr;
        padding: 35px;
    }


    .contactbox {
        padding: 35px 28px;
    }


    .contactbox h2 {
        font-size: 42px;
    }


    .footer-links {
        margin-left: 0;
    }


    .formwrap,
    .legal {
        padding: 65px 18px 90px;
    }
}