:root {

    --bg-primary: #13171C;
    --bg-secondary: #0f1215;
    --bg-card: #1a1f25;
    --bg-card-hover: #232a32;


    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
    --glass-blur: 20px;

    --text-primary: #ffffff;
    --text-secondary: #acacac;
    --text-muted: #6E6E6E;


    --accent: #A129FF;
    --accent-light: #B84DFF;
    --accent-dark: #8A1FE0;
    --accent-glow: rgba(161, 41, 255, 0.4);


    --secondary: #00D4FF;
    --secondary-glow: rgba(0, 212, 255, 0.3);


    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;


    --section-padding: 140px;
    --container-width: 1400px;


    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 44px;
    --radius-full: 100px;


    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.5s;
    --duration-slow: 0.8s;
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    transition: all var(--duration-fast) var(--ease-out);
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.glass-circle {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
}

.glass-circle:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.glass-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-input {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 30px rgba(161, 41, 255, 0.15);
}

.glass-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-header {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled.glass-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.glass-avatar {
    background: linear-gradient(135deg, rgba(161, 41, 255, 0.3), rgba(161, 41, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(161, 41, 255, 0.3);
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a,
button {
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}


.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: rgba(161, 41, 255, 0.1);
}


.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 20px;
}

.preloader-logo-wrap {
    animation: fadeInDown 0.8s var(--ease-out);
}

.preloader-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.spinner-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(161, 41, 255, 0.1);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.floating-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    z-index: 100;
    box-shadow: 0 0 60px var(--accent-glow);
}

.floating-btn-icon {
    font-size: 22px;
    display: flex;
}

.floating-btn-text {
    font-size: 14px;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled .header-container {
    max-width: 1100px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: 12px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(161, 41, 255, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--duration-fast) var(--ease-out);
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.header-cta i {
    font-size: 18px;
    transition: transform var(--duration-fast);
}

.header-cta:hover i {
    transform: translateX(4px);
}

.menu-toggle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--duration-fast) var(--ease-out);
}

.menu-toggle-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 22px;
}

.menu-toggle-inner span {
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-out);
}

.menu-toggle-inner span:first-child {
    width: 100%;
}

.menu-toggle-inner span:last-child {
    width: 60%;
}

.menu-toggle.active .menu-toggle-inner span:first-child {
    transform: rotate(45deg) translateY(5.5px);
}

.menu-toggle.active .menu-toggle-inner span:last-child {
    width: 100%;
    transform: rotate(-45deg) translateY(-5.5px);
}


.nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-width: none !important;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
    transform: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav.active {
    opacity: 1;
    visibility: visible;
}

.nav-content {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    margin-top: 60px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.nav-list li {
    width: 100%;
    text-align: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    transition: all var(--duration-fast) var(--ease-out);
    opacity: 0;
    transform: translateY(60px);
}

.nav.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-link::before {
    content: attr(data-index);
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration-normal) var(--ease-out) 0.4s;
}

.nav.active .nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.nav-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.nav-social a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 22px;
    transition: all var(--duration-fast);
}

.nav-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.nav-footer p {
    color: var(--text-muted);
    font-size: 14px;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}


.mountain-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.mountain-bg svg {
    width: 100%;
    height: 100%;
}

.mountain-line {
    animation: mountainGlow 8s ease-in-out infinite;
}

.mountain-2 {
    animation-delay: -4s;
}

@keyframes mountainGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-mountain-bg,
.section-mountain-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.section-mountain-right {
    left: auto;
    right: 0;
    width: 50%;
    transform: scaleX(-1);
}


.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: blobMove 20s ease-in-out infinite;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
    top: -250px;
    right: -150px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary) 0%, #3B82F6 100%);
    bottom: -200px;
    left: -200px;
    animation-delay: -7s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary) 100%);
    top: 40%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(60px, -60px) scale(1.1);
    }

    50% {
        transform: translate(-40px, 40px) scale(0.9);
    }

    75% {
        transform: translate(50px, 30px) scale(1.05);
    }
}


.hero-floating {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
}

.float-2 {
    bottom: 18%;
    left: 6%;
    width: 90px;
    height: 90px;
    animation-delay: -2s;
}

.float-3 {
    top: 50%;
    right: 5%;
    width: 80px;
    height: 80px;
    animation-delay: -4s;
}

.float-4 {
    top: 18%;
    left: 12%;
    width: 60px;
    height: 60px;
    animation-delay: -1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-mountain {
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 60px 0;
}

.hero-desc {
    max-width: 400px;
}

.hero-desc p {
    margin-bottom: 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}



.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(56px, 13vw, 160px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -6px;
}

.title-line {
    display: block;
    overflow: hidden;
    padding: 5px 0;
}

.title-word {
    display: inline-block;
}

.title-word .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.title-highlight {
    background: var(--accent);
    padding: 0 24px;
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: 0 0 80px var(--accent-glow);
}

.hero-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
}

.hero-desc p {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 420px;
    line-height: 1.8;
}


.hero-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.hero-bento-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.hero-bento-card:first-child {
    justify-content: center;
    position: relative;
}

.bento-icon {
    width: 100px;
    height: 100px;
    color: var(--text-secondary);
    font-size: 8px;
}

.bento-icon svg {
    width: 100%;
    height: 100%;
}

.rotating {
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bento-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    font-size: 22px;
    color: white;
    box-shadow: 0 0 30px var(--accent-glow);
}

.hero-showreel {
    cursor: pointer;
}

.showreel-play {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    font-size: 22px;
    color: white;
    transition: transform var(--duration-fast);
}

.hero-showreel:hover .showreel-play {
    transform: scale(1.1);
}

.hero-showreel span {
    font-weight: 600;
    font-size: 15px;
}

.hero-clients {
    flex-direction: column;
    gap: 12px;
}

.clients-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    font-size: 20px;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--accent);
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.hero-clients span {
    font-size: 13px;
    color: var(--text-secondary);
}


.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


.marquee-section {
    padding: 35px 0;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 12px !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-reverse .marquee-content {
    animation-direction: reverse;
}


.stats {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(120px, 25vw, 300px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.stats-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bento-item {
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.bento-main {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-main .card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-label {
    color: var(--accent);
    margin-bottom: 24px;
    width: fit-content;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.05;
}

.text-accent {
    color: var(--accent);
}

.card-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.card-location {
    color: var(--text-secondary);
    width: fit-content;
}

.card-location i {
    color: var(--accent);
}


.bento-stat {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent);
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--duration-normal) var(--ease-out);
}

.bento-stat:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(161, 41, 255, 0.2);
}

.stat-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-plus {
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.bento-feature {
    align-items: center;
    text-align: center;
    padding: 28px 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--duration-fast);
}

.bento-feature:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(0, 212, 255, 0.15);
}

.bento-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.bento-feature p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}



.bento-cta {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.bento-cta h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.bento-cta .btn-primary {
    background: white;
    color: var(--accent);
}


.horizontal-text {
    padding: 80px 0;
    overflow: hidden;
}

.horizontal-text-inner {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    will-change: transform;
}

.horizontal-text-inner span {
    font-family: var(--font-heading);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.text-outline {
    -webkit-text-stroke: 2px var(--text-primary);
    -webkit-text-fill-color: transparent;
}


.work {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-label {
    color: var(--accent);
    margin-bottom: 20px;
    width: fit-content;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
}

.work-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.work-bento-item {
    border-radius: var(--radius-xl);
    padding: 36px;
}

.work-main {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.work-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.work-client {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: white;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.client-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.work-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 11px;
    color: var(--text-secondary);
}

.work-quote {
    flex: 1;
    position: relative;
    padding-left: 40px;
    margin-bottom: 28px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: var(--accent);
}

.work-quote blockquote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

.work-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.work-rating .stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
    margin-bottom: 4px;
    font-size: 16px;
}

.work-rating span {
    font-size: 12px;
    color: var(--text-muted);
}

.work-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--duration-fast);
}

.work-link:hover {
    gap: 14px;
}


.work-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.preview-image {
    width: 70px;
    height: 70px;
}

.preview-image img {
    width: 100%;
    height: 100%;
}

.preview-info h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.preview-info span {
    font-size: 12px;
    color: var(--text-secondary);
}


.work-new {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.new-project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: white;
}

.new-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 36px;
    margin-bottom: 20px;
}

.new-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.new-project-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.new-project-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 14px;
}

.work-new .glass-btn-outline {
    border-color: white;
    color: white;
}

.work-new .glass-btn-outline:hover {
    background: white;
    color: var(--accent);
}


.services {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.service-bento-item {
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.service-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.service-large .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent);
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: all var(--duration-normal);
}

.service-large:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(161, 41, 255, 0.2);
}

.service-large .service-content {
    flex: 1;
}

.service-large .service-number {
    margin-bottom: 16px;
    color: var(--accent);
}

.service-large h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-large p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-tags .glass-pill {
    font-size: 11px;
}

.service-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    font-size: 22px;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all var(--duration-fast);
}

.service-large:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--accent);
    border-color: var(--accent);
}


.service-medium {
    display: flex;
    flex-direction: column;
}

.service-medium .service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-medium .service-number {
    margin-bottom: 12px;
    color: var(--accent);
}

.service-medium h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-medium p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.service-small {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.service-icon-small {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.2);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.service-small-content {
    flex: 1;
}

.service-small-content .service-number {
    margin-bottom: 6px;
    color: var(--accent);
}

.service-small h4 {
    font-size: 15px;
    font-weight: 700;
}


.service-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--duration-fast);
}

.service-view-all:hover {
    gap: 16px;
}

.service-view-all i {
    font-size: 20px;
    color: var(--accent);
}


.why-us {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.why-item {
    border-radius: var(--radius-xl);
    padding: 32px;
}

.why-large {
    grid-column: span 2;
    grid-row: span 2;
}

.why-large .why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent);
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.why-large h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.why-large p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.why-stats {
    display: flex;
    gap: 16px;
}

.why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
}

.why-stat span {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
}

.why-stat small {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}


.why-medium .why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.why-medium h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-medium p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.why-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
    gap: 12px;
}

.why-small i {
    font-size: 32px;
    color: var(--accent);
}

.why-small span {
    font-size: 13px;
    font-weight: 600;
}


.contact {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card a,
.contact-card span {
    font-size: 15px;
    color: var(--text-primary);
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--text-secondary);
}

.social-link:hover {
    color: white;
}


.contact-form-card {
    border-radius: var(--radius-xl);
    padding: 44px;
    position: relative;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    font-size: 14px;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--accent);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--duration-fast) var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-primary i {
    font-size: 20px;
    transition: transform var(--duration-fast);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--duration-fast) var(--ease-out);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}


.footer-marquee {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.footer-marquee .marquee-content span {
    font-size: 32px;
}

.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
}

.footer-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-item {
    border-radius: var(--radius-xl);
    padding: 32px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .glass-circle {
    width: 44px;
    height: 44px;
    font-size: 18px;
    color: var(--text-secondary);
}

.footer-nav h4,
.footer-services h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-services a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: all var(--duration-fast);
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-cta h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-cta .btn-primary {
    background: white;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-radius: var(--radius-xl);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--duration-fast);
}

.footer-legal a:hover {
    color: var(--accent);
}


.reveal-up {
    opacity: 0;
    transform: translateY(80px);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1200px) {
    .stats-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-cta {
        grid-column: span 2;
    }

    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .why-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 100px;
    }

    .container,
    .header-container {
        padding: 0 28px;
    }

    .header-cta {
        display: none;
    }

    .hero-bento {
        grid-template-columns: 1fr 1fr;
    }

    .hero-bento-card:first-child {
        grid-column: span 2;
    }

    .work-bento-grid {
        grid-template-columns: 1fr;
    }

    .work-main {
        grid-row: span 1;
    }

    .work-new {
        grid-column: span 1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    body,
    a,
    button {
        cursor: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: clamp(44px, 12vw, 90px);
        letter-spacing: -3px;
    }

    .title-highlight {
        padding: 0 16px;
    }

    .hero-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bento {
        grid-template-columns: 1fr;
    }

    .hero-bento-card:first-child {
        grid-column: span 1;
    }

    .stats-bento-grid,
    .services-bento-grid,
    .why-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-main,
    .bento-cta,
    .service-large,
    .why-large {
        grid-column: span 1;
    }

    .footer-bento-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-btn {
        bottom: 24px;
        right: 24px;
        padding: 16px 22px;
    }

    .floating-btn-text {
        display: none;
    }

    .marquee-content span {
        font-size: 20px !important;
    }

    .horizontal-text-inner span {
        font-size: 60px;
    }

    .section-bg-text {
        font-size: 100px;
    }
}

@media (max-width: 480px) {

    .container,
    .header-container {
        padding: 0 20px;
    }

    .menu-toggle {
        width: 50px;
        height: 50px;
    }

    .bento-item,
    .work-bento-item,
    .service-bento-item,
    .why-item,
    .footer-item {
        padding: 24px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .nav-link {
        font-size: 32px;
    }

    .float-1,
    .float-2,
    .float-3,
    .float-4,
    .float-5 {
        width: 50px !important;
        height: 50px !important;
    }
}


.nav-close {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 56px;
    height: 56px;
    font-size: 28px;
    z-index: 1001;
    cursor: pointer;
}


.scroll-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-fast);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}


.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.slider-dots .dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: var(--accent-light);
}


.stat-percent {
    font-size: inherit;
    color: var(--accent);
    margin-left: 2px;
}

.why-stat {
    flex-direction: row !important;
    gap: 4px;
    flex-wrap: wrap;
}

.why-stat span {
    display: flex;
    align-items: center;
}


.rocket-fly {
    animation: rocketFly 4s ease-in-out infinite !important;
    transform-origin: center center;
}

@keyframes rocketFly {

    0%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    25% {
        transform: translateY(-40px) rotate(-35deg);
    }

    50% {
        transform: translateY(-20px) rotate(-50deg);
    }

    75% {
        transform: translateY(-50px) rotate(-40deg);
    }
}


.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all var(--duration-fast);
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.contact-social {
    display: flex;
    gap: 12px;
}


.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 32px;
}


.float-illustration {
    width: 100%;
    height: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

.float-1 .float-illustration {
    max-width: 150px;
}

.float-2 .float-illustration {
    max-width: 100px;
}

.float-3 .float-illustration {
    max-width: 120px;
}


.clients {
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.client-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.client-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.client-logo {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.client-preview {
    position: relative;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.client-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-out);
}

.client-preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-out);
}

.client-preview:hover .client-preview-img,
.client-preview:hover .client-preview-video {
    transform: scale(1.05);
}

.client-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.client-preview-placeholder i {
    font-size: 48px;
}

.client-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
}

.client-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.client-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.btn-see-more {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.btn-see-more:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-see-more i {
    font-size: 18px;
    transition: transform var(--duration-fast);
}

.btn-see-more:hover i {
    transform: translateX(4px);
}


.client-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.client-modal.active {
    opacity: 1;
    visibility: visible;
    cursor: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    padding: 40px;
    transform: scale(0.9) translateY(30px);
    transition: transform var(--duration-normal) var(--ease-out);
}

.client-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.modal-client-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.modal-client-info span {
    color: var(--text-secondary);
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.modal-tags .tag {
    padding: 6px 14px;
    font-size: 12px;
}

.modal-gallery-video {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.modal-gallery-video:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(161, 41, 255, 0.3);
}

.modal-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-gallery-video.playing {
    aspect-ratio: 16/9;
    grid-column: 1 / -1;
}

.modal-gallery-video.playing .modal-video-thumbnail {
    object-fit: contain;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all var(--duration-fast);
}

.video-play-overlay i {
    font-size: 60px;
    color: white;
    background: var(--accent);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
}

.modal-gallery-video:hover .video-play-overlay i {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(161, 41, 255, 0.5);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.modal-gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.modal-gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(161, 41, 255, 0.3);
}

.modal-testimonial {
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.modal-testimonial .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 15px;
}

.modal-testimonial blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.modal-testimonial .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.modal-testimonial .stars {
    display: flex;
    gap: 3px;
    color: #FFD93D;
    font-size: 18px;
}


.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    cursor: auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all var(--duration-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all var(--duration-fast);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    font-weight: 500;
}


@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .modal-container {
        width: 95%;
        padding: 25px;
        max-height: 85vh;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}


.btn-showreel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.btn-showreel i {
    font-size: 22px;
    color: var(--accent);
}

.btn-showreel:hover {
    background: rgba(161, 41, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
}


.showreel-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.showreel-modal.active {
    opacity: 1;
    visibility: visible;
    cursor: auto;
}

.showreel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.showreel-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow-y: auto;
    transform: scale(0.9) translateY(30px);
    transition: transform var(--duration-normal) var(--ease-out);
}

.showreel-modal.active .showreel-container {
    transform: scale(1) translateY(0);
}

.showreel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all var(--duration-fast);
    z-index: 10;
}

.showreel-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.showreel-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 450px;
}

.showreel-video-wrap {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showreel-video {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.showreel-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
    max-height: 70vh;
}

.showreel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showreel-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #00D4FF);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showreel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-primary);
    padding: 8px;
}

.showreel-user {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.showreel-username {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.showreel-location {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.showreel-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showreel-description p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.showreel-description .showreel-cta {
    color: var(--accent);
    font-weight: 600;
    margin-top: 10px;
}

.showreel-actions {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.showreel-actions .btn-primary {
    width: 100%;
    justify-content: center;
}


@media (max-width: 900px) {
    .showreel-content {
        grid-template-columns: 1fr;
    }

    .showreel-video-wrap {
        max-height: 300px;
    }

    .showreel-info {
        max-height: none;
    }
}

@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-showreel {
        width: 100%;
        justify-content: center;
    }
}


.services-carousel-controls {
    display: none;
    margin-top: 40px;
    position: relative;
    z-index: 200;
}

.services.carousel-active .services-carousel-controls {
    display: block;
    animation: fadeIn 0.5s ease-out 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.carousel-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.carousel-back-btn:hover {
    background: rgba(161, 41, 255, 0.2);
    border-color: var(--accent);
}

.carousel-back-btn i {
    font-size: 18px;
}

.carousel-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.carousel-nav:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(161, 41, 255, 0.5);
}


.services.carousel-active .services-bento-grid {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
    overflow: visible;
}


.services.carousel-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99;
}

.services.carousel-active .container {
    position: relative;
    z-index: 100;
}


.services.carousel-active .service-bento-item {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    width: 480px !important;
    max-width: 90% !important;
    height: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 32px !important;
}


.services.carousel-active .service-bento-item.carousel-active {
    position: relative;
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
    pointer-events: auto;
}


.services.carousel-active .service-bento-item.carousel-prev {
    opacity: 0.4;
    transform: scale(0.9) translateX(-350px);
    z-index: 5;
    filter: brightness(0.7);
}


.services.carousel-active .service-bento-item.carousel-next {
    opacity: 0.4;
    transform: scale(0.9) translateX(350px);
    z-index: 5;
    filter: brightness(0.7);
}


.services.carousel-active .service-arrow {
    display: none;
}

.services-slider-back {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.services-slider-back:hover {
    background: rgba(161, 41, 255, 0.2);
    border-color: var(--accent);
}

.services-slider-back i {
    font-size: 18px;
}

.services-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-slider-nav {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.services-slider-nav:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.services-slider-track {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 450px;
}

.service-slide {
    position: absolute;
    width: 480px;
    max-width: 90%;
    background: rgba(13, 13, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%) scale(0.85);
    backdrop-filter: blur(20px);
}

.service-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 5;
}

.service-slide.prev {
    opacity: 0.4;
    transform: translateX(-60%) scale(0.88);
    z-index: 3;
    pointer-events: none;
}

.service-slide.next {
    opacity: 0.4;
    transform: translateX(60%) scale(0.88);
    z-index: 3;
    pointer-events: none;
}

.service-slide.far-prev {
    opacity: 0;
    transform: translateX(-120%) scale(0.75);
    z-index: 1;
    pointer-events: none;
}

.service-slide.far-next {
    opacity: 0;
    transform: translateX(120%) scale(0.75);
    z-index: 1;
    pointer-events: none;
}


.service-slide-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent);
    background: rgba(161, 41, 255, 0.1);
    border: 1px solid rgba(161, 41, 255, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}


.service-slide-number {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-slide h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-slide p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}


.service-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-slide-tags span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 11px;
    color: var(--text-primary);
}

.services-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.services-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.services-slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.services-slider-dot:hover {
    background: rgba(161, 41, 255, 0.5);
}


@media (max-width: 900px) {
    .service-slide {
        width: 350px;
        padding: 25px;
    }

    .service-slide h3 {
        font-size: 20px;
    }

    .services-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .services-slider-track {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .service-slide {
        width: 300px;
        padding: 20px;
    }

    .service-slide.prev,
    .service-slide.next {
        opacity: 0.15;
        transform: translateX(-55%) scale(0.8);
    }

    .service-slide.next {
        transform: translateX(55%) scale(0.8);
    }

    .services-slider-nav {
        display: none;
    }

    .services-slider-track {
        height: 350px;
    }
}


.carousel-cards-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 101;
    pointer-events: none;
}

.carousel-cards-container.active {
    display: flex;
    pointer-events: auto;
}

.carousel-card {
    position: absolute;
    width: 480px;
    max-width: 90%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0a0a0f;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-card.carousel-active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
    background: #0a0a0f;
    border-color: rgba(161, 41, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.carousel-card.carousel-prev {
    opacity: 0.8;
    transform: scale(0.95) translateX(-380px);

    z-index: 5;
    filter: brightness(0.6);
    cursor: pointer;
}

.carousel-card.carousel-next {
    opacity: 0.8;
    transform: scale(0.95) translateX(380px);

    z-index: 5;
    filter: brightness(0.6);
    cursor: pointer;
}

.carousel-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    background: rgba(161, 41, 255, 0.1);
    margin-bottom: 10px;
}

.carousel-card .service-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 14px;
    color: var(--accent);
    padding: 8px 16px;
}

.carousel-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.carousel-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.carousel-card .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.carousel-card .service-tags span {
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: 100px;
}


.clients-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 40px;
}

.clients-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px;
}

.clients-track .client-card {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    margin: 0;
}

.clients-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.clients-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.clients-controls button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.clients-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.clients-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.clients-dots .dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .clients-track .client-card {
        flex: 0 0 100%;
        width: 100%;
    }
}


.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-modal-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease-out);
}

.legal-modal.active .legal-modal-container {
    transform: translateY(0) scale(1);
}

.legal-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.legal-modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.legal-modal-content {
    padding: 50px;
    max-height: 85vh;
    overflow-y: auto;
}

.legal-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-modal-content .legal-date {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-modal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-modal-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-modal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-modal-content ul li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.legal-modal-content ul li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.legal-modal-content strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .legal-modal-content {
        padding: 40px 24px;
    }

    .legal-modal-content h2 {
        font-size: 24px;
    }

    .legal-modal-content h3 {
        font-size: 16px;
    }

    .legal-modal-content p,
    .legal-modal-content ul li {
        font-size: 14px;
    }
}