* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, Poppins, Arial, sans-serif;
    background: #0D1117;
    color: #f5f7fa;
    line-height: 1.65
}

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

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 17, 23, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 191, 255, .14)
}

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

.logo {
    font-size: 24px;
    font-weight: 800
}

.logo span,
.accent {
    color: #00BFFF
}

.nav-links {
    display: flex;
    gap: 22px;
    color: #b9c4cf;
    font-size: 14px
}

.nav-links a:hover {
    color: #00BFFF
}

.hero {
    padding: 105px 0 85px;
    text-align: center;
    background: radial-gradient(circle at 50% 10%, rgba(0, 191, 255, .16), transparent 44%)
}

.badge {
    display: inline-block;
    border: 1px solid rgba(0, 191, 255, .35);
    color: #00BFFF;
    padding: 7px 15px;
    border-radius: 99px;
    font-size: 13px;
    margin-bottom: 20px
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.03;
    max-width: 980px;
    margin: 0 auto 22px;
    letter-spacing: -2px
}

.hero p {
    max-width: 780px;
    margin: auto;
    color: #aeb9c6;
    font-size: 18px
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 26px;
    border-radius: 8px;
    background: #00BFFF;
    color: #071018;
    font-weight: 800
}

.btn.alt {
    background: transparent;
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, .4);
    margin-left: 10px
}

.section {
    padding: 82px 0
}

.dark-section {
    background: #10161e
}

.section-title {
    text-align: center;
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px
}

.section-sub {
    text-align: center;
    color: #9eabb8;
    max-width: 750px;
    margin: 0 auto 44px
}

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

.card {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .025);
    transition: .25s
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 255, .35)
}

.card h3 {
    margin-bottom: 9px
}

.card p {
    color: #aab5c1
}

.number {
    font-size: 13px;
    color: #00BFFF;
    font-weight: 800;
    margin-bottom: 10px
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.image-grid {
    grid-template-columns: repeat(2, 1fr)
}

.image-space {
    min-height: 260px;
    border: 1px dashed rgba(0, 191, 255, .38);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #70808f;
    background: rgba(0, 191, 255, .025)
}

.image-space span {
    color: #00BFFF
}

.process .card {
    text-align: center
}

.process .number {
    font-size: 28px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.stat {
    text-align: center;
    padding: 25px;
    border: 1px solid rgba(0, 191, 255, .14);
    border-radius: 14px
}

.stat strong {
    display: block;
    font-size: 30px;
    color: #00BFFF
}

.stat span {
    color: #9eabb8;
    font-size: 14px
}

.faq {
    max-width: 850px;
    margin: auto
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #26313d
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 7px
}

.faq-item p {
    color: #9eabb8
}

.form-wrap {
    max-width: 760px;
    margin: auto;
    padding: 32px;
    border: 1px solid rgba(0, 191, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #293541;
    border-radius: 8px;
    background: #111820;
    color: #fff;
    outline: none
}

input:focus,
textarea:focus,
select:focus {
    border-color: #00BFFF
}

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

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

button {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 8px;
    background: #00BFFF;
    color: #071018;
    font-weight: 800;
    cursor: pointer
}

footer {
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #81909e;
    text-align: center
}

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

    .two-col {
        grid-template-columns: 1fr
    }

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

    .nav-links {
        display: none
    }
}

@media(max-width:560px) {

    .grid,
    .image-grid,
    .form-grid,
    .stats {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 70px 0 60px
    }

    .section {
        padding: 60px 0
    }

    .btn.alt {
        margin-left: 0
    }

    .hero h1 {
        letter-spacing: -1px
    }
}

.service-hub {
    background: linear-gradient(180deg, #0D1117, #101821)
}

.service-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px
}

.service-hub-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
    transition: .25s
}

.service-hub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 191, 255, .4);
    background: rgba(0, 191, 255, .04)
}

.service-icon {
    min-width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 191, 255, .4);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #00BFFF;
    font-weight: 800
}

.service-hub-card h3 {
    margin-bottom: 5px;
    color: #fff
}

.service-hub-card p {
    color: #9eabb8;
    font-size: 14px;
    margin-bottom: 7px
}

.service-hub-card span {
    color: #00BFFF;
    font-size: 13px;
    font-weight: 700
}

.hub-cta {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid rgba(0, 191, 255, .18);
    border-radius: 15px;
    text-align: center;
    background: rgba(0, 191, 255, .035)
}

.hub-cta p {
    color: #b8c3ce
}

@media(max-width:700px) {
    .service-hub-grid {
        grid-template-columns: 1fr
    }
}