/* =========================================================
   NEXTVISION76 LTD
   Premium Digital Agency Website
   Main Stylesheet
   ========================================================= */


/* =========================================================
   01. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    background: #030816;
    color: #f5f7ff;
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Inter", sans-serif;
}

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

button {
    border: 0;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: rgba(0, 183, 255, 0.3);
    color: #ffffff;
}


/* =========================================================
   02. VARIABLES
   ========================================================= */

:root {

    --bg-main: #030816;
    --bg-secondary: #060d1d;
    --bg-card: rgba(10, 20, 39, 0.72);

    --text-main: #f5f7ff;
    --text-muted: #9ca9bd;
    --text-soft: #718097;

    --accent: #00b7ff;
    --accent-light: #58d2ff;
    --accent-dark: #0077ff;

    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(255, 255, 255, 0.14);

    --container: 1180px;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.32);

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   04. PRELOADER
   ========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    background: var(--bg-main);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 76px;
    height: 76px;

    border-radius: 22px;

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

    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(0, 183, 255, 0.14),
            rgba(0, 119, 255, 0.03)
        );

    border: 1px solid rgba(0, 183, 255, 0.35);

    box-shadow:
        0 0 50px rgba(0, 183, 255, 0.18);

    animation: loaderPulse 1.4s infinite;
}

.loader::before {
    content: "";

    position: absolute;
    inset: -5px;

    border-radius: 26px;

    border: 1px solid rgba(0, 183, 255, 0.2);

    animation: loaderRotate 2s linear infinite;
}

.loader span {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;

    color: var(--accent);
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes loaderRotate {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 20px 0;

    transition:
        padding var(--transition),
        background var(--transition),
        border var(--transition),
        backdrop-filter var(--transition);
}

.site-header.scrolled {
    padding: 12px 0;

    background:
        rgba(3, 8, 22, 0.78);

    backdrop-filter: blur(22px);

    border-bottom:
        1px solid var(--border);
}

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

    gap: 25px;
}


/* =========================================================
   06. BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

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

    border-radius: 13px;

    position: relative;

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

    background:
        linear-gradient(
            145deg,
            rgba(0, 183, 255, 0.16),
            rgba(0, 119, 255, 0.04)
        );

    border:
        1px solid rgba(0, 183, 255, 0.35);

    box-shadow:
        0 0 30px rgba(0, 183, 255, 0.12);
}

.brand-mark span {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;

    color: #ffffff;
}

.brand-mark strong {
    position: absolute;

    right: 5px;
    top: 3px;

    color: var(--accent);

    font-size: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-text > span {
    font-family: "Manrope", sans-serif;

    font-size: 15px;
    line-height: 1;

    font-weight: 800;
    letter-spacing: 0.4px;
}

.brand-text small {
    font-size: 7px;

    letter-spacing: 2.3px;

    color: var(--accent);

    font-weight: 700;
}


/* =========================================================
   07. NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.nav-link {
    position: relative;

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

    color: var(--text-muted);

    transition:
        color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: var(--accent);

    transition:
        width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 18px;
}


/* =========================================================
   07b. SERVICES DROPDOWN
   ========================================================= */

.nav-item.has-dropdown {
    position: relative;

    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    background: none;
    color: var(--text-muted);
}

.dropdown-arrow {
    display: inline-block;

    width: 6px;
    height: 6px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg);

    transition: transform var(--transition);
}

.nav-item.has-dropdown:hover .dropdown-toggle,
.nav-item.has-dropdown.open .dropdown-toggle {
    color: #ffffff;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.open .dropdown-arrow {
    transform: rotate(225deg);
}

.dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    transform: translateX(-50%) translateY(-8px);

    min-width: 270px;

    display: flex;
    flex-direction: column;
    gap: 2px;

    padding: 10px;

    border-radius: 14px;

    background: rgba(5, 12, 27, 0.97);
    backdrop-filter: blur(25px);

    border: 1px solid var(--border);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);

    opacity: 0;
    visibility: hidden;

    z-index: 1100;

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    padding: 10px 12px;

    border-radius: 9px;

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

    color: var(--text-muted);

    transition:
        color var(--transition),
        background var(--transition);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}


/* =========================================================
   08. HEADER CTA
   ========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    border-radius: 10px;

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

    background: #ffffff;
    color: #050914;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255, 255, 255, 0.13);
}

.nav-cta span {
    font-size: 15px;
}


/* =========================================================
   09. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border-radius: 12px;

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

    border:
        1px solid var(--border);

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.mobile-menu-btn span {
    width: 19px;
    height: 2px;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   10. HERO
   ========================================================= */

.hero-section {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding:
        150px 0
        90px;

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

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

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            transparent 80%
        );

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    opacity: 0.15;
}

.hero-glow-one {
    top: -180px;
    left: -150px;

    background: var(--accent);
}

.hero-glow-two {
    right: -180px;
    bottom: -200px;

    background: #0066ff;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 0.85fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   11. HERO CONTENT
   ========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border-radius: 50px;

    background:
        rgba(0, 183, 255, 0.07);

    border:
        1px solid rgba(0, 183, 255, 0.17);

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 24px;
}

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

    border-radius: 50%;

    background: #36e49b;

    box-shadow:
        0 0 12px rgba(54, 228, 155, 0.7);

    animation:
        statusPulse 2s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

.hero-title {
    max-width: 760px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(52px, 6vw, 84px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 28px;
}

.hero-title span {
    display: block;
}

.hero-title strong {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #ffffff 5%,
            var(--accent) 65%,
            #5d8cff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
}

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

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 34px;
}


/* =========================================================
   12. HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 36px;
}

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

    gap: 12px;

    min-height: 50px;

    padding:
        0 20px;

    border-radius: 12px;

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

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border var(--transition);
}

.btn span {
    font-size: 16px;
}

.btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            110deg,
            #009fff,
            #006eff
        );

    box-shadow:
        0 14px 35px
        rgba(0, 119, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px
        rgba(0, 119, 255, 0.3);
}

.btn-secondary {
    color: #ffffff;

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

    border:
        1px solid var(--border);
}

.btn-secondary:hover {
    transform: translateY(-3px);

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

    border-color:
        var(--border-light);
}


/* =========================================================
   13. HERO TRUST
   ========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}

.trust-item {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--text-soft);

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

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background:
        rgba(54, 228, 155, 0.1);

    color: #36e49b;

    font-size: 9px;
}


/* =========================================================
   14. HERO VISUAL
   ========================================================= */

.hero-visual {
    min-height: 560px;

    position: relative;

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

.visual-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(0, 183, 255, 0.1);

    pointer-events: none;
}

.orbit-one {
    width: 480px;
    height: 480px;

    animation:
        orbitSpin 18s linear infinite;
}

.orbit-two {
    width: 600px;
    height: 600px;

    border-color:
        rgba(0, 119, 255, 0.06);

    animation:
        orbitSpin 25s linear infinite reverse;
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   15. DASHBOARD CARD
   ========================================================= */

.dashboard-card {
    width: min(100%, 490px);

    position: relative;
    z-index: 3;

    padding: 27px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 31, 57, 0.95),
            rgba(6, 14, 29, 0.96)
        );

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

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.5),

        inset 0 1px 0
        rgba(255, 255, 255, 0.06);

    transition:
        transform 0.25s ease;
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 28px;
}

.dashboard-label {
    display: block;

    color: var(--text-soft);

    font-size: 10px;

    margin-bottom: 5px;
}

.dashboard-top h3 {
    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;
}

.dashboard-live {
    padding: 5px 8px;

    border-radius: 6px;

    background:
        rgba(54, 228, 155, 0.08);

    border:
        1px solid
        rgba(54, 228, 155, 0.15);

    color: #36e49b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   16. CHART
   ========================================================= */

.chart-area {
    height: 210px;

    position: relative;

    overflow: hidden;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.015);
}

.chart-grid-line {
    position: absolute;

    left: 0;
    right: 0;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.055);
}

.chart-grid-line:nth-child(1) {
    top: 25%;
}

.chart-grid-line:nth-child(2) {
    top: 50%;
}

.chart-grid-line:nth-child(3) {
    top: 75%;
}

.chart-line {
    position: absolute;

    left: -5%;
    top: 50%;

    width: 115%;
    height: 100%;

    background:
        linear-gradient(
            145deg,
            transparent 43%,
            var(--accent) 44%,
            var(--accent) 45%,
            transparent 46%
        ),

        linear-gradient(
            170deg,
            transparent 49%,
            var(--accent) 50%,
            var(--accent) 51%,
            transparent 52%
        ),

        linear-gradient(
            150deg,
            transparent 57%,
            #557eff 58%,
            #557eff 59%,
            transparent 60%
        );

    filter:
        drop-shadow(
            0 0 7px
            rgba(0, 183, 255, 0.5)
        );

    opacity: 0.9;
}

.point {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 14px
        rgba(0, 183, 255, 0.8);

    z-index: 2;
}

.point-1 {
    left: 8%;
    top: 67%;
}

.point-2 {
    left: 22%;
    top: 53%;
}

.point-3 {
    left: 36%;
    top: 58%;
}

.point-4 {
    left: 51%;
    top: 34%;
}

.point-5 {
    left: 65%;
    top: 43%;
}

.point-6 {
    left: 79%;
    top: 20%;
}

.point-7 {
    left: 93%;
    top: 27%;
}


/* =========================================================
   17. DASHBOARD STATS
   ========================================================= */

.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 13px;
}

.mini-stat {
    padding: 13px;

    border-radius: 11px;

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

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

.mini-stat span {
    display: block;

    color: var(--text-soft);

    font-size: 8px;

    margin-bottom: 3px;
}

.mini-stat strong {
    font-size: 10px;

    font-weight: 700;

    color: #ffffff;
}


/* =========================================================
   18. FLOATING CARDS
   ========================================================= */

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 11px 13px;

    min-width: 185px;

    border-radius: 14px;

    background:
        rgba(10, 20, 39, 0.9);

    backdrop-filter: blur(15px);

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

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.35);

    animation:
        floatCard 5s ease-in-out infinite;
}

.floating-card-one {
    left: -25px;
    top: 95px;
}

.floating-card-two {
    right: -15px;
    top: 215px;

    animation-delay:
        -1.7s;
}

.floating-card-three {
    left: 15px;
    bottom: 80px;

    animation-delay:
        -3.2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

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

    border-radius: 10px;

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

    font-size: 9px;

    font-weight: 800;

    background:
        rgba(255, 255, 255, 0.07);
}

.meta-icon {
    color: #5da9ff;
}

.google-icon {
    color: #ffffff;
}

.tiktok-icon {
    color: #ffffff;
}

.floating-card strong {
    display: block;

    font-size: 10px;

    margin-bottom: 1px;
}

.floating-card small {
    display: block;

    color: var(--text-soft);

    font-size: 8px;
}


/* =========================================================
   19. SECTION GENERAL
   ========================================================= */

section {
    position: relative;
}

.intro-section,
.services-preview,
.portfolio-preview,
.company-section,
.cta-section {
    padding:
        120px 0;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-tag {
    display: inline-block;

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.2px;

    margin-bottom: 15px;
}

.section-heading h2,
.section-top-row h2,
.company-content h2,
.cta-box h2 {
    font-family: "Manrope", sans-serif;

    font-weight: 800;

    letter-spacing: -2px;

    line-height: 1.05;

    font-size:
        clamp(36px, 4vw, 54px);
}

.section-heading h2 span,
.section-top-row h2 span,
.company-content h2 span,
.cta-box h2 span {
    color: var(--accent);
}

.section-heading p {
    margin-top: 20px;

    max-width: 620px;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   20. INTRO CARDS
   ========================================================= */

.intro-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.intro-card {
    position: relative;

    min-height: 250px;

    padding: 30px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    border:
        1px solid var(--border);

    overflow: hidden;

    transition:
        transform var(--transition),
        border var(--transition),
        background var(--transition);
}

.intro-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        var(--accent);

    filter: blur(70px);

    opacity: 0.06;
}

.intro-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(0, 183, 255, 0.2);

    background:
        rgba(255, 255, 255, 0.055);
}

.card-number {
    display: inline-block;

    color: var(--accent);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 60px;
}

.intro-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 19px;

    margin-bottom: 10px;
}

.intro-card p {
    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   21. SERVICES
   ========================================================= */

.services-preview {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 119, 255, 0.025),
            transparent
        );
}

.section-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;
}

.section-top-row h2 {
    max-width: 650px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--text-muted);

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

    white-space: nowrap;

    transition:
        color var(--transition);
}

.text-link:hover {
    color: var(--accent);
}

.text-link span {
    font-size: 15px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.service-card {
    min-height: 310px;

    position: relative;

    padding: 25px;

    border-radius: var(--radius-md);

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

    border:
        1px solid var(--border);

    overflow: hidden;

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

.service-card:hover {
    border-color:
        rgba(0, 183, 255, 0.25);

    background:
        rgba(0, 183, 255, 0.035);
}

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

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

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 183, 255, 0.16),
            rgba(0, 119, 255, 0.04)
        );

    border:
        1px solid
        rgba(0, 183, 255, 0.2);

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 32px;
}

.service-number {
    position: absolute;

    right: 22px;
    top: 25px;

    color: var(--text-soft);

    font-size: 9px;

    font-weight: 700;

    opacity: 0.7;
}

.service-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 17px;

    line-height: 1.2;

    margin-bottom: 11px;
}

.service-card p {
    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.75;

    margin-bottom: 22px;
}

.service-card > a {
    position: absolute;

    left: 25px;
    bottom: 22px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 700;
}

.service-card > a span {
    font-size: 14px;

    transition:
        transform var(--transition);
}

.service-card:hover > a span {
    transform:
        translateX(4px);
}


/* =========================================================
   22. PORTFOLIO
   ========================================================= */

.portfolio-preview {
    background:
        #040a17;
}

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.portfolio-placeholder {
    min-height: 340px;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding: 28px;

    border-radius: 22px;

    overflow: hidden;

    background-color: #06101f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border:
        1px solid var(--border);

    transition:
        transform var(--transition),
        border var(--transition);
}

.portfolio-placeholder::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 10, 23, 0.15) 0%,
            rgba(4, 10, 23, 0.55) 55%,
            rgba(4, 10, 23, 0.92) 100%
        ),
        radial-gradient(
            circle at 75% 20%,
            rgba(0, 183, 255, 0.17),
            transparent 35%
        );

    transition:
        transform var(--transition);
}

.portfolio-placeholder::after {
    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 16px;

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

.portfolio-placeholder:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0, 183, 255, 0.25);
}

.portfolio-placeholder:hover::before {
    transform: scale(1.15);
}

.placeholder-content {
    position: relative;

    z-index: 2;
}

.placeholder-content span {
    display: block;

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 7px;
}

.placeholder-content h3 {
    font-family: "Manrope", sans-serif;

    font-size: 24px;

    margin-bottom: 5px;
}

.placeholder-content p {
    color: var(--text-muted);

    font-size: 10px;
}


/* =========================================================
   23. COMPANY
   ========================================================= */

.company-section {
    background:
        linear-gradient(
            135deg,
            rgba(0, 119, 255, 0.035),
            transparent 50%
        );
}

.company-container {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 80px;

    align-items: center;
}

.company-content h2 {
    max-width: 600px;

    margin-bottom: 25px;
}

.company-content p {
    max-width: 620px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.85;

    margin-bottom: 15px;
}

.company-content .btn {
    margin-top: 18px;
}

.company-details {
    border-top:
        1px solid var(--border);
}

.company-detail {
    display: flex;
    justify-content: space-between;

    gap: 25px;

    padding:
        18px 0;

    border-bottom:
        1px solid var(--border);
}

.company-detail span {
    color: var(--text-soft);

    font-size: 10px;

    flex-shrink: 0;
}

.company-detail strong {
    max-width: 280px;

    color: #ffffff;

    font-size: 11px;

    text-align: right;

    line-height: 1.5;
}


/* =========================================================
   24. CTA
   ========================================================= */

.cta-section {
    padding-top: 40px;
    padding-bottom: 100px;
}

.cta-box {
    position: relative;

    padding:
        75px 60px;

    text-align: center;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(0, 119, 255, 0.11),
            rgba(0, 183, 255, 0.035)
        );

    border:
        1px solid
        rgba(0, 183, 255, 0.14);
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: -320px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        var(--accent);

    filter: blur(150px);

    opacity: 0.1;
}

.cta-decoration {
    position: absolute;

    inset: 18px;

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

    border-radius: 20px;

    pointer-events: none;
}

.cta-box h2 {
    position: relative;

    max-width: 720px;

    margin:
        0 auto 18px;
}

.cta-box p {
    position: relative;

    max-width: 600px;

    margin:
        0 auto 30px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;
}

.cta-buttons {
    position: relative;

    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   25. FOOTER
   ========================================================= */

.site-footer {
    padding:
        70px 0 25px;

    background:
        #020611;

    border-top:
        1px solid var(--border);
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.9fr
        1.2fr;

    gap: 55px;

    padding-bottom: 55px;
}

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

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.8;

    margin-top: 20px;
}

.social-links {
    display: flex;

    gap: 8px;

    margin-top: 20px;
}

.social-links a {
    width: 34px;
    height: 34px;

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

    border-radius: 9px;

    color: var(--text-muted);

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

    border:
        1px solid var(--border);

    font-size: 10px;

    font-weight: 800;

    transition:
        color var(--transition),
        border var(--transition),
        transform var(--transition);
}

.social-links a:hover {
    color: var(--accent);

    border-color:
        rgba(0, 183, 255, 0.25);

    transform:
        translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    font-family: "Manrope", sans-serif;

    font-size: 12px;

    margin-bottom: 20px;
}

.footer-column a {
    color: var(--text-soft);

    font-size: 10px;

    margin-bottom: 11px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--text-soft);

    font-size: 9px;

    line-height: 1.7;

    margin-top: 4px;
}

.company-number {
    color: #4e5b70;

    font-size: 8px;

    margin-top: 14px;

    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top:
        1px solid var(--border);
}

.footer-bottom p {
    color: #4e5b70;

    font-size: 9px;
}

.legal-links {
    display: flex;

    gap: 20px;
}

.legal-links a {
    color: #4e5b70;

    font-size: 9px;

    transition:
        color var(--transition);
}

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


/* =========================================================
   26. WHATSAPP
   ========================================================= */

.whatsapp-button {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 900;

    width: 52px;
    height: 52px;

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

    border-radius: 50%;

    background:
        #25d366;

    color: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(37, 211, 102, 0.25);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.whatsapp-button:hover {
    transform:
        translateY(-4px)
        scale(1.04);

    box-shadow:
        0 18px 45px
        rgba(37, 211, 102, 0.35);
}

.whatsapp-button span {
    font-size: 10px;

    font-weight: 900;

    letter-spacing: -0.5px;
}


/* =========================================================
   27. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 88px;

    z-index: 899;

    width: 42px;
    height: 42px;

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

    border-radius: 12px;

    background:
        rgba(10, 20, 39, 0.9);

    border:
        1px solid var(--border);

    color: #ffffff;

    font-size: 17px;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.back-to-top:hover {
    color: var(--accent);

    border-color:
        rgba(0, 183, 255, 0.25);
}


/* =========================================================
   28. REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   29. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 22px;
    }

    .hero-container {
        grid-template-columns:
            1fr 0.85fr;

        gap: 40px;
    }

    .hero-title {
        font-size:
            clamp(48px, 6vw, 70px);
    }

    .hero-visual {
        min-height: 480px;
    }

    .dashboard-card {
        width: 100%;
    }

    .floating-card-one {
        left: -15px;
    }

    .floating-card-two {
        right: -10px;
    }

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

    .footer-main {
        grid-template-columns:
            1.4fr
            0.8fr
            0.9fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   30. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }


    /* HEADER */

    .site-header {
        padding: 15px 0;
    }

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

    .nav-cta {
        display: none;
    }

    .main-nav {
        position: absolute;

        left: 15px;
        right: 15px;

        top: calc(100% + 8px);

        padding: 15px;

        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        border-radius: 17px;

        background:
            rgba(5, 12, 27, 0.97);

        backdrop-filter: blur(25px);

        border:
            1px solid var(--border);

        box-shadow:
            0 25px 60px
            rgba(0, 0, 0, 0.4);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;

        transform:
            translateY(0);
    }

    .nav-link {
        padding: 12px;

        border-radius: 9px;
    }

    .nav-link:hover,
    .nav-link.active {
        background:
            rgba(255, 255, 255, 0.04);
    }

    .nav-link::after {
        display: none;
    }


    /* SERVICES DROPDOWN (MOBILE) */

    .nav-item.has-dropdown {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-item.has-dropdown .nav-link {
        flex: 1;
    }

    .dropdown-toggle {
        position: absolute;

        top: 4px;
        right: 4px;

        width: 40px;
        height: 40px;
    }

    .dropdown-menu {
        position: static;

        left: auto;
        top: auto;

        min-width: 0;

        max-height: 0;

        padding: 0;

        margin-top: 0;

        opacity: 1;
        visibility: hidden;

        transform: none;

        overflow: hidden;

        border: none;
        background: rgba(255, 255, 255, 0.03);

        box-shadow: none;

        transition:
            max-height var(--transition),
            padding var(--transition),
            visibility var(--transition);
    }

    .nav-item.has-dropdown:hover .dropdown-menu,
    .nav-item.has-dropdown.open .dropdown-menu {
        position: static;

        left: auto;
        top: auto;

        transform: none;

        visibility: visible;

        max-height: 500px;

        padding: 6px;
        margin-top: 4px;

        border-radius: 9px;
    }


    /* HERO */

    .hero-section {
        min-height: auto;

        padding:
            135px 0
            70px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-title {
        font-size:
            clamp(44px, 13vw, 66px);

        letter-spacing: -3px;
    }

    .hero-description {
        margin-inline: auto;

        font-size: 13px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 440px;

        width: 100%;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 430px;
        height: 430px;
    }

    .dashboard-card {
        max-width: 430px;

        padding: 20px;

        border-radius: 20px;
    }

    .chart-area {
        height: 170px;
    }

    .floating-card {
        min-width: 150px;

        padding: 9px 10px;
    }

    .floating-card-one {
        left: 0;
        top: 55px;
    }

    .floating-card-two {
        right: 0;
        top: 180px;
    }

    .floating-card-three {
        left: 5px;
        bottom: 40px;
    }


    /* SECTIONS */

    .intro-section,
    .services-preview,
    .portfolio-preview,
    .company-section {
        padding:
            85px 0;
    }

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

    .section-heading h2,
    .section-top-row h2,
    .company-content h2,
    .cta-box h2 {
        font-size:
            clamp(34px, 10vw, 46px);

        letter-spacing: -2px;
    }


    /* INTRO */

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

    .intro-card {
        min-height: 230px;
    }

    .card-number {
        margin-bottom: 45px;
    }


    /* SERVICES */

    .section-top-row {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 40px;
    }

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

    .service-card {
        min-height: 285px;
    }


    /* PORTFOLIO */

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

    .portfolio-placeholder {
        min-height: 280px;
    }


    /* COMPANY */

    .company-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .company-detail {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .company-detail strong {
        text-align: left;

        max-width: none;
    }


    /* CTA */

    .cta-section {
        padding:
            20px 0
            70px;
    }

    .cta-box {
        padding:
            55px 22px;

        border-radius: 22px;
    }


    /* FOOTER */

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

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

    .legal-links {
        gap: 15px;
    }


    /* FLOATING BUTTONS */

    .whatsapp-button {
        right: 16px;
        bottom: 16px;

        width: 48px;
        height: 48px;
    }

    .back-to-top {
        right: 16px;
        bottom: 76px;
    }

}


/* =========================================================
   31. SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .brand-text {
        display: none;
    }

    .hero-title {
        font-size: 43px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 12px;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .dashboard-card {
        padding: 17px;
    }

    .dashboard-top h3 {
        font-size: 16px;
    }

    .chart-area {
        height: 145px;
    }

    .floating-card {
        transform:
            scale(0.86);
    }

    .floating-card-one {
        left: -18px;
    }

    .floating-card-two {
        right: -18px;
    }

    .floating-card-three {
        left: -15px;
    }

    .dashboard-stats {
        gap: 6px;
    }

    .mini-stat {
        padding: 9px;
    }

    .mini-stat strong {
        font-size: 8px;
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .legal-links {
        flex-direction: column;

        gap: 8px;
    }

}


/* =========================================================
   32. REDUCED MOTION
   ========================================================= */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}