:root {
    --bg: #0a0a0f;
    --surface: #121218;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #00d4ff;
    --accent2: #47c8ff;
    --accent3: #ff4787;
    --text: #f0f0f0;
    --muted: #888888;
    --card: #151520;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

@media (hover: none) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-trail {
        display: none !important;
    }

    button,
    a {
        cursor: pointer;
    }
}

/* CURSOR */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-trail {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(232, 255, 71, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: left 0.12s ease, top 0.12s ease;
}

/* NOISE */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: 1000;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav.scrolled {
    padding: 12px 48px;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08);
    animation: glow-navbar 3s ease-in-out infinite;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInLeft 0.6s ease-out 0.1s backwards;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(71, 200, 255, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 1px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.logo:hover::before {
    opacity: 1;
}

.logo:hover::after {
    width: 100%;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: inline-block;
    animation: spin-slow 8s linear infinite, icon-pulse 3s ease-in-out infinite;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.2));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 12px rgba(255, 255, 255, 0.1);
}

@keyframes icon-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 28px rgba(0, 212, 255, 0.35));
    }
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.3));
    animation: spin-slow 3s linear infinite, icon-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 50px rgba(0, 212, 255, 0.3), inset 0 0 12px rgba(255, 255, 255, 0.15);
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow-navbar {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    }
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    animation: fadeInDown 0.6s ease-out 0.2s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.nav-cta {
    background: var(--accent);
    color: #ffffff;
    padding: 12px 28px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.6s ease-out 0.3s backwards;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 212, 255, 0.5), inset 0 0 12px rgba(0, 212, 255, 0.2);
}

.nav-cta:hover::before {
    left: 100%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 600;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(16px);
    z-index: 490;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mob-cta {
    background: var(--accent);
    color: #ffffff;
    padding: 14px 40px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    margin-top: 8px;
    cursor: pointer;
}

/* MOBILE DROPDOWN STYLES */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 320px;
    width: 100%;
}

.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.mobile-dropdown-toggle.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    margin-top: 8px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu .mob-link {
    display: block;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.mobile-dropdown-menu .mob-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    padding-left: 24px;
}

.mobile-menu .btn-submit {
    margin-top: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-menu .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* HERO */
.hero {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: auto;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-slide {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 48px 60px;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 20, 40, 0.6) 100%);
    z-index: 1;
}

.hero-slide > * {
    position: relative;
    z-index: 2;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
}

.slide-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    border: 2px solid rgba(0, 212, 255, 0.4);
    padding: 12px 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    background: rgba(0, 212, 255, 0.08);
    border-radius: 50px;
    margin-top: 20px
}

.slide-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
    animation: pulse-badge 1.5s ease infinite;

}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.slide-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(80px, 8vw, 200px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slide-in 0.8s ease-out forwards;
    font-weight: 900;
    text-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-subtitle {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    animation: slide-in 0.8s ease-out 0.1s forwards;
    opacity: 0;
    letter-spacing: 0.3px;
}

.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: slide-in 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.slider-dots {
    display: none;
    gap: 14px;
    margin-top: 48px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    transform: scale(1.4);
}

.dot:hover {
    background: var(--accent);
    opacity: 0.8;
}

.slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    color: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.slider-btn:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: scale(1.1);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(80px);
    }
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 255, 71, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: glow-pulse 4s ease-in-out infinite;
}

.hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(71, 200, 255, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: 30%;
    animation: glow-pulse 6s ease-in-out infinite reverse;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(232, 255, 71, 0.3);
    padding: 6px 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fade-up 0.8s ease 0.2s forwards;
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(72px, 13vw, 180px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fade-up 0.8s ease 0.4s forwards;
}

.hero-title span {
    color: var(--accent);
}

.hero-title .outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.65;
    margin-top: 24px;
    font-weight: 300;
    opacity: 0;
    animation: fade-up 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s ease 1s forwards;
    position: relative;
    z-index: 10;
    margin-left: 48px;
    margin-right: 48px;
    margin-bottom:20px
}

.stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* BUTTONS */
.btn-primary {
    background: var(--accent);
    color: #ffffff;
    padding: 15px 32px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 15px 32px;
    font-size: 13px;
    letter-spacing: 0.04em;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-dark {
    background: #1a1a23;
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.2s;
}

.btn-dark:hover {
    background: #2a2a35;
    transform: translateY(-2px);
}

/* MARQUEE */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    background: rgba(232, 255, 71, 0.02);
}

.marquee-track {
    display: flex;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.marquee-item::after {
    content: '◆';
    color: var(--accent);
    font-size: 11px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
.section {
    padding: 100px 48px;
}

.process-section {
    padding: 100px 48px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 56px;
}

.section-title .dim {
    color: rgba(240, 240, 240, 0.2);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--card);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: #1f1f2a;
}

.service-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0.6;
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
}

.service-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    padding-bottom: 40px;
}

.service-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--muted);
    transition: all 0.3s;
}

.service-card:hover .service-arrow {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: rotate(-45deg);
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 44px;
}

.pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 7px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.pill:hover {
    background: rgba(232, 255, 71, 0.08);
    border-color: rgba(232, 255, 71, 0.3);
    color: var(--accent);
}

/* PROCESS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
    opacity: 0.3;
}

.process-step {
    padding: 0 28px;
}

.step-num {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.process-step:hover .step-num {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
}

.project-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:first-child {
    grid-row: span 2;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:first-child .project-visual {
    height: 340px;
}

.pv-1 {
    background: linear-gradient(135deg, #0d1a0d, #1a3d1a);
}

.pv-2 {
    background: linear-gradient(135deg, #0a0d1a, #141a3d);
}

.pv-3 {
    background: linear-gradient(135deg, #1a0d16, #3d1a2a);
}

.project-visual-text {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 800;
    opacity: 0.08;
    letter-spacing: -0.03em;
    user-select: none;
    color: #fff;
}

.project-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(232, 255, 71, 0.3);
    padding: 4px 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-info {
    padding: 22px 26px;
}

.project-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.project-client {
    font-size: 13px;
    color: var(--muted);
}

/* CONTACT */
.contact-section {
    padding: 100px 48px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 255, 71, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.contact-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.contact-info p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 380px;
}

.contact-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif;
}

.contact-detail:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 15px;
}

.detail-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.detail-value {
    font-size: 14px;
    color: var(--text);
}

/* FORM WRAPPER */
.form-border {
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-field {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.2s;
}

.form-field:nth-child(even) {
    border-right: none;
}

.form-field.span2 {
    grid-column: span 2;
    border-right: none;
}

.form-field:last-of-type {
    border-bottom: none;
}

.form-field:focus-within {
    background: #1f1f2a;
}

.form-field label {
    display: block;
    padding: 14px 20px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 6px 20px 14px;
    resize: none;
}

.form-field select {
    appearance: none;
    cursor: pointer;
}

.form-field select option {
    background: var(--card);
}

.form-field textarea {
    min-height: 130px;
    line-height: 1.6;
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 0;
    gap: 16px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.btn-submit {
    background: var(--accent);
    color: #ffffff;
    padding: 12px 28px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-submit:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 212, 255, 0.5), inset 0 0 12px rgba(0, 212, 255, 0.2);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit span {
    position: relative;
    z-index: 1;
}

.field-error input,
.field-error select,
.field-error textarea {
    color: var(--accent3);
}

.field-error {
    background: rgba(255, 71, 135, 0.05) !important;
}

/* SUCCESS */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    border: 1px solid rgba(232, 255, 71, 0.2);
    background: rgba(232, 255, 71, 0.03);
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 255, 71, 0.1);
    border: 1px solid rgba(232, 255, 71, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.success-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--accent);
    margin-bottom: 10px;
}

.success-sub {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 120px 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: cta-bg-shift 8s ease-in-out infinite;
}

@keyframes cta-bg-shift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        opacity: 1;
    }
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.cta-particle:nth-child(2n) {
    width: 6px;
    height: 6px;
    animation-duration: 8s;
    animation-delay: -2s;
}

.cta-particle:nth-child(3n) {
    width: 3px;
    height: 3px;
    animation-duration: 10s;
    animation-delay: -4s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px) scale(1.1);
        opacity: 0.9;
    }
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: shape-rotate 20s linear infinite;
}

.cta-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.cta-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    border-radius: 50%;
    animation-delay: -5s;
}

.cta-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -10s;
}

.cta-shape:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    transform: rotate(45deg);
    animation-delay: -15s;
}

@keyframes shape-rotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.1);
    }
}

.cta-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 22vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.08);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
    animation: text-glow 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 60px rgba(255, 255, 255, 0.2), 0 0 80px rgba(255, 255, 255, 0.1);
        transform: scale(1.02);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: content-slide-up 1s ease-out;
}

@keyframes content-slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(56px, 9vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: title-shine 3s ease-in-out infinite;
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: title-underline 2s ease-in-out infinite;
}

@keyframes title-shine {
    0%, 100% {
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

@keyframes title-underline {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        opacity: 1;
    }
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0 auto 40px;
    animation: sub-fade-in 1s ease-out 0.3s both;
}

@keyframes sub-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section .btn-dark {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    padding: 18px 40px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: button-pulse 2s ease-in-out infinite;
}

.cta-section .btn-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-section .btn-dark:hover {
    background: #ffffff;
    color: var(--accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    animation: none;
}

.cta-section .btn-dark:hover::before {
    left: 100%;
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.1);
    }
}

/* FOOTER */
footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -28px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
    filter: blur(14px);
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.footer-logo {
    position: relative;
    z-index: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    color: #f5f7ff;
}

.footer-logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.footer-links {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.95), rgba(135, 0, 255, 0.7));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.footer-copy {
    position: relative;
    z-index: 1;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 10px;
    line-height: 1.7;
    max-width: 420px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* ANIMATIONS */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
    nav {
        padding: 18px 32px;
    }

    .hero {
        padding: 100px 32px 72px;
    }

    .section,
    .process-section,
    .contact-section,
    .cta-section {
        padding: 80px 32px;
    }

    footer {
        padding: 36px 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .contact-grid {
        gap: 48px;
    }

    .nav-links {
        gap: 22px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav {
        padding: 16px 24px;
    }

    .hero {
        padding: 86px 24px 60px;
    }

    .hero-slider {
        min-height: calc(100vh - 86px);
    }

    .hero-slide {
        background-attachment: scroll;
        min-height: calc(100vh - 86px);
        background-position: center top;
        padding: 60px 20px 40px;
    }

    .slide-title {
        font-size: clamp(38px, 10vw, 60px);
        margin-bottom: 24px;
    }

    .slide-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .slide-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        gap: 28px;
    }

    .stat-num {
        font-size: 32px;
    }

    .section,
    .process-section,
    .contact-section,
    .cta-section {
        padding: 64px 24px;
    }

    footer {
        padding: 32px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .process-step {
        padding: 0 8px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card:first-child {
        grid-row: auto;
    }

    .project-card:first-child .project-visual {
        height: 220px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-field {
        border-right: none !important;
    }

    .form-field.span2 {
        grid-column: span 1;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    nav > .btn-submit {
        display: none;
    }

    .btn-submit {
        justify-content: center;
    }

    .mobile-menu a {
        font-size: 38px;
    }

    .footer-links {
        gap: 14px;
    }

    .cta-bg-text {
        font-size: 32vw;
    }

    nav {
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 76px 20px 52px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 36px;
        margin-bottom:20px
    }

    .section,
    .process-section,
    .contact-section,
    .cta-section {
        padding: 52px 20px;
    }

    footer {
        padding: 28px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .process-step {
        padding: 0;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit {
        justify-content: center;
    }

    .mobile-menu a {
        font-size: 38px;
    }

    .footer-links {
        gap: 14px;
    }

    .cta-bg-text {
        font-size: 32vw;
    }

    nav {
        padding: 14px 20px;
    }
}

                .dropdown {
                    position: relative;
                }
        
                .dropdown-toggle {
                    background: none;
                    border: none;
                    color: inherit;
                    cursor: pointer;
                    font-family: inherit;
                    font-size: inherit;
                    padding: 0;
                    transition: color 0.3s ease;
                }
        
                .dropdown-toggle:hover {
                    color: #00d4ff;
                }
        
                .dropdown-menu {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    list-style: none;
                    background: rgba(15, 23, 42, 0.95);
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 0.5rem;
                    margin-top: 0.5rem;
                    padding: 0.5rem 0;
                    min-width: 180px;
                    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
                    backdrop-filter: blur(10px);
                    z-index: 1000;
                }
        
                .dropdown-menu li {
                    margin: 0;
                }
        
                .dropdown-menu a {
                    display: block;
                    padding: 0.75rem 1rem;
                    color: rgba(255, 255, 255, 0.8);
                    text-decoration: none;
                    transition: all 0.2s ease;
                }
        
                .dropdown-menu a:hover {
                    background: rgba(0, 212, 255, 0.1);
                    color: #00d4ff;
                    padding-left: 1.25rem;
                }
        
                .dropdown.active .dropdown-menu {
                    display: block;
                }

                                   body {
                                       font-family: 'Plus Jakarta Sans', sans-serif;
                                       background: #0a0e17;
                                       color: #f8fafc;
                                   }
                
                                   .glass-card {
                                       background: rgba(15, 23, 42, 0.72);
                                       border: 1px solid rgba(255, 255, 255, 0.08);
                                       backdrop-filter: blur(18px);
                                   }
                
                                   .accent-gradient {
                                       background: linear-gradient(90deg, #8b5cf6, #ec4899, #f59e0b);
                                       -webkit-background-clip: text;
                                       -webkit-text-fill-color: transparent;
                                   }
                
                                   .metric-box {
                                       border-radius: 1.5rem;
                                       border: 1px solid rgba(255, 255, 255, 0.1);
                                       background: rgba(15, 23, 42, 0.9);
                                       padding: 1.5rem;
                                       overflow: hidden;
                                   }
                
                                   .metric-box p {
                                       overflow-wrap: break-word;
                                       word-break: break-word;
                                   }
                
                                   .metric-box p[class*="text-2xl"],
                                   .metric-box p[class*="text-3xl"] {
                                       font-size: clamp(1.25rem, 4vw, 1.875rem);
                                       line-height: 1.2;
                                   }
                
                                   .timeline-item {
                                       display: flex;
                                       gap: 1rem;
                                       padding: 1rem;
                                       border-radius: 1rem;
                                       background: rgba(15, 23, 42, 0.9);
                                       border: 1px solid rgba(255, 255, 255, 0.08);
                                   }
                
                                   .timeline-dot {
                                       width: 2rem;
                                       height: 2rem;
                                       border-radius: 50%;
                                       flex-shrink: 0;
                                       display: flex;
                                       align-items: center;
                                       justify-content: center;
                                       font-size: 0.75rem;
                                       font-weight: bold;
                                   }
                
                                   .timeline-dot.active {
                                       background: rgba(139, 92, 246, 0.3);
                                       color: #a78bfa;
                                       border: 1px solid rgba(139, 92, 246, 0.5);
                                   }
                
                                   .timeline-dot.completed {
                                       background: rgba(34, 197, 94, 0.3);
                                       color: #22c55e;
                                       border: 1px solid rgba(34, 197, 94, 0.5);
                                   }

                                                                         body {
                                                                             font-family: 'Plus Jakarta Sans', sans-serif;
                                                                             background: #05070e;
                                                                             color: #f8fafc;
                                                                         }
                                    
                                                                         .glass-card {
                                                                             background: rgba(15, 23, 42, 0.72);
                                                                             border: 1px solid rgba(255, 255, 255, 0.08);
                                                                             backdrop-filter: blur(18px);
                                                                         }
                                    
                                                                         .accent-gradient {
                                                                             background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
                                                                             -webkit-background-clip: text;
                                                                             -webkit-text-fill-color: transparent;
                                                                         }
                                    
                                                                         .metric-pill {
                                                                             min-width: 4rem;
                                                                             padding: 0.45rem 0.9rem;
                                                                             border-radius: 9999px;
                                                                             border: 1px solid rgba(255, 255, 255, 0.12);
                                                                             background: rgba(255, 255, 255, 0.04);
                                                                         }
                                    
                                                                         .bar-track {
                                                                             height: 10px;
                                                                             border-radius: 999px;
                                                                             background: rgba(255, 255, 255, 0.08);
                                                                             overflow: hidden;
                                                                         }
                                    
                                                                         .bar-fill {
                                                                             height: 100%;
                                                                             border-radius: 999px;
                                                                             background: linear-gradient(90deg, #22c55e, #14b8a6);
                                                                         }


                                                                                                                                                         body {
                                                                                                                                                             font-family: 'Plus Jakarta Sans', sans-serif;
                                                                                                                                                             background: #0a0e17;
                                                                                                                                                             color: #f8fafc;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .glass-card {
                                                                                                                                                             background: rgba(15, 23, 42, 0.72);
                                                                                                                                                             border: 1px solid rgba(255, 255, 255, 0.08);
                                                                                                                                                             backdrop-filter: blur(18px);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .canvas-area {
                                                                                                                                                             border: 2px dashed rgba(255, 255, 255, 0.2);
                                                                                                                                                             border-radius: 1.5rem;
                                                                                                                                                             background: rgba(255, 255, 255, 0.02);
                                                                                                                                                             display: flex;
                                                                                                                                                             align-items: center;
                                                                                                                                                             justify-content: center;
                                                                                                                                                             min-height: 400px;
                                                                                                                                                             position: relative;
                                                                                                                                                             overflow: auto;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .canvas-area canvas {
                                                                                                                                                             max-width: 100%;
                                                                                                                                                             max-height: 400px;
                                                                                                                                                             border-radius: 1rem;
                                                                                                                                                             box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .canvas-area img {
                                                                                                                                                             max-width: 100%;
                                                                                                                                                             max-height: 400px;
                                                                                                                                                             border-radius: 1rem;
                                                                                                                                                             box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .control-slider {
                                                                                                                                                             width: 100%;
                                                                                                                                                             height: 6px;
                                                                                                                                                             border-radius: 999px;
                                                                                                                                                             background: rgba(255, 255, 255, 0.1);
                                                                                                                                                             outline: none;
                                                                                                                                                             -webkit-appearance: none;
                                                                                                                                                             appearance: none;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .control-slider::-webkit-slider-thumb {
                                                                                                                                                             -webkit-appearance: none;
                                                                                                                                                             appearance: none;
                                                                                                                                                             width: 18px;
                                                                                                                                                             height: 18px;
                                                                                                                                                             border-radius: 50%;
                                                                                                                                                             background: linear-gradient(90deg, #06b6d4, #0ea5e9);
                                                                                                                                                             cursor: pointer;
                                                                                                                                                             box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .control-slider::-moz-range-thumb {
                                                                                                                                                             width: 18px;
                                                                                                                                                             height: 18px;
                                                                                                                                                             border-radius: 50%;
                                                                                                                                                             background: linear-gradient(90deg, #06b6d4, #0ea5e9);
                                                                                                                                                             cursor: pointer;
                                                                                                                                                             border: none;
                                                                                                                                                             box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .upload-zone {
                                                                                                                                                             border: 2px dashed rgba(106, 182, 212, 0.5);
                                                                                                                                                             border-radius: 1rem;
                                                                                                                                                             padding: 2rem;
                                                                                                                                                             text-align: center;
                                                                                                                                                             cursor: pointer;
                                                                                                                                                             transition: all 0.3s ease;
                                                                                                                                                             background: rgba(6, 182, 212, 0.05);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .upload-zone:hover {
                                                                                                                                                             border-color: rgba(6, 182, 212, 0.8);
                                                                                                                                                             background: rgba(6, 182, 212, 0.1);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .upload-zone.active {
                                                                                                                                                             border-color: rgba(34, 197, 94, 0.8);
                                                                                                                                                             background: rgba(34, 197, 94, 0.1);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .btn-primary {
                                                                                                                                                             background: linear-gradient(90deg, #06b6d4, #0ea5e9);
                                                                                                                                                             color: white;
                                                                                                                                                             padding: 0.75rem 1.5rem;
                                                                                                                                                             border-radius: 0.75rem;
                                                                                                                                                             border: none;
                                                                                                                                                             font-weight: 600;
                                                                                                                                                             cursor: pointer;
                                                                                                                                                             transition: all 0.3s ease;
                                                                                                                                                             box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .btn-primary:hover:not(:disabled) {
                                                                                                                                                             transform: translateY(-2px);
                                                                                                                                                             box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .btn-primary:disabled {
                                                                                                                                                             opacity: 0.5;
                                                                                                                                                             cursor: not-allowed;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .btn-secondary {
                                                                                                                                                             background: rgba(255, 255, 255, 0.1);
                                                                                                                                                             color: white;
                                                                                                                                                             padding: 0.75rem 1.5rem;
                                                                                                                                                             border-radius: 0.75rem;
                                                                                                                                                             border: 1px solid rgba(255, 255, 255, 0.2);
                                                                                                                                                             font-weight: 600;
                                                                                                                                                             cursor: pointer;
                                                                                                                                                             transition: all 0.3s ease;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .btn-secondary:hover:not(:disabled) {
                                                                                                                                                             background: rgba(255, 255, 255, 0.15);
                                                                                                                                                             border-color: rgba(255, 255, 255, 0.4);
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .btn-secondary:disabled {
                                                                                                                                                             opacity: 0.5;
                                                                                                                                                             cursor: not-allowed;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .stat-box {
                                                                                                                                                             border-radius: 1rem;
                                                                                                                                                             border: 1px solid rgba(255, 255, 255, 0.1);
                                                                                                                                                             background: rgba(15, 23, 42, 0.9);
                                                                                                                                                             padding: 1rem;
                                                                                                                                                         }
                                                                            
                                                                                                                                                         .compression-badge {
                                                                                                                                                             display: inline-block;
                                                                                                                                                             background: rgba(34, 197, 94, 0.2);
                                                                                                                                                             border: 1px solid rgba(34, 197, 94, 0.5);
                                                                                                                                                             color: #86efac;
                                                                                                                                                             padding: 0.5rem 1rem;
                                                                                                                                                             border-radius: 0.5rem;
                                                                                                                                                             font-weight: 600;
                                                                                                                                                             font-size: 0.875rem;
                                                                                                                                                         }


                                                                                                                                                          body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #0a0e17;
            color: #f8fafc;
        }

        .glass-card {
            background: rgba(15, 23, 42, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(18px);
        }

        .canvas-area {
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .canvas-area canvas {
            max-width: 100%;
            max-height: 500px;
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .control-slider {
            width: 100%;
            height: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .control-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: linear-gradient(90deg, #06b6d4, #0ea5e9);
            cursor: pointer;
            box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
        }

        .control-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: linear-gradient(90deg, #06b6d4, #0ea5e9);
            cursor: pointer;
            border: none;
            box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
        }

        .upload-zone {
            border: 2px dashed rgba(106, 182, 212, 0.5);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(6, 182, 212, 0.05);
        }

        .upload-zone:hover {
            border-color: rgba(6, 182, 212, 0.8);
            background: rgba(6, 182, 212, 0.1);
        }

        .upload-zone.active {
            border-color: rgba(34, 197, 94, 0.8);
            background: rgba(34, 197, 94, 0.1);
        }

        .btn-primary {
            background: linear-gradient(90deg, #06b6d4, #0ea5e9);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .stat-box {
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(15, 23, 42, 0.9);
            padding: 1rem;
        }


                 body {
                     font-family: 'Plus Jakarta Sans', sans-serif;
                     background: #0a0e17;
                     color: #f8fafc;
                 }
        
                 .glass-card {
                     background: rgba(15, 23, 42, 0.72);
                     border: 1px solid rgba(255, 255, 255, 0.08);
                     backdrop-filter: blur(18px);
                 }
        
                 .accent-gradient {
                     background: linear-gradient(90deg, #06b6d4, #0ea5e9, #6366f1);
                     -webkit-background-clip: text;
                     -webkit-text-fill-color: transparent;
                 }
        
                 .status-badge {
                     display: inline-flex;
                     align-items: center;
                     gap: 0.5rem;
                     padding: 0.5rem 1rem;
                     border-radius: 9999px;
                     font-size: 0.875rem;
                     font-weight: 600;
                 }
        
                 .status-approved {
                     background: rgba(34, 197, 94, 0.15);
                     color: #22c55e;
                     border: 1px solid rgba(34, 197, 94, 0.3);
                 }
        
                 .status-pending {
                     background: rgba(234, 179, 8, 0.15);
                     color: #eab308;
                     border: 1px solid rgba(234, 179, 8, 0.3);
                 }
        
                 .status-declined {
                     background: rgba(239, 68, 68, 0.15);
                     color: #ef4444;
                     border: 1px solid rgba(239, 68, 68, 0.3);
                 }
        
                 .metric-tile {
                     border-radius: 1.5rem;
                     border: 1px solid rgba(255, 255, 255, 0.1);
                     background: rgba(15, 23, 42, 0.9);
                     padding: 1.5rem;
                 }