/* =========================================================
   SERVANA — PREMIUM WEBSITE
   Foundation / Hero
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #07090d;
    color: #f5f7fa;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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


/* =========================
   HEADER
   ========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #b7c4ff 45%,
            #7d8cff 100%
        );

    color: #080a0e;
    font-size: 18px;
    font-weight: 900;

    box-shadow:
        0 8px 30px rgba(126, 143, 255, 0.25);
}

.brand-name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    color: #aeb4c0;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.nav-cta {
    padding: 11px 20px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.05);

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.nav-cta:hover {
    background: #ffffff;
    color: #080a0e;
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 40%,
            rgba(88, 104, 255, 0.11),
            transparent 31%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(64, 131, 255, 0.07),
            transparent 32%
        ),
        #07090d;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 75%,
            transparent
        );
}

.hero-grid {
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 75px;
}


/* =========================
   HERO TEXT
   ========================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: #9aa9ff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.eyebrow::before {
    content: "";

    width: 25px;
    height: 1px;

    background: #8998ff;
}

.hero h1 {
    max-width: 720px;

    font-size: clamp(54px, 5.3vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.hero h1 span {
    display: block;

    margin-top: 9px;

    color: #858b97;

    font-weight: 500;
}

.hero-text {
    max-width: 600px;

    margin-top: 29px;

    color: #9ea5b1;

    font-size: 18px;
    line-height: 1.75;
}


/* =========================
   BUTTONS
   ========================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 26px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #f4f5f7;
    color: #090b0f;

    box-shadow:
        0 15px 40px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    background: #ffffff;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.035);
    color: #d4d7dd;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}


/* =========================
   TRUST LABELS
   ========================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;

    margin-top: 37px;

    color: #737b87;

    font-size: 12px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-trust span::before {
    content: "✓";

    color: #9ca8ff;

    font-size: 11px;
}


/* =========================
   WEBSITE SHOWCASE
   ========================= */

.hero-showcase {
    position: relative;
    perspective: 1200px;
}

.showcase-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    background: #101319;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(80, 98, 255, 0.08);

    transform:
        rotateY(-4deg)
        rotateX(2deg);
}


/* Browser chrome */

.browser-bar {
    height: 48px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    background: #12151b;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4a4f59;
}

.browser-url {
    position: absolute;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 30px;

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);

    color: #686f7a;

    font-size: 9px;
}


/* Fake premium client website */

.mock-site {
    min-height: 440px;

    padding: 28px 34px 40px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(109, 120, 255, 0.22),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            #10141b,
            #0a0d12
        );
}

.mock-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-logo {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.mock-links {
    display: flex;
    gap: 18px;

    color: #79808a;

    font-size: 8px;
}

.mock-content {
    padding-top: 85px;
}

.mock-label {
    margin-bottom: 17px;

    color: #8c9aff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mock-content h2 {
    max-width: 430px;

    font-size: clamp(34px, 3.2vw, 49px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.mock-content p {
    max-width: 370px;

    margin-top: 18px;

    color: #838b97;

    font-size: 12px;
    line-height: 1.7;
}

.mock-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 26px;
    padding: 12px 20px;

    border-radius: 100px;

    background: #f3f4f6;
    color: #0b0d11;

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;
}


/* =========================
   FLOATING CARDS
   ========================= */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 185px;

    padding: 13px 16px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    background: rgba(17, 20, 27, 0.88);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38);
}

.floating-card strong {
    display: block;

    font-size: 11px;
    font-weight: 750;
}

.floating-card small {
    display: block;

    margin-top: 2px;

    color: #727a86;

    font-size: 9px;
}

.floating-card-one {
    right: -38px;
    top: 82px;
}

.floating-card-two {
    left: -45px;
    bottom: 48px;
}

.floating-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background:
        rgba(120, 137, 255, 0.12);

    color: #9da8ff;

    font-size: 15px;
}

.status-dot {
    width: 9px;
    height: 9px;

    margin: 10px;

    border-radius: 50%;

    background: #8da0ff;

    box-shadow:
        0 0 15px rgba(141, 160, 255, 0.75);
}


/* =========================
   INDUSTRY STRIP
   ========================= */

.industry-strip {
    position: relative;
    z-index: 10;

    border-top:
        1px solid rgba(255, 255, 255, 0.065);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.065);

    background: #090b0f;
}

.industry-inner {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    overflow: hidden;

    color: #545b65;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    white-space: nowrap;
}


/* =========================
   GLOW
   ========================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}

.hero-glow-one {
    width: 390px;
    height: 390px;

    right: 4%;
    top: 24%;

    background:
        rgba(78, 92, 255, 0.08);
}

.hero-glow-two {
    width: 300px;
    height: 300px;

    left: -140px;
    bottom: 0;

    background:
        rgba(54, 117, 255, 0.06);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1000px) {

    .hero {
        min-height: auto;
        padding-top: 150px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-showcase {
        width: min(680px, 95%);
        margin: 0 auto;
    }

    .industry-inner {
        justify-content: flex-start;
        overflow-x: auto;
    }
}


@media (max-width: 760px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .main-nav {
        display: none;
    }

    .nav-cta {
        padding: 9px 15px;
        font-size: 11px;
    }

    .hero {
        padding:
            125px 0
            75px;
    }

    .hero h1 {
        font-size: clamp(47px, 14vw, 68px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .showcase-card {
        transform: none;
    }

    .floating-card-one {
        right: -5px;
        top: 65px;
    }

    .floating-card-two {
        left: -5px;
        bottom: 25px;
    }

    .mock-site {
        min-height: 390px;
        padding: 22px;
    }

    .mock-content {
        padding-top: 70px;
    }

    .browser-url {
        padding:
            5px 18px;
    }
}/* =========================
   SELECTED WORK
   ========================= */

.work-section {
    padding: 140px 0 150px;
    background: #0a0c10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
    margin-bottom: 70px;
}

.section-kicker {
    color: #8d9cff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 22px;
}

.section-heading-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: end;
}

.section-heading h2 {
    max-width: 780px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.section-heading h2 span {
    color: #737986;
    font-weight: 500;
}

.section-heading p {
    color: #858c98;
    font-size: 15px;
    line-height: 1.8;
    max-width: 420px;
}


/* Project Grid */

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

.project-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 22px;
    background: #0d1015;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.14);
}

.project-card-large {
    grid-column: 1 / -1;
}

.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.project-number {
    color: #5c6370;
    font-size: 10px;
    margin-right: 14px;
}

.project-category {
    color: #b9bec8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.project-link {
    color: #8f97a3;
    font-size: 11px;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #ffffff;
}


/* Preview Frames */

.project-preview {
    min-height: 460px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
}

.project-card:not(.project-card-large) .project-preview {
    min-height: 380px;
    padding: 30px;
}

.project-preview-blue {
    background:
        radial-gradient(circle at 80% 20%, rgba(91, 110, 255, 0.25), transparent 35%),
        linear-gradient(135deg, #101828, #0c1018);
}

.project-preview-warm {
    background:
        radial-gradient(circle at 80% 10%, rgba(207, 156, 120, 0.25), transparent 35%),
        linear-gradient(135deg, #251b19, #151111);
}

.project-preview-green {
    background:
        radial-gradient(circle at 80% 10%, rgba(77, 135, 95, 0.25), transparent 35%),
        linear-gradient(135deg, #122018, #0d1510);
}

.project-browser {
    width: min(900px, 95%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: #0a0c10;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.project-browser-bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: #11141a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-browser-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #444b55;
}


/* Mock Websites */

.project-site {
    min-height: 340px;
    padding: 28px 34px 40px;
}

.project-card:not(.project-card-large) .project-site {
    min-height: 310px;
}

.project-site-plumbing {
    background:
        radial-gradient(circle at 90% 20%, rgba(68, 93, 210, 0.16), transparent 30%),
        #0b111b;
}

.project-site-salon {
    background:
        radial-gradient(circle at 90% 20%, rgba(190, 136, 110, 0.18), transparent 35%),
        #191311;
}

.project-site-landscape {
    background:
        radial-gradient(circle at 90% 20%, rgba(74, 140, 92, 0.17), transparent 35%),
        #101710;
}

.project-site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-site-nav strong {
    font-size: 11px;
    letter-spacing: 0.17em;
}

.project-site-nav div {
    display: flex;
    gap: 15px;
}

.project-site-nav span {
    color: #6e7580;
    font-size: 8px;
}

.project-site-content {
    padding-top: 66px;
}

.project-site-content small {
    display: block;
    margin-bottom: 13px;
    color: #8898ff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.project-site-salon small {
    color: #cb9a7f;
}

.project-site-landscape small {
    color: #77a987;
}

.project-site-content h3 {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.project-card:not(.project-card-large) .project-site-content h3 {
    font-size: clamp(25px, 3vw, 38px);
}

.project-site-content p {
    max-width: 450px;
    margin-top: 15px;
    color: #777f8a;
    font-size: 11px;
    line-height: 1.7;
}

.project-site-content button {
    margin-top: 22px;
    padding: 10px 17px;
    border: 0;
    border-radius: 100px;
    background: #f3f4f6;
    color: #0b0d11;
    font-size: 9px;
    font-weight: 800;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.project-meta span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    color: #747b86;
    font-size: 9px;
}


/* Responsive */

@media (max-width: 900px) {

    .section-heading-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .project-card-large {
        grid-column: auto;
    }

    .project-preview,
    .project-card:not(.project-card-large) .project-preview {
        min-height: 360px;
        padding: 24px;
    }
}

@media (max-width: 600px) {

    .work-section {
        padding: 95px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .project-card {
        padding: 13px;
    }

    .project-preview,
    .project-card:not(.project-card-large) .project-preview {
        min-height: 310px;
        padding: 14px;
    }

    .project-site {
        padding: 20px;
        min-height: 290px;
    }

    .project-top {
        align-items: flex-start;
        gap: 15px;
    }

    .project-category {
        display: block;
        margin-top: 3px;
    }
}/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    position: relative;
    padding: 145px 0;
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(78, 94, 255, 0.045),
            transparent 30%
        ),
        #080a0e;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}


/* =========================
   SERVICES INTRO
   ========================= */

.services-intro {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 70px;
}

.services-intro h2 {
    max-width: 790px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.services-intro h2 span {
    display: block;
    color: #737986;
    font-weight: 500;
}

.services-intro > p {
    max-width: 410px;

    color: #858c98;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   SERVICES GRID
   ========================= */

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

.service-card {
    position: relative;

    min-height: 340px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.008)
        ),
        #0d1015;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);

    border-color: rgba(147, 160, 255, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(120, 137, 255, 0.055),
            rgba(255, 255, 255, 0.01)
        ),
        #0d1015;
}


/* Featured Service */

.service-featured {
    min-height: 430px;

    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    padding: 42px;
}


/* =========================
   NUMBERS
   ========================= */

.service-number {
    position: absolute;
    top: 26px;
    right: 28px;

    color: #484f5a;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* =========================
   ICON
   ========================= */

.service-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 55px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;

    background:
        rgba(125, 141, 255, 0.07);

    color: #9ba8ff;

    font-size: 19px;
}

.service-featured .service-icon {
    margin-bottom: 34px;
}


/* =========================
   SERVICE CONTENT
   ========================= */

.service-content {
    margin-top: auto;
}

.service-featured .service-content {
    max-width: 480px;
    margin-top: 0;
}

.service-content h3 {
    margin-bottom: 14px;

    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 650;
}

.service-featured .service-content h3 {
    font-size: clamp(30px, 3vw, 43px);
}

.service-content p {
    max-width: 470px;

    color: #7f8792;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================
   TAGS
   ========================= */

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 23px;
}

.service-tags span {
    padding: 6px 10px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;

    color: #696f7a;

    font-size: 8px;
    font-weight: 600;
}


/* =========================
   FEATURED VISUAL
   ========================= */

.service-visual {
    position: relative;

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

.mini-browser {
    width: min(470px, 100%);

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    background: #0a0c10;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4);
}

.mini-browser-top {
    height: 36px;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 0 13px;

    background: #12151a;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.055);
}

.mini-browser-top i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #414751;
}

.mini-site {
    min-height: 285px;

    padding: 25px 28px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(102, 117, 255, 0.18),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #101520,
            #0b0e14
        );
}

.mini-site-nav {
    display: flex;
    justify-content: space-between;

    color: #d6d9df;

    font-size: 8px;
    letter-spacing: 0.13em;
}

.mini-site-nav span {
    color: #59606b;
}

.mini-site-body {
    padding-top: 62px;
}

.mini-site-body small {
    display: block;

    margin-bottom: 12px;

    color: #8d9cff;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mini-site-body > strong {
    display: block;

    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.mini-button {
    display: inline-flex;

    margin-top: 20px;
    padding: 8px 14px;

    border-radius: 100px;

    background: #f4f5f7;
    color: #0a0c10;

    font-size: 8px;
    font-weight: 800;
}


/* =========================
   SERVICES RESPONSIVE
   ========================= */

@media (max-width: 900px) {

    .services-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-featured {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .service-visual {
        justify-content: flex-start;
    }

}


@media (max-width: 700px) {

    .services-section {
        padding: 95px 0;
    }

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

    .service-featured {
        grid-column: auto;
        padding: 28px;
    }

    .service-card {
        min-height: 300px;
        padding: 27px;
    }

    .service-featured {
        min-height: auto;
    }

    .service-icon {
        margin-bottom: 45px;
    }

}/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    padding: 145px 0;
    background: #0a0c10;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.process-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}

.process-heading h2 {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.process-heading h2 span {
    display: block;
    color: #737986;
    font-weight: 500;
}

.process-heading > p {
    max-width: 390px;
    color: #858c98;
    font-size: 15px;
    line-height: 1.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card {
    position: relative;
    min-height: 300px;
    padding: 35px 30px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.process-card:last-child {
    border-right: 0;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.025);
}

.process-number {
    display: block;
    margin-bottom: 90px;
    color: #8998ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.process-card p {
    color: #777f8b;
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 900px) {

    .process-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .process-card:nth-child(2) {
        border-right: 0;
    }

    .process-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 600px) {

    .process-section {
        padding: 95px 0;
    }

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

    .process-card,
    .process-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .process-card:last-child {
        border-bottom: 0;
    }

    .process-number {
        margin-bottom: 55px;
    }
}/* =========================================================
   SERVANA APPS
   ========================================================= */

.apps-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(86, 104, 255, 0.08),
            transparent 32%
        ),
        #080a0e;

    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.apps-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 80px;

    margin-bottom: 75px;
}

.apps-heading h2 {
    max-width: 800px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.apps-heading h2 span {
    display: block;

    color: #737986;

    font-weight: 500;
}

.apps-heading > p {
    max-width: 410px;

    color: #858c98;

    font-size: 15px;
    line-height: 1.8;
}


/* Main showcase */

.apps-showcase {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;

    padding: 55px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.005)
        ),
        #0d1015;
}


/* Copy */

.apps-label {
    display: block;

    margin-bottom: 22px;

    color: #919fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.apps-content h3 {
    max-width: 500px;

    font-size: clamp(33px, 3.5vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.apps-content p {
    max-width: 470px;

    margin-top: 22px;

    color: #7f8792;

    font-size: 14px;
    line-height: 1.8;
}

.apps-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin: 26px 0 30px;
}

.apps-tags span {
    padding: 7px 11px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;

    color: #757c88;

    font-size: 9px;
}


/* CRM preview */

.apps-visual {
    position: relative;
}

.crm-window {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;

    background: #090b0f;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.55),
        0 0 70px rgba(89, 104, 255, 0.07);
}

.crm-topbar {
    height: 42px;

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

    padding: 0 16px;

    background: #11141a;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.crm-topbar small {
    color: #59616d;

    font-size: 8px;
    letter-spacing: 0.12em;
}

.crm-dots {
    display: flex;
    gap: 6px;
}

.crm-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #454b55;
}


/* CRM layout */

.crm-layout {
    min-height: 390px;

    display: grid;
    grid-template-columns: 48px 1fr;
}

.crm-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;

    padding-top: 17px;

    border-right: 1px solid rgba(255, 255, 255, 0.055);

    background: #0c0f14;
}

.crm-sidebar strong {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    margin-bottom: 7px;

    border-radius: 7px;

    background: #8d9cff;
    color: #080a0e;

    font-size: 9px;
}

.crm-sidebar span {
    color: #535b67;

    font-size: 11px;
}

.crm-main {
    padding: 23px;
}


/* Header */

.crm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crm-header div {
    display: flex;
    flex-direction: column;
}

.crm-header small {
    color: #59616c;

    font-size: 7px;
    letter-spacing: 0.14em;
}

.crm-header strong {
    margin-top: 4px;

    font-size: 15px;
}

.crm-status {
    padding: 5px 8px;

    border: 1px solid rgba(142, 158, 255, 0.16);
    border-radius: 100px;

    color: #9ba8ff;

    font-size: 7px;
}


/* Stats */

.crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;

    margin-top: 22px;
}

.crm-stats div {
    padding: 13px;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 9px;

    background: #101319;
}

.crm-stats small {
    display: block;

    color: #59616c;

    font-size: 6px;
    letter-spacing: 0.1em;
}

.crm-stats strong {
    display: block;

    margin-top: 5px;

    font-size: 17px;
}


/* Board */

.crm-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;

    margin-top: 13px;
}

.crm-column {
    min-height: 190px;

    padding: 11px;

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9px;

    background: #0d1015;
}

.crm-column > small {
    display: block;

    margin-bottom: 10px;

    color: #626a76;

    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.crm-lead-card {
    padding: 10px;

    margin-bottom: 8px;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 7px;

    background: #12161c;
}

.crm-lead-card strong {
    display: block;

    font-size: 8px;
}

.crm-lead-card span {
    display: block;

    margin-top: 3px;

    color: #646d79;

    font-size: 7px;
}


/* Responsive */

@media (max-width: 950px) {

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

    .apps-heading {
        gap: 25px;
    }

    .apps-showcase {
        gap: 55px;
    }
}

@media (max-width: 650px) {

    .apps-section {
        padding: 95px 0;
    }

    .apps-showcase {
        padding: 25px;
    }

    .crm-main {
        padding: 15px;
    }

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

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

    .crm-column {
        min-height: auto;
    }
}/* =========================================================
   GET A QUOTE
   ========================================================= */

.quote-section {
    position: relative;
    padding: 150px 0;

    background:
        radial-gradient(
            circle at 10% 60%,
            rgba(91, 107, 255, 0.08),
            transparent 32%
        ),
        #080a0e;

    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.quote-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;

    padding: 70px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.028),
            rgba(255, 255, 255, 0.006)
        ),
        #0d1015;
}


/* Quote copy */

.quote-copy h2 {
    max-width: 640px;

    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.quote-copy h2 span {
    display: block;
    color: #737986;
    font-weight: 500;
}

.quote-copy > p {
    max-width: 470px;

    margin-top: 25px;

    color: #7f8792;

    font-size: 14px;
    line-height: 1.8;
}

.quote-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 30px;
}

.quote-points span {
    padding: 7px 11px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;

    color: #737b86;

    font-size: 9px;
}


/* Form */

.quote-form {
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;

    background: #0a0d12;
}

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

.form-field {
    margin-bottom: 17px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: #a8aeb8;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    outline: none;

    background: #101319;
    color: #eef0f4;

    font: inherit;
    font-size: 13px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #555d68;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(139, 153, 255, 0.45);
    background: #12161c;
}

.quote-submit {
    width: 100%;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 5px;

    border: 0;
    border-radius: 100px;

    cursor: pointer;

    background: #f4f5f7;
    color: #090b0f;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.quote-submit:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.quote-note {
    margin-top: 13px;

    text-align: center;

    color: #59616c;

    font-size: 9px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 80px 0 30px;

    background: #07090d;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 390px;

    margin-top: 22px;

    color: #69717d;

    font-size: 13px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 100px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links small {
    margin-bottom: 8px;

    color: #4f5661;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.footer-links a {
    color: #848b96;

    font-size: 12px;

    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    color: #4f5661;

    font-size: 9px;
}


/* Responsive */

@media (max-width: 900px) {

    .quote-card {
        grid-template-columns: 1fr;
        gap: 55px;

        padding: 45px;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {

    .quote-section {
        padding: 95px 0;
    }

    .quote-card {
        padding: 27px;
    }

    .quote-form {
        padding: 22px;
    }

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

    .footer-links {
        gap: 55px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}/* =========================================================
   PREMIUM INTERACTIONS
   ========================================================= */

.site-header {
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.header-scrolled {
    position: fixed;

    background: rgba(7, 9, 13, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


/* Reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Mobile navigation button */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.04);

    cursor: pointer;
}

.mobile-menu-button span {
    width: 17px;
    height: 1px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-button.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


@media (max-width: 760px) {

    .mobile-menu-button {
        display: flex;
    }

    .main-nav {
        position: absolute;

        top: 78px;
        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px;

        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;

        background: rgba(10, 12, 16, 0.97);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .main-nav.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 12px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .nav-cta {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================
   SMALL LAPTOP OPTIMIZATION
   ========================= */

@media (max-width: 1600px) and (min-width: 901px) {

    .floating-card-two {
        left: -90px;
        bottom: -35px;
    }

}