/* =========================================================
   ROOT
========================================================= */

:root {
    --bg: #07090d;
    --bg-soft: #0b0e13;
    --card: #0e1218;
    --card-hover: #11161e;

    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(255, 255, 255, 0.14);

    --text: #f5f7fa;
    --text-soft: #a4acb8;
    --text-muted: #727b89;

    --blue: #1683ff;
    --blue-light: #4ba1ff;
    --blue-dark: #0067d9;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: var(--blue);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), 90%);
    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 1000;

    background: rgba(7, 9, 13, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo > span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(22, 131, 255, 0.5);
    background: rgba(22, 131, 255, 0.08);

    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo strong {
    font-size: 14px;
    font-weight: 700;
}

.logo small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;

    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;

    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:not(.nav-hire)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--blue);

    transition: width 0.25s ease;
}

.nav-links a:not(.nav-hire):hover::after {
    width: 100%;
}

.nav-hire {
    padding: 10px 17px;

    border: 1px solid rgba(22, 131, 255, 0.45);
    background: rgba(22, 131, 255, 0.08);

    color: var(--blue-light) !important;

    transition: all 0.25s ease;
}

.nav-hire:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white !important;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: var(--card);

    color: white;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    padding: 150px 0 100px;

    display: flex;
    align-items: center;

    position: relative;
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: 50px;
    right: -250px;

    background: rgba(22, 131, 255, 0.08);
    filter: blur(130px);

    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 11px;

    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;

    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #32d583;

    box-shadow: 0 0 12px rgba(50, 213, 131, 0.6);
}

.hero h1 {
    max-width: 750px;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 800;
}

.hero h1 span,
.section-heading h2 span,
.about-heading h2 span,
.cta-content h2 span {
    color: var(--blue-light);
}

.hero-description {
    max-width: 640px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 35px;
}

.btn {
    min-height: 50px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--blue);
    border: 1px solid var(--blue);

    color: white;

    box-shadow: 0 10px 30px rgba(22, 131, 255, 0.18);
}

.btn-primary:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
    box-shadow: 0 14px 40px rgba(22, 131, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);

    color: var(--text);
}

.btn-outline:hover {
    border-color: rgba(22, 131, 255, 0.55);
    background: rgba(22, 131, 255, 0.06);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--text-muted);
    font-size: 11px;
}

.trust-item i {
    color: var(--blue-light);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-window {
    width: 100%;
    max-width: 570px;

    background: #0a0d12;

    border: 1px solid var(--border-light);

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(22, 131, 255, 0.07);

    transform: perspective(1000px) rotateY(-5deg);
}

.browser-top {
    height: 45px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 0 15px;

    border-bottom: 1px solid var(--border);
    background: #0d1117;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #363c45;
}

.browser-address {
    flex: 1;

    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #080a0e;
    border: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 9px;
}

.browser-content {
    min-height: 400px;
    padding: 25px;
}

.mock-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-logo {
    width: 70px;
    height: 12px;

    background: #dce2e9;
    opacity: 0.8;
}

.mock-links {
    display: flex;
    gap: 15px;
}

.mock-links span {
    width: 30px;
    height: 5px;
    background: #303641;
}

.mock-button {
    width: 55px;
    height: 19px;

    background: rgba(22, 131, 255, 0.8);
}

.mock-hero {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 35px;

    align-items: center;

    margin-top: 80px;
}

.mock-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-line {
    width: 100%;
    height: 7px;

    background: #252c36;
}

.mock-line.medium {
    width: 72%;
}

.mock-line.large {
    height: 16px;
    background: #d8dde4;
}

.mock-line.large.short {
    width: 75%;
}

.mock-cta {
    width: 80px;
    height: 25px;

    margin-top: 12px;

    background: var(--blue);
}

.mock-card {
    min-height: 190px;

    padding: 20px;

    border: 1px solid rgba(22, 131, 255, 0.25);
    background:
        linear-gradient(
            145deg,
            rgba(22, 131, 255, 0.12),
            rgba(22, 131, 255, 0.02)
        );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mock-card-circle {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    border: 1px solid rgba(75, 161, 255, 0.5);

    box-shadow:
        0 0 30px rgba(22, 131, 255, 0.2);
}

.mock-card-line {
    width: 65%;
    height: 7px;
    background: #303844;
}

.mock-card-line.small {
    width: 45%;
}

.mock-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin-top: 55px;
}

.mock-bottom span {
    height: 50px;

    border: 1px solid var(--border);
    background: #0d1117;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    background: rgba(14, 18, 24, 0.92);
    border: 1px solid var(--border-light);

    box-shadow: var(--shadow);

    backdrop-filter: blur(15px);
}

.floating-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    background: rgba(22, 131, 255, 0.1);
    color: var(--blue-light);

    font-size: 12px;
}

.floating-card div:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 10px;
}

.floating-card small {
    color: var(--text-muted);
    font-size: 8px;
    margin-top: 2px;
}

.speed-card {
    top: 80px;
    left: -25px;
}

.conversion-card {
    bottom: 75px;
    right: -20px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 60px;
}

.section-label {
    display: block;

    margin-bottom: 15px;

    color: var(--blue-light);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2,
.about-heading h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.section-heading p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   WHY WEBSITE
========================================================= */

.why-section {
    border-top: 1px solid var(--border);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.value-card {
    position: relative;

    min-height: 320px;

    padding: 30px;

    border: 1px solid var(--border);
    background: var(--card);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.value-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--blue);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 131, 255, 0.35);
    background: var(--card-hover);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: #252b34;

    font-size: 13px;
    font-weight: 800;
}

.value-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 55px;

    background: rgba(22, 131, 255, 0.08);
    border: 1px solid rgba(22, 131, 255, 0.2);

    color: var(--blue-light);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    padding: 30px;

    border: 1px solid var(--border);
    background: var(--card);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(22, 131, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 35px rgba(22, 131, 255, 0.05);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 35px;
}

.service-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: rgba(22, 131, 255, 0.08);
    border: 1px solid rgba(22, 131, 255, 0.2);

    color: var(--blue-light);
}

.service-number {
    color: #353c47;

    font-size: 11px;
    font-weight: 800;
}

.service-card h3 {
    min-height: 48px;

    font-size: 18px;
    line-height: 1.3;
}

.service-card > p {
    min-height: 80px;

    margin-top: 12px;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;

    margin: 25px 0;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--text-soft);

    font-size: 11px;
}

.service-card li i {
    color: var(--blue-light);
    font-size: 9px;
}

.service-btn {
    margin-top: auto;

    width: 100%;

    padding: 13px 15px;

    border: 1px solid var(--border-light);
    background: transparent;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    transition: all 0.25s ease;
}

.service-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.service-btn i {
    transition: transform 0.25s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.about-heading {
    position: sticky;
    top: 130px;
    align-self: start;
}

.about-content {
    max-width: 700px;
}

.about-content p {
    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.9;

    margin-bottom: 20px;
}

.about-content .about-lead {
    color: var(--text-soft);

    font-size: 20px;
    line-height: 1.7;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    margin-top: 40px;
}

.about-points div {
    padding: 17px;

    border: 1px solid var(--border);
    background: var(--card);

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--text-soft);

    font-size: 12px;
}

.about-points i {
    color: var(--blue-light);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.process-step {
    position: relative;

    padding: 30px;

    border: 1px solid var(--border);
    background: var(--card);
}

.process-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: #303741;

    font-size: 12px;
    font-weight: 800;
}

.process-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 55px;

    background: rgba(22, 131, 255, 0.08);
    border: 1px solid rgba(22, 131, 255, 0.2);

    color: var(--blue-light);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 110px 0;
}

.cta-box {
    position: relative;

    padding: 80px 70px;

    border: 1px solid rgba(22, 131, 255, 0.2);

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(22, 131, 255, 0.12),
            transparent 35%
        ),
        #0a0e14;

    overflow: hidden;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -180px;

    background: rgba(22, 131, 255, 0.08);
    filter: blur(70px);
}

.cta-content {
    position: relative;
    z-index: 1;

    max-width: 780px;
}

.cta-content h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
}

.cta-content p {
    max-width: 620px;

    margin: 25px 0 30px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.8;
}

.cta-button {
    width: fit-content;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top: 1px solid var(--border);

    background: #05070a;
}

.footer-container {
    min-height: 160px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand p {
    margin-top: 12px;

    color: var(--text-muted);

    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;

    border: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 11px;

    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: white;
    border-color: rgba(22, 131, 255, 0.35);
    background: rgba(22, 131, 255, 0.05);
}

.footer-links i {
    color: var(--blue-light);
}

.footer-bottom {
    min-height: 65px;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #555e6b;

    font-size: 10px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-visual {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .value-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-heading {
        position: static;
    }

    .hero h1 {
        font-size: clamp(48px, 8vw, 72px);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar {
        height: 72px;
    }

    .nav-links {
        position: absolute;

        top: 72px;
        left: 5%;
        right: 5%;

        padding: 20px;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: rgba(10, 13, 18, 0.97);
        border: 1px solid var(--border);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        padding: 14px 5px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-hire {
        margin-top: 8px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }


    .hero {
        padding: 125px 0 70px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .browser-window {
        transform: none;
    }

    .browser-content {
        min-height: 300px;
        padding: 18px;
    }

    .mock-links {
        display: none;
    }

    .mock-hero {
        margin-top: 55px;
        grid-template-columns: 1fr;
    }

    .mock-card {
        display: none;
    }

    .mock-bottom {
        margin-top: 40px;
    }

    .floating-card {
        padding: 9px 11px;
    }

    .speed-card {
        top: 25px;
        left: -5px;
    }

    .conversion-card {
        bottom: 25px;
        right: -5px;
    }


    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-heading h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .value-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .service-card > p,
    .service-card h3 {
        min-height: auto;
    }


    .about-points {
        grid-template-columns: 1fr;
    }


    .cta-section {
        padding: 70px 0;
    }

    .cta-box {
        padding: 50px 25px;
    }

    .cta-content h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }


    .footer-container {
        padding: 35px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links a {
        flex: 1;
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .logo strong {
        font-size: 13px;
    }

    .logo small {
        font-size: 9px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .browser-content {
        min-height: 250px;
    }

    .floating-card {
        transform: scale(0.9);
    }

    .section-heading h2,
    .about-heading h2 {
        font-size: 34px;
    }

    .cta-content h2 {
        font-size: 35px;
    }
}