:root {
    --dark: #07111f;
    --dark-2: #0a1626;
    --dark-3: #0d1c2f;

    --blue: #1597ff;
    --blue-dark: #0878d1;
    --cyan: #18d4ff;

    --white: #ffffff;
    --text: #dce7f3;
    --muted: #8192a8;

    --border: rgba(255, 255, 255, 0.09);

    --container: 1180px;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
a,
input,
textarea {
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(90%, var(--container));
    margin: auto;
}

.section {
    padding: 110px 0;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(7, 17, 31, 0.72);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(7, 17, 31, 0.96);
    border-bottom-color: var(--border);
}

.navbar {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;

    gap: 11px;

    min-width: 210px;
}

.logo-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    color: white;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(21, 151, 255, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 15px;
    letter-spacing: 0.8px;
}

.logo-text span {
    color: var(--muted);

    font-size: 8px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


/* Navigation */

.nav-links {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: auto;
}

.nav-links a {
    position: relative;

    color: #aebdce;

    font-size: 13px;
    font-weight: 500;

    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--blue);

    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* Phone */

.header-phone {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px 16px;

    border: 1px solid rgba(21, 151, 255, 0.25);
    border-radius: 9px;

    background: rgba(21, 151, 255, 0.08);

    color: #dceeff;

    font-size: 12px;
    font-weight: 600;

    transition: 0.3s;
}

.header-phone:hover {
    background: var(--blue);
    border-color: var(--blue);
}


/* Mobile Menu */

.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: transparent;

    cursor: pointer;
}

.menu-btn span {
    display: block;

    width: 21px;
    height: 2px;

    margin: 4px auto;

    background: white;

    transition: 0.3s;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 145px 0 90px;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(21, 151, 255, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(24, 212, 255, 0.10),
            transparent 30%
        );
}

.hero-background::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}

.hero-content {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}


/* Hero text */

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    border: 1px solid rgba(21, 151, 255, 0.25);
    border-radius: 50px;

    background: rgba(21, 151, 255, 0.07);

    color: #a7d8ff;

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #35df9a;

    box-shadow:
        0 0 10px #35df9a;
}

.hero h1 {
    max-width: 700px;

    margin-top: 22px;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3.5px;
}

.hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #fff,
        var(--cyan),
        var(--blue)
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 590px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.btn {
    min-height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--blue),
        #0876cf
    );

    box-shadow:
        0 12px 30px rgba(21, 151, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(21, 151, 255, 0.35);
}

.btn-outline {
    border: 1px solid var(--border);

    background: rgba(255,255,255,0.025);

    color: #dbe7f2;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);

    border-color: rgba(255,255,255,0.2);
}

.hero-info {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 45px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 13px;
}

.info-item span {
    color: var(--muted);

    font-size: 10px;
}

.info-line {
    width: 1px;
    height: 32px;

    background: var(--border);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    background: var(--blue);

    opacity: 0.16;

    filter: blur(100px);
}

.tech-card {
    position: relative;

    width: min(100%, 470px);

    padding: 15px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(19, 40, 63, 0.95),
            rgba(8, 20, 35, 0.96)
        );

    box-shadow:
        0 35px 80px rgba(0,0,0,0.4);

    transform: perspective(1200px) rotateY(-6deg);

    z-index: 2;
}

.tech-card-header {
    height: 60px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 8px 12px;

    border-bottom: 1px solid var(--border);
}

.camera-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: rgba(21,151,255,0.12);

    border: 1px solid rgba(21,151,255,0.2);
}

.camera-icon span {
    width: 14px;
    height: 11px;

    border-radius: 3px;

    background: var(--blue);

    position: relative;
}

.camera-icon span::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: white;

    left: 4px;
    top: 3px;
}

.tech-card-header strong {
    display: block;

    font-size: 11px;
}

.tech-card-header small {
    color: var(--muted);

    font-size: 8px;
}

.online {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-left: auto;

    color: #48df9e;

    font-size: 8px;
}

.online span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #48df9e;
}


/* Camera screen */

.camera-screen {
    position: relative;

    height: 270px;

    margin-top: 15px;

    border-radius: 11px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #174263,
            #071522 70%
        );
}

.camera-grid {
    position: absolute;

    inset: 0;

    opacity: 0.17;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.camera-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
}

.shield {
    width: 65px;
    height: 75px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    clip-path: polygon(
        50% 0,
        91% 17%,
        84% 67%,
        50% 100%,
        16% 67%,
        9% 17%
    );

    background: linear-gradient(
        145deg,
        var(--blue),
        var(--cyan)
    );

    color: white;

    font-size: 24px;

    box-shadow:
        0 0 30px rgba(21,151,255,0.5);
}

.camera-center strong {
    font-size: 12px;
    letter-spacing: 1.5px;
}

.camera-center small {
    margin-top: 3px;

    color: #8fa5b9;

    font-size: 9px;
}

.camera-time {
    position: absolute;

    left: 15px;
    bottom: 12px;

    color: rgba(255,255,255,0.45);

    font-size: 8px;
    letter-spacing: 1px;
}


/* Tech stats */

.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 12px;
}

.tech-stats div {
    padding: 12px;

    border-radius: 8px;

    background: rgba(255,255,255,0.035);

    border: 1px solid var(--border);
}

.tech-stats span {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
}

.tech-stats strong {
    display: block;

    font-size: 9px;
}

.tech-stats small {
    color: var(--muted);

    font-size: 7px;
}


/* Floating cards */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px 14px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 11px;

    background: rgba(9, 24, 40, 0.93);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.3);

    z-index: 3;

    animation: float 4s ease-in-out infinite;
}

.floating-card-one {
    top: 65px;
    right: -5px;
}

.floating-card-two {
    bottom: 60px;
    left: -25px;

    animation-delay: 1.5s;
}

.floating-icon {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(53,223,154,0.12);

    color: #35df9a;

    font-size: 13px;
}

.floating-icon.blue {
    background: rgba(21,151,255,0.12);
    color: var(--blue);
}

.floating-card strong {
    display: block;

    font-size: 9px;
}

.floating-card small {
    display: block;

    color: var(--muted);

    font-size: 8px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================
   SECTION TITLE
========================= */

.section-title {
    max-width: 680px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-title > span,
.section-label {
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -2px;
}

.section-title h2 strong {
    color: var(--blue);
}

.section-title p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================
   SERVICES
========================= */

.services {
    background: var(--dark-2);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}

.service-card {
    position: relative;

    padding: 30px;

    min-height: 290px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: rgba(255,255,255,0.025);

    overflow: hidden;

    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(21,151,255,0.3);

    background: rgba(21,151,255,0.035);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.2);
}

.service-card.featured {
    border-color: rgba(21,151,255,0.25);

    background:
        linear-gradient(
            145deg,
            rgba(21,151,255,0.11),
            rgba(255,255,255,0.02)
        );
}

.service-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: rgba(255,255,255,0.08);

    font-size: 12px;
    font-weight: 800;
}

.service-icon {
    width: 53px;
    height: 53px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 13px;

    background: rgba(21,151,255,0.08);

    font-size: 22px;
}

.service-card h3 {
    font-size: 18px;
}

.service-card p {
    min-height: 70px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 16px;

    color: #65bcff;

    font-size: 11px;
    font-weight: 700;
}

.service-card a span {
    transition: 0.3s;
}

.service-card a:hover span {
    transform: translateX(4px);
}

.featured-label {
    position: absolute;

    top: 0;
    right: 0;

    padding: 6px 11px;

    border-radius: 0 15px 0 9px;

    background: var(--blue);

    color: white;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.7px;
}


/* =========================
   ABOUT
========================= */

.about {
    background: var(--dark);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 100px;
}

.about-visual {
    position: relative;

    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-box {
    width: 310px;
    height: 310px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(21,151,255,0.2);
    border-radius: 30px;

    background:
        radial-gradient(
            circle,
            rgba(21,151,255,0.13),
            transparent 65%
        ),
        #0a1828;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.35);
}

.about-logo {
    width: 105px;
    height: 105px;

    display: grid;
    place-items: center;

    border-radius: 25px;

    background: linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    font-size: 28px;
    font-weight: 800;

    box-shadow:
        0 20px 50px rgba(21,151,255,0.3);
}

.about-lines {
    display: flex;
    gap: 5px;

    margin-top: 25px;
}

.about-lines span {
    width: 30px;
    height: 3px;

    border-radius: 10px;

    background: var(--blue);
}

.about-lines span:nth-child(2) {
    width: 15px;

    opacity: 0.5;
}

.about-lines span:nth-child(3) {
    width: 8px;

    opacity: 0.25;
}

.about-check {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #9ab1c6;

    font-size: 10px;
}

.about-check span {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(53,223,154,0.1);

    color: #35df9a;

    font-size: 9px;
}

.experience-card {
    position: absolute;

    right: 15px;
    bottom: 35px;

    padding: 15px 20px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #0c1d30;

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.experience-card strong {
    color: var(--blue);

    font-size: 17px;
}

.experience-card span {
    color: var(--muted);

    font-size: 9px;
}

.about-text h2 {
    max-width: 600px;

    margin-top: 12px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.about-text h2 strong {
    display: block;

    color: var(--blue);
}

.about-text > p {
    max-width: 620px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 35px;
}

.about-features > div {
    display: flex;
    gap: 10px;
}

.about-features > div > span {
    width: 21px;
    height: 21px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(21,151,255,0.1);

    color: var(--blue);

    font-size: 9px;
}

.about-features p {
    display: flex;
    flex-direction: column;

    color: var(--muted);

    font-size: 9px;
}

.about-features strong {
    margin-bottom: 2px;

    color: #dce8f3;

    font-size: 10px;
}

.authorized {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.authorized-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(21,151,255,0.1);

    border: 1px solid rgba(21,151,255,0.2);

    color: var(--blue);

    font-weight: 700;
}

.authorized span {
    display: block;

    color: var(--muted);

    font-size: 7px;
    letter-spacing: 1.5px;
}

.authorized strong {
    font-size: 11px;
}


/* =========================
   CTA
========================= */

.cta {
    position: relative;

    padding: 70px 0;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            #087bd6,
            #0b9de4
        );
}

.cta::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -100px;
    top: -200px;

    border-radius: 50%;

    border: 70px solid rgba(255,255,255,0.05);
}

.cta-content {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta .section-label {
    color: rgba(255,255,255,0.7);
}

.cta h2 {
    margin-top: 8px;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.cta h2 strong {
    color: #dff7ff;
}

.cta p {
    margin-top: 10px;

    color: rgba(255,255,255,0.75);

    font-size: 12px;
}

.cta-buttons {
    display: flex;
    gap: 10px;

    flex-shrink: 0;
}

.btn-white {
    background: white;

    color: #0878cf;
}

.btn-white:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.2);
}

.btn-dark {
    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(0,0,0,0.08);

    color: white;
}

.btn-dark:hover {
    background: rgba(0,0,0,0.15);
}


/* =========================
   CONTACT
========================= */

.contact {
    background: var(--dark-2);
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 25px;

    max-width: 1000px;

    margin: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255,255,255,0.025);

    transition: 0.3s;
}

.contact-card:hover {
    border-color: rgba(21,151,255,0.25);

    transform: translateX(4px);
}

.contact-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(21,151,255,0.09);

    color: var(--blue);

    font-size: 17px;
}

.contact-card div:nth-child(2) {
    flex: 1;
}

.contact-card span {
    display: block;

    color: var(--muted);

    font-size: 7px;
    letter-spacing: 1.3px;
}

.contact-card strong {
    display: block;

    margin-top: 2px;

    color: #dce9f4;

    font-size: 11px;
}

.contact-card > b {
    color: var(--muted);

    font-size: 14px;
}


/* Contact box */

.contact-box {
    position: relative;

    padding: 35px;

    border: 1px solid rgba(21,151,255,0.2);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(21,151,255,0.15),
            transparent 45%
        ),
        #0b1b2d;

    overflow: hidden;
}

.contact-box-top {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 9px;
    letter-spacing: 1px;
}

.contact-box-top div {
    display: flex;
    align-items: center;

    gap: 6px;
}

.online-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #35df9a;

    box-shadow: 0 0 8px #35df9a;
}

.contact-box h3 {
    max-width: 450px;

    margin-top: 55px;

    font-size: 35px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.contact-box h3 span {
    color: var(--blue);
}

.contact-box > p {
    max-width: 450px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;
}

.contact-call {
    max-width: 360px;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding: 15px;

    border: 1px solid rgba(21,151,255,0.2);
    border-radius: 9px;

    background: rgba(21,151,255,0.06);

    color: #cfeaff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.contact-call:hover {
    background: var(--blue);

    border-color: var(--blue);

    color: white;
}

.contact-call span {
    font-size: 17px;
}

.contact-call b {
    margin-left: auto;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #050c15;

    padding-top: 65px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 290px;

    margin-top: 17px;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.7;
}

.footer-menu {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-menu strong {
    margin-bottom: 6px;

    color: #dce7f2;

    font-size: 10px;
}

.footer-menu a,
.footer-menu span {
    color: var(--muted);

    font-size: 9px;

    transition: 0.3s;
}

.footer-menu a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid var(--border);

    color: #56687b;

    font-size: 8px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
    }

    .header-phone {
        display: none;
    }

    .hero-content {
        gap: 40px;
    }

    .about-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;

        top: 82px;
        left: 5%;

        width: 90%;

        padding: 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        border: 1px solid var(--border);
        border-radius: 12px;

        background: #091525;

        box-shadow:
            0 20px 40px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 470px;

        margin-top: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 560px) {

    .logo {
        min-width: auto;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text strong {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        gap: 14px;
    }

    .tech-card {
        transform: none;
    }

    .floating-card-one {
        top: 30px;
        right: -5px;
    }

    .floating-card-two {
        left: -5px;
        bottom: 25px;
    }

    .camera-screen {
        height: 230px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-box {
        width: 270px;
        height: 270px;
    }

    .experience-card {
        right: 0;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-box {
        padding: 25px;
    }

    .contact-box h3 {
        margin-top: 40px;

        font-size: 29px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;

        align-items: flex-start;
    }

}