/* ============================================
   PREMIUM EDITORIAL CSS SYSTEM
   ============================================ */
:root {
    --bg-dark: #050505;
    --bg-alt: #0a0a0a;
    --primary: #0055FF;
    --accent: #3B82F6;
    --text-main: #f5f5f5;
    --text-dim: #a3a3a3;
    --border: rgba(255, 255, 255, 0.05);
    --border-primary: rgba(0, 85, 255, 0.2);
    
    /* Fluid Typography */
    --step--2: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem);
    --step--1: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem);
    --step-0: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
    --step-1: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
    --step-2: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
    --step-3: clamp(1.944rem, 1.771rem + 0.8652vw, 2.4414rem);
    --step-4: clamp(2.3328rem, 2.0827rem + 1.2505vw, 3.0518rem);
    --step-5: clamp(2.7994rem, 2.4468rem + 1.7628vw, 3.8147rem);
    --step-giant: clamp(3.5rem, 2vw + 6vw, 10rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

html {
    scroll-behavior: auto; /* Required for Lenis */
    background: var(--bg-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cinematic Film Grain Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 9998;
}

/* Reusable Ambient Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}
.ambient-blue { background: var(--primary); }
.ambient-dark { background: #000a1a; }

body.loading {
    overflow: hidden;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 85, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

@media (pointer: coarse), (max-width: 768px) {
    * { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none !important; }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader-text {
    font-family: 'Outfit', sans-serif;
    font-size: var(--step-2);
    font-weight: 800;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
}
.preloader-progress {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    background: var(--primary);
    width: 0%;
}

/* ============================================
   TYPOGRAPHY & UTILS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.massive-title {
    font-size: var(--step-giant);
    text-transform: uppercase;
}

.editorial-title {
    font-size: var(--step-5);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.large-body {
    font-size: var(--step-1);
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 600px;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid var(--border-primary);
    padding: 8px 16px;
    border-radius: 50px;
}

.primary-glow {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 85, 255, 0.5);
    font-style: italic;
}

.line-wrap {
    overflow: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-pill {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-pill.hidden {
    transform: translate(-50%, -150%);
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-cta {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.nav-cta:hover {
    background: var(--primary);
    color: var(--text-main);
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
}

/* ============================================
   MOBILE MENU OVERLAY (HIDDEN ON DESKTOP)
   ============================================ */
.mobile-menu-overlay {
    display: none;
}

/* ============================================
   HERO CINEMATIC
   ============================================ */
.hero-cinematic {
    min-height: 70vh;
    height: auto;
    position: relative;
    z-index: 1; /* Establish stacking context so z-index: -1 children don't go behind body */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12vh 5vw 0;
}

@media (max-width: 768px) {
    .hero-cinematic {
        min-height: auto;
        padding-top: 10vh;
        padding-bottom: 0;
    }
}

.hero-bg-media {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}
.hero-bg-media canvas, .hero-bg-media video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.hero-bg-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(5,5,5,0.2) 0%, var(--bg-dark) 100%);
    z-index: -1;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: var(--primary);
    top: -20%;
    right: -10%;
    mix-blend-mode: screen;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: var(--accent);
    bottom: -10%;
    left: -10%;
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.hero-floating-ui {
    position: absolute;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 3;
    color: var(--text-main);
}
.hero-floating-ui i { color: var(--primary); font-size: 20px; }
.ui-1 { top: -5%; right: 10%; animation: float 6s ease-in-out infinite; }
.ui-2 { bottom: 10%; left: 60%; animation: float 8s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    background: rgba(0, 85, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
    padding-right: 5vw;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--text-main);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.4) inset;
}

.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.hero-stats-floating {
    position: relative;
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    z-index: 2;
}

.stat-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
}

.stat-glass h3 {
    font-size: var(--step-2);
    color: var(--text-main);
}

.stat-glass p {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   TRUST MARQUEE
   ============================================ */
.trust-marquee {
    padding: 40px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .trust-marquee {
        margin-top: 0;
    }
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    /* Animation applied via GSAP in app.js */
}

.marquee-content span {
    font-family: 'Outfit', sans-serif;
    font-size: var(--step-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--text-dim);
}

.marquee-content i {
    color: var(--primary);
    font-size: 14px;
}

/* ============================================
   ABOUT EDITORIAL
   ============================================ */
.about-editorial {
    padding: 3vw 5vw;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.mesh-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(at 0% 0%, rgba(0, 85, 255, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%),
                var(--bg-dark);
    background-size: 200% 200%;
    animation: meshFlow 15s ease infinite;
}

@keyframes meshFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.giant-bg-text {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -1;
    white-space: nowrap;
    opacity: 0.04;
    pointer-events: none;
}
.giant-scroll-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-main);
    display: inline-block;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

.about-img-mask {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.img-inner {
    width: 100%;
    height: 120%;
    background: url('about_img_1784232452798.png') center/cover;
    transform: translateY(-10%); /* Parallax ready */
}

.img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.about-text-block p {
    margin-bottom: 2rem;
}

.fade-text {
    opacity: 0.5;
}

.editorial-features {
    list-style: none;
    margin-top: 4rem;
}

.editorial-features li {
    font-size: var(--step-0);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
}

.editorial-features i {
    color: var(--primary);
}

/* ============================================
   SERVICES STACKED
   ============================================ */
.services-stacked {
    padding: 2vw 5vw 6vw;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.services-bg-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.15;
}

.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-alt) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
    z-index: -1;
}

.services-intro {
    max-width: 600px;
    margin-bottom: 10vw;
}

.cards-stack-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.stack-card {
    /* Removed sticky stacking properties */
    display: flex;
}

.card-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    transition: opacity, background, color, box-shadow, border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-inner:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(0, 85, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 85, 255, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.card-icon {
    width: 80px; height: 80px;
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--primary);
}

.stack-card h3 {
    font-size: var(--step-2);
    margin-bottom: 15px;
}

.stack-card p {
    font-size: var(--step-0);
    color: var(--text-dim);
    line-height: 1.6;
}

/* ============================================
   PROCESS HORIZONTAL
   ============================================ */
.process-horizontal {
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.floating-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.2), rgba(59, 130, 246, 0.05));
    filter: blur(15px);
    z-index: 1;
}
.shape-1 { width: 30vw; height: 30vw; top: -10vw; left: 10vw; }
.shape-2 { width: 50vw; height: 50vw; bottom: -20vw; right: 20vw; background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent); }
.shape-3 { width: 20vw; height: 20vw; top: 40vh; left: 60vw; }

.process-sticky-wrapper {
    padding: 2rem 5vw;
    display: flex;
    align-items: center;
    width: max-content;
}

.process-intro {
    width: 50vw;
    flex-shrink: 0;
    padding-right: 5vw;
}

.process-track {
    display: flex;
    gap: 5vw;
}

.process-panel {
    width: 40vw;
    height: 50vh;
    min-height: 400px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.process-panel h3 {
    font-size: var(--step-3);
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.process-panel p {
    font-size: var(--step-0);
    color: var(--text-dim);
    max-width: 90%;
    position: relative;
    z-index: 2;
}

/* ============================================
   PORTFOLIO GIANT
   ============================================ */
.portfolio-giant {
    padding: 2vw 0;
    background: var(--bg-alt);
}

.portfolio-header {
    padding: 0 5vw;
    margin-bottom: 8vw;
}

.portfolio-rows {
    border-top: 1px solid var(--border);
}

.project-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    padding: 2vw 5vw;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.4s;
    position: relative;
}

.project-row:hover {
    background: rgba(255,255,255,0.02);
}

.project-cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.project-row h3 {
    font-size: var(--step-4);
    transition: transform 0.4s;
}

.project-row:hover h3 {
    transform: translateX(20px);
}

.project-link {
    text-align: right;
    font-size: var(--step--1);
    color: var(--text-dim);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.project-row:hover .project-link {
    color: var(--text-main);
}

/* Image reveal on hover - handled mostly in JS */
.hover-reveal-img {
    position: fixed;
    top: 0; left: 0;
    width: 350px;
    aspect-ratio: 4/3;
    background: url('portfolio_img_1784232464605.png') center/cover;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.8) translate(-50%, -50%);
    z-index: 100;
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials-slider {
    padding: 3vw 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.testi-header {
    padding: 0 5vw;
    margin-bottom: 5vw;
}

.slider-container {
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 4vw;
    padding: 0 5vw;
    width: max-content;
}

.testi-card {
    width: 45vw;
    min-width: 300px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
}

.stars {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 14px;
}

.quote {
    font-size: var(--step-1);
    line-height: 1.5;
    margin-bottom: 3rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar {
    width: 60px; height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
}

.author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author span {
    font-size: 14px;
    color: var(--text-dim);
}

/* ============================================
   CONTACT SPLIT
   ============================================ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    border-top: 1px solid var(--border);
}

.contact-left {
    background: var(--bg-dark);
    padding: 2vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.massive-cta {
    font-size: var(--step-5);
    line-height: 1;
}

.contact-meta {
    margin-top: 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.1);
}

.meta-item span {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}



.meta-item span i {
    color: var(--primary);
    font-size: 16px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: inline-block;
}

.meta-item a, .meta-item p {
    color: var(--text-main);
    text-decoration: none;
    font-size: var(--step-0);
}

.contact-right {
    position: relative;
    padding: 4vw 5vw;
    display: flex;
    align-items: center;
    background: transparent;
}

.glass-form-container {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4vw;
    border-radius: 30px;
    width: 100%;
}

.glass-form-container h3 {
    font-size: var(--step-2);
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0;
    color: var(--text-main);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-dim);
    transition: opacity, background, color, box-shadow, border-color 0.3s;
    pointer-events: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus,
.input-group input:not(:placeholder-shown),
.input-group textarea:not(:placeholder-shown) {
    border-bottom-color: var(--primary);
}

.input-group input:focus + label,
.input-group select:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: var(--primary);
}

.input-group select option {
    background: var(--bg-dark);
}

.form-btn {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   GIANT FOOTER
   ============================================ */
.footer-giant {
    background: var(--bg-alt);
    padding: 2vw 5vw 1vw;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2vw;
}

.footer-brand p {
    max-width: 400px;
    color: var(--text-dim);
    font-size: var(--step-0);
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-socials a {
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-massive-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13vw;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    color: var(--bg-dark);
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
}

.liquid-letter {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600" preserveAspectRatio="none"><defs><linearGradient id="g" x1="0%25" y1="0%25" x2="100%25" y2="0%25"><stop offset="0%25" stop-color="%233b82f6" /><stop offset="100%25" stop-color="%230055ff" /></linearGradient></defs><path fill="url(%23g)" d="M0,200 Q50,150 100,200 T200,200 T300,200 T400,200 L400,600 L0,600 Z" /></svg>');
    background-repeat: repeat-x;
    background-size: 200% 400%;
    background-position-x: 0%;
    background-position-y: 0%; /* completely empty initially */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquidWave 3s infinite linear;
    cursor: default;
}

@keyframes liquidWave {
    0% { background-position-x: 0%; }
    100% { background-position-x: 200%; }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 5vw;
    color: var(--text-dim);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}
.legal-links a {
    color: var(--text-dim);
    text-decoration: none;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
    .about-container, .contact-split {
        grid-template-columns: 1fr;
    }
    .hero-stats-floating {
        position: relative;
        bottom: 0; right: 0;
        margin-top: 4rem;
        flex-wrap: wrap;
    }
    .process-sticky-wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 2vw 5vw;
        gap: 5vw;
    }
    .process-track {
        flex-direction: column;
        width: 100%;
        gap: 5vw;
    }
    .process-intro {
        width: 100%;
        padding: 0;
    }
    .process-panel {
        width: 100%;
        height: auto;
        min-height: auto;
    }
    .arrow-panel {
        display: none !important;
    }
    .project-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .project-link {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .stats-title {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .contact-meta {
        grid-template-columns: 1fr;
    }
    
    .meta-item a, .meta-item p {
        word-break: break-all;
    }
    
    .hero-cinematic {
        min-height: 100svh;
        padding-top: 120px;
        padding-bottom: 80px;
        justify-content: center;
    }
    .hero-floating-ui {
        display: none !important;
    }
    .hero-stats-floating {
        justify-content: center;
        margin-top: 2rem;
        gap: 15px;
    }
    .stat-glass {
        padding: 15px 20px;
        flex: 1 1 calc(50% - 15px);
    }
    .massive-title {
        font-size: 14vw;
        line-height: 1.1;
        margin-bottom: 2rem;
    }
    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 25px;
        margin-top: 1rem;
        padding-right: 0;
    }
    .hero-desc {
        text-align: left;
        font-size: 14px;
        max-width: 100%;
    }
    .hero-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        width: 100%;
    }
    .hero-actions a {
        font-size: 13px;
        padding: 12px 18px;
        white-space: nowrap;
    }
    .about-container {
        gap: 5vw;
    }
    .process-panel {
        padding: 30px;
    }
    .testi-card {
        width: 85vw;
    }
    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        z-index: 1001;
    }
    .mobile-toggle span {
        width: 30px; height: 2px;
        background: var(--text-main);
        transition: 0.3s;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(5,5,5,0.95);
        backdrop-filter: blur(20px);
        z-index: 999;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: 0.4s;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .mobile-menu-links a {
        font-size: var(--step-3);
        color: var(--text-main);
        text-decoration: none;
        font-family: 'Outfit', sans-serif;
    }
    .card-inner {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .footer-massive-text {
        font-size: 8vw;
    }
}

/* Glass Feature Box Global Styles */
.glass-feature-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    pointer-events: auto;
    position: relative;
    transition: opacity, background, color, box-shadow, border-color 0.4s ease;
    overflow: hidden; /* Ensure glow doesn't bleed out */
}

/* Mouse tracking radial gradient glow */
.glass-feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 85, 255, 0.4),
        transparent 40%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-feature-box:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(0, 85, 255, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 85, 255, 0.2);
}

.glass-feature-box:hover::before {
    opacity: 1;
}

/* Make sure content is above the glow */
.glass-feature-box > * {
    position: relative;
    z-index: 1;
}

.glass-feature-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.glass-feature-box.desc-box {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent);
}

.glass-feature-box.item-box {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.glass-feature-box.item-box i {
    color: var(--accent);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 85, 255, 0.5);
}

/* ============================================ 
   MAXIMALIST GLOBAL STYLES (EXTRACTED) 
   ============================================ */

                .about-maximalist-wrapper {
                    position: relative;
                    padding: 3vw 5vw 2vw;
                    background: #000;
                    overflow: hidden;
                    display: grid;
                    grid-template-columns: 1.1fr 1fr;
                    gap: 6vw;
                    align-items: center;
                }
                .about-max-bg-glow {
                    position: absolute;
                    width: 80vw;
                    height: 80vw;
                    background: radial-gradient(circle, rgba(0, 85, 255, 0.2) 0%, transparent 60%);
                    top: -40vw;
                    right: -20vw;
                    filter: blur(100px);
                    animation: pulseGlow 8s infinite alternate;
                    z-index: 0;
                }
                @keyframes pulseGlow {
                    0% { opacity: 0.4; transform: scale(1); }
                    100% { opacity: 0.8; transform: scale(1.1); }
                }
                .about-max-left {
                    position: relative;
                    z-index: 2;
                }
                .about-max-tag {
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    color: var(--accent);
                    text-transform: uppercase;
                    letter-spacing: 4px;
                    font-size: 0.85rem;
                    font-weight: 700;
                    margin-bottom: 2rem;
                }
                .about-max-tag .dot {
                    width: 8px; height: 8px;
                    background: var(--accent);
                    border-radius: 50%;
                    box-shadow: 0 0 15px var(--accent);
                    animation: ping 2s infinite;
                }
                .about-max-title {
                    font-family: 'Outfit', sans-serif;
                    font-size: clamp(3rem, 7vw, 7rem);
                    font-weight: 900;
                    text-transform: uppercase;
                    line-height: 0.85;
                    color: #fff;
                    margin-bottom: 3rem;
                    letter-spacing: -0.02em;
                    position: relative;
                }
                .about-max-title .word {
                    display: block;
                    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
                }
                .about-max-title:hover .word:nth-child(1) { transform: translateX(20px); }
                .about-max-title:hover .word:nth-child(2) { transform: translateX(40px); }
                .about-max-title:hover .word:nth-child(3) { transform: translateX(20px); }
                .about-max-title:hover .word:nth-child(4) { transform: translateX(10px); }
                
                .about-max-title .gradient-text {
                    background: linear-gradient(90deg, #00f2fe, #4facfe, #0055ff);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    text-shadow: 0 0 40px rgba(0,85,255,0.4);
                }
                .about-max-title .since {
                    font-family: 'Inter', sans-serif;
                    font-weight: 300;
                    font-style: italic;
                    font-size: clamp(2rem, 4vw, 4rem);
                    color: rgba(255,255,255,0.2);
                    letter-spacing: 0.05em;
                    margin-top: 10px;
                }
                .about-max-right {
                    position: relative;
                    z-index: 2;
                    perspective: 1200px;
                }
                .about-max-image-wrap {
                    position: relative;
                    border-radius: 30px;
                    overflow: hidden;
                    border: 1px solid rgba(255,255,255,0.1);
                    box-shadow: 0 30px 60px rgba(0, 85, 255, 0.15);
                    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
                }
                .about-max-image-wrap:hover {
                    box-shadow: 0 40px 80px rgba(0, 85, 255, 0.4);
                    border-color: rgba(255,255,255,0.3);
                }
                .about-max-image-wrap img {
                    width: 100%;
                    height: auto;
                    display: block;
                    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
                }
                .about-max-image-wrap:hover img {
                    transform: scale(1.08);
                }
                .about-max-glass-card {
                    position: absolute;
                    bottom: -30px;
                    left: -30px;
                    right: 40px;
                    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
                    backdrop-filter: blur(20px);
                    -webkit-backdrop-filter: blur(20px);
                    border: 1px solid rgba(255, 255, 255, 0.15);
                    border-bottom-color: rgba(255, 255, 255, 0.05);
                    border-right-color: rgba(255, 255, 255, 0.05);
                    border-radius: 20px;
                    padding: 2.5rem;
                    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
                    z-index: 10;
                    box-shadow: 0 30px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
                }
                .about-max-right:hover .about-max-glass-card {
                    transform: translateY(-15px) scale(1.02);
                    border-color: rgba(255,255,255,0.25);
                    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
                }
                .about-max-desc {
                    font-family: 'Inter', sans-serif;
                    font-size: 1.1rem;
                    line-height: 1.6;
                    color: rgba(255,255,255,0.8);
                    margin-bottom: 2rem;
                }
                .about-max-features {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }
                .about-max-features li {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    font-family: 'Inter', sans-serif;
                    font-size: 0.85rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    color: #fff;
                    transition: transform 0.3s;
                }
                .about-max-features li:hover {
                    transform: translateX(10px);
                    color: var(--accent);
                }
                .about-max-features li i {
                    color: var(--accent);
                    font-size: 1.2rem;
                    text-shadow: 0 0 10px var(--accent);
                }
                
                @media (max-width: 991px) {
                    .about-maximalist-wrapper {
                        grid-template-columns: 1fr;
                        padding: 20vw 5vw;
                        gap: 15vw;
                    }
                    .about-max-glass-card {
                        bottom: -20px; left: 10px; right: 10px;
                        padding: 1.5rem;
                    }
                }
            

                        .about-glass-features {
                            display: flex;
                            flex-direction: column;
                            gap: 1.2rem;
                            width: 100%;
                            max-width: 600px;
                        }
                        .glass-feature-box {
                            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
                            backdrop-filter: blur(20px);
                            -webkit-backdrop-filter: blur(20px);
                            border: 1px solid rgba(255, 255, 255, 0.1);
                            border-radius: 20px;
                            padding: 1.5rem;
                            color: rgba(255, 255, 255, 0.85);
                            box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
                            pointer-events: auto; /* make them interactive */
                            position: relative;
                            overflow: hidden;
                        }

                        /* Ensure text content is above the hover gradient */
                        .glass-feature-box > * {
                            position: relative;
                            z-index: 2;
                        }

                        .glass-feature-box::before {
                            content: '';
                            position: absolute;
                            top: 0; left: 0; width: 100%; height: 100%;
                            background: radial-gradient(
                                600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                                rgba(0, 85, 255, 0.4),
                                transparent 40%
                            );
                            opacity: 0;
                            transition: opacity 0.5s ease;
                            pointer-events: none;
                        }
                        
                        /* Continuous float */
                        .glass-feature-box::after {
                            content: '';
                            position: absolute;
                            inset: 0;
                            border-radius: inherit;
                            pointer-events: none;
                        }

                        .glass-feature-box:hover {
                            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
                            border-color: rgba(0, 85, 255, 0.4);
                            transform: translateY(-5px) scale(1.02) !important;
                            transition: all 0.4s ease;
                        }

                        .glass-feature-box:hover::before {
                            opacity: 1;
                        }
                        
                        .glass-feature-box.desc-box {
                            font-family: 'Inter', sans-serif;
                            font-size: 1.05rem;
                            line-height: 1.6;
                            border-left: 3px solid var(--accent);
                        }
                        
                        .glass-features-grid {
                            display: grid;
                            grid-template-columns: repeat(2, 1fr);
                            gap: 1.2rem;
                        }
                        
                        .glass-feature-box.item-box {
                            font-family: 'Inter', sans-serif;
                            font-size: 0.85rem;
                            font-weight: 700;
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            display: flex;
                            align-items: center;
                            gap: 12px;
                        }
                        
                        .glass-feature-box.item-box i {
                            color: var(--accent);
                            font-size: 1.2rem;
                            text-shadow: 0 0 10px rgba(0, 85, 255, 0.5);
                        }

                        /* Float animation added to the boxes after flight */
                        .desc-box.is-floating { animation: float-continuous 6s ease-in-out infinite; }
                        .glass-features-grid .item-box.is-floating:nth-child(1) { animation: float-continuous 6s ease-in-out infinite 0.4s; }
                        .glass-features-grid .item-box.is-floating:nth-child(2) { animation: float-continuous 7s ease-in-out infinite 0.6s; }
                        .glass-features-grid .item-box.is-floating:nth-child(3) { animation: float-continuous 6.5s ease-in-out infinite 0.8s; }
                        .glass-features-grid .item-box.is-floating:nth-child(4) { animation: float-continuous 7.5s ease-in-out infinite 1.0s; }

                        @keyframes float-continuous {
                            0%, 100% { transform: translateY(0); }
                            50% { transform: translateY(-8px); }
                        }

                        @media (max-width: 768px) {
                            .glass-features-grid {
                                grid-template-columns: 1fr;
                            }
                        }
                    

                        .features-left-target {
                            width: 100%; 
                            height: auto;
                        }
                    

                        .pt-glass-box {
                            width: 100%;
                            height: 600px;
                            background: rgba(0, 85, 255, 0.15);
                            backdrop-filter: blur(25px);
                            -webkit-backdrop-filter: blur(25px);
                            border: 1px solid rgba(0, 85, 255, 0.3);
                            border-radius: 30px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            position: relative;
                            overflow: hidden;
                            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
                            box-shadow: 0 20px 50px rgba(0, 85, 255, 0.1);
                        }
                        
                        .pt-glass-box,
                        .pt-glass-box.is-active {
                            background: rgba(0, 85, 255, 0.25);
                            box-shadow: 0 30px 60px rgba(0, 85, 255, 0.3);
                            border: 1px solid rgba(0, 85, 255, 0.5);
                        }

                        .pt-svg-container {
                            width: 100%;
                            height: 100%;
                            position: absolute;
                            top: 0;
                            left: 0;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                        .pt-text {
                            font-size: 250px;
                            font-family: 'Outfit', sans-serif;
                            font-weight: 900;
                            letter-spacing: -2px;
                            stroke-width: 3px;
                            stroke-dasharray: 80 200;
                            stroke-dashoffset: 0;
                            transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
                            opacity: 1;
                            fill: #0055FF; 
                            stroke: #ffffff;
                            transform: scale(1) translateY(0);
                            animation: revolve-stroke 3s linear infinite;
                        }

                        @keyframes revolve-stroke {
                            0% {
                                stroke-dashoffset: 280;
                            }
                            100% {
                                stroke-dashoffset: 0;
                            }
                        }
                    

                    /* Keep words in a horizontal line, and make them shift uniformly so they don't overlap on hover */
                    .stats-title:hover .word { transform: translateX(20px) !important; }
                    
                    .stats-carousel-container {
                        display: flex;
                        gap: 2rem;
                        width: 100%;
                    }
                    .stat-glass-box {
                        flex: 1;
                        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
                        backdrop-filter: blur(20px);
                        -webkit-backdrop-filter: blur(20px);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        border-radius: 20px;
                        padding: 4rem 2rem;
                        text-align: center;
                        box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
                        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
                        position: relative;
                        overflow: hidden;
                    }
                    .stat-glass-box::before {
                        content: '';
                        position: absolute;
                        top: 0; left: 0; width: 100%; height: 100%;
                        background: radial-gradient(
                            600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                            rgba(0, 85, 255, 0.4),
                            transparent 40%
                        );
                        opacity: 0;
                        transition: opacity 0.5s ease;
                        pointer-events: none;
                    }
                    .stat-glass-box:hover {
                        transform: translateY(-10px) scale(1.02);
                        border-color: rgba(0, 85, 255, 0.5);
                        box-shadow: 0 30px 60px rgba(0, 85, 255, 0.2);
                    }
                    .stat-glass-box:hover::before {
                        opacity: 1;
                    }
                    .stat-glass-box h3 {
                        font-family: 'Outfit', sans-serif;
                        font-size: 5rem;
                        font-weight: 900;
                        color: #fff;
                        margin-bottom: 0.5rem;
                        position: relative;
                        z-index: 2;
                        line-height: 1;
                        text-shadow: 0 10px 20px rgba(0,0,0,0.5);
                    }
                    .stat-glass-box p {
                        font-family: 'Inter', sans-serif;
                        color: rgba(255,255,255,0.7);
                        font-size: 1.1rem;
                        text-transform: uppercase;
                        letter-spacing: 2px;
                        font-weight: 600;
                        position: relative;
                        z-index: 2;
                        margin-top: 1rem;
                    }

                    /* Mobile Stacked Styles */
                    @media (max-width: 768px) {
                        .stats-carousel-container {
                            flex-direction: column;
                            gap: 1.5rem;
                            overflow: visible;
                            padding-bottom: 0;
                        }
                        .stats-carousel-container .stat-glass-box {
                            flex: 1 1 100%;
                            width: 100%;
                        }
                    }
                

                    .service-content-box h3 {
                        font-size: 1.8rem !important;
                        font-weight: 700 !important;
                        line-height: 1.2 !important;
                        margin-bottom: 1rem !important;
                        text-transform: none !important;
                    }
                    .service-content-box p {
                        font-size: 1.05rem !important;
                        font-weight: 400 !important;
                        text-transform: none !important;
                        letter-spacing: 0 !important;
                        line-height: 1.6 !important;
                        color: rgba(255,255,255,0.7) !important;
                    }
                

                    .portfolio-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                        gap: 2rem;
                        padding: 0 5vw 5vw 5vw;
                        position: relative;
                        z-index: 2;
                    }
                    .portfolio-grid .project-card {
                        text-decoration: none;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        padding: 4rem 2rem;
                        position: relative;
                        overflow: hidden;
                        border-radius: 20px;
                        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
                    }
                    .portfolio-grid .project-card:hover {
                        transform: translateY(-10px);
                        border-color: rgba(0, 85, 255, 0.4);
                        box-shadow: 0 20px 50px rgba(0, 85, 255, 0.2);
                    }
                    .portfolio-grid .watermark-icon {
                        position: absolute;
                        font-size: 14rem;
                        opacity: 0.03;
                        right: -15%;
                        bottom: -20%;
                        color: var(--accent);
                        transition: all 0.5s ease;
                        pointer-events: none;
                    }
                    .portfolio-grid .project-card:hover .watermark-icon {
                        opacity: 0.08;
                        transform: scale(1.1) rotate(-10deg);
                    }
                    .portfolio-grid .project-content {
                        position: relative;
                        z-index: 2;
                        text-align: center;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }
                    .portfolio-grid .project-icon {
                        font-size: 2.5rem;
                        color: var(--accent);
                        margin-bottom: 1.5rem;
                        background: rgba(0,85,255,0.1);
                        width: 80px; height: 80px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        border: 1px solid rgba(0, 85, 255, 0.2);
                        transition: all 0.4s ease;
                    }
                    .portfolio-grid .project-card:hover .project-icon {
                        background: var(--accent);
                        color: #fff;
                        transform: scale(1.1);
                    }
                    .portfolio-grid .project-content h3 {
                        font-size: 1.8rem;
                        font-weight: 800;
                        color: #fff;
                        margin-bottom: 0.5rem;
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        line-height: 1.2;
                    }
                    .portfolio-grid .project-content p {
                        font-size: 1rem;
                        color: rgba(255,255,255,0.7);
                        margin-bottom: 1.5rem;
                        text-transform: none;
                        letter-spacing: 0;
                        font-weight: 400;
                    }
                    .portfolio-grid .visit-link {
                        font-size: 0.9rem;
                        font-weight: 600;
                        color: var(--primary);
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        transition: 0.3s;
                        opacity: 0.7;
                    }
                    .portfolio-grid .project-card:hover .visit-link {
                        opacity: 1;
                        gap: 12px;
                        color: var(--accent);
                    }
                

                    .testi-grid {
                        display: grid;
                        grid-template-columns: repeat(4, 1fr);
                        gap: 2rem;
                        padding: 0 5vw 2rem 5vw;
                        position: relative;
                        z-index: 2;
                        max-width: 1600px;
                        margin: 0 auto;
                    }
                    .testi-grid .testi-card-artistic {
                        padding: 2rem;
                        position: relative;
                        overflow: hidden;
                        border-radius: 20px;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        min-height: 300px;
                        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
                        animation: floatCard 6s ease-in-out infinite alternate;
                    }
                    
                    @media (max-width: 1200px) {
                        .testi-grid { grid-template-columns: repeat(2, 1fr); }
                    }
                    @media (max-width: 768px) {
                        .testi-grid .testi-card-artistic:nth-child(n) { margin-top: 0; animation: none; }
                        .testi-grid { grid-template-columns: 1fr; }
                    }
                    
                    @keyframes floatCard {
                        0% { transform: translateY(0px); }
                        100% { transform: translateY(-15px); }
                    }
                    .testi-grid .testi-card-artistic:hover {
                        transform: translateY(-20px) scale(1.02);
                        border-color: rgba(0, 85, 255, 0.5);
                        box-shadow: 0 20px 50px rgba(0, 85, 255, 0.2);
                        animation-play-state: paused;
                    }
                    .testi-grid .quote-watermark {
                        position: absolute;
                        font-size: 15rem;
                        opacity: 0.04;
                        top: -5%;
                        left: -5%;
                        color: var(--accent);
                        transition: all 0.5s ease;
                        pointer-events: none;
                        z-index: 0;
                    }
                    .testi-grid .testi-card-artistic:hover .quote-watermark {
                        opacity: 0.1;
                        transform: scale(1.1) rotate(10deg);
                    }
                    .testi-grid .quote-text {
                        font-size: 1.2rem;
                        line-height: 1.7;
                        color: #e0e0e0;
                        font-style: italic;
                        position: relative;
                        z-index: 2;
                        margin-bottom: 2rem;
                        flex-grow: 1;
                    }
                    .testi-grid .author-box {
                        display: flex;
                        align-items: center;
                        gap: 1.5rem;
                        position: relative;
                        z-index: 2;
                        border-top: 1px solid rgba(255,255,255,0.05);
                        padding-top: 1.5rem;
                    }
                    .testi-grid .avatar-artistic {
                        width: 60px; height: 60px;
                        border-radius: 50%;
                        background: linear-gradient(135deg, var(--accent), #0055ff);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-weight: 800;
                        font-size: 1.2rem;
                        color: #fff;
                        box-shadow: 0 10px 20px rgba(0,85,255,0.3);
                    }
                    .testi-grid .author-info h4 {
                        font-size: 1.2rem;
                        color: #fff;
                        margin-bottom: 0;
                    }
                    .testi-grid .stars-artistic {
                        color: #ffb400;
                        font-size: 0.9rem;
                        margin-bottom: 1rem;
                        display: flex;
                        gap: 5px;
                        position: relative;
                        z-index: 2;
                    }
                

                @keyframes floatBlob {
                    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
                    33% { transform: translate(3vw, -5vh) scale(1.1) rotate(10deg); }
                    66% { transform: translate(-2vw, 2vh) scale(0.9) rotate(-10deg); }
                    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
                }
            
