/* ============================================================
   JUMPINGGOOSE® — Complete Redesign CSS
   Brand Colors: #e6007e, #000000, #ffffff, #c4ff00
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fallback: if JS/GSAP fails, ensure content is visible */
.no-js .work-info,
.no-js .service-card,
.no-js .result-card,
.no-js .press-item,
.no-js .process-step {
    opacity: 1 !important;
    transform: none !important;
}

:root {
    --pink: #e6007e;
    --black: #000000;
    --white: #ffffff;
    --lime: #c4ff00;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --gray: #888888;
    --gray-light: #cccccc;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 3px;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}
button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}
img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === GRAIN OVERLAY === */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.preloader-logo {
    width: 160px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-text {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
}
.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, var(--pink), var(--lime));
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}
@keyframes preloaderSlide {
    0% { left: -60px; }
    100% { left: 60px; }
}

/* === CUSTOM CURSOR === */
#cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-out-expo), height 0.35s var(--ease-out-expo), background 0.3s var(--ease-out-expo);
    mix-blend-mode: difference;
    will-change: transform;
}
#cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(230, 0, 126, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo);
    will-change: transform;
}
body.cursor-hover #cursor-dot {
    width: 50px;
    height: 50px;
    background: rgba(196, 255, 0, 0.15);
    mix-blend-mode: normal;
}
body.cursor-hover #cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--lime);
}

/* === NAVIGATION === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255,255,255,0);
    transition: padding 0.5s var(--ease-out-expo),
                background-color 0.5s var(--ease-out-expo),
                backdrop-filter 0.5s var(--ease-out-expo),
                border-color 0.5s var(--ease-out-expo);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .nav-logo img {
        height: 50px;
    }
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
    position: relative;
    padding: 4px 0;
    transition: color 0.4s var(--ease-out-expo);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.5s var(--ease-out-expo);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--pink);
}
.nav-cta {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1.5px solid var(--pink);
    color: var(--pink);
    border-radius: 100px;
    transition: background 0.4s var(--ease-out-expo),
                color 0.4s var(--ease-out-expo),
                box-shadow 0.5s var(--ease-out-expo),
                border-color 0.4s var(--ease-out-expo);
}
.nav-cta:hover {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 30px rgba(230, 0, 126, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--pink);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--pink);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s var(--ease-out-expo);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.mobile-link {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}
.mobile-link:hover {
    color: var(--pink);
}
.mobile-link.cta {
    margin-top: 20px;
    font-size: 16px;
    padding: 16px 40px;
    border: 2px solid var(--pink);
    border-radius: 100px;
    color: var(--pink);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: var(--pink);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    box-shadow: 0 0 40px rgba(230, 0, 126, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}
.btn-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
    box-shadow: 0 0 30px rgba(196, 255, 0, 0.15);
}

/* === SECTION COMMON === */
.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}
.title-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--lime));
    border-radius: 3px;
    margin: 0 auto 24px;
}
.title-accent.left {
    margin: 0 0 24px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 640px;
    margin: 0 auto;
}
.section-head {
    margin-bottom: 64px;
}
.section-head.center {
    text-align: center;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.hero-bg picture {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-left-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.hero-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
}
.tag-line {
    width: 40px;
    height: 1px;
    background: var(--pink);
}
.tag-text {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink);
}
.hero-headline {
    font-family: var(--font-primary);
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}
.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}
.hero-word {
    display: inline-block;
    transform: translateY(120%);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.hero-headline em {
    font-style: normal;
    color: var(--pink);
    position: relative;
}
.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--lime);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
}
.hero-sub {
    font-size: 24px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 0 40px 0;
    opacity: 0;
    transform: translateY(30px);
}
.hero-sub strong {
    color: var(--pink);
    font-weight: 600;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 2.5s;
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--pink);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-primary);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* === CLIENTS === */
.clients {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}
.clients .section-title {
    color: var(--black);
}
.clients .section-tag {
    color: var(--pink);
}
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    flex-shrink: 0;
    min-width: max-content;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
}
.marquee-content.marquee-right {
    animation-direction: reverse;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(1);
    color: #000;
}
.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

/* === STATS === */
.stats {
    padding: 60px 0;
    background: var(--pink);
    border-top: none;
    border-bottom: none;
    overflow: hidden;
}
.stats-track {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat-block {
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    display: inline;
}
.stat-plus {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--lime);
}
.stat-label {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-family: var(--font-primary);
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}





/* === WORK / PORTFOLIO === */
.work {
    padding: 120px 0;
    background: var(--black);
}
.work-slider-wrapper {
    position: relative;
    padding: 0;
    margin: 40px 0 0 0;
}
.work-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.work-prev, .work-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.4s var(--ease-out-expo),
                color 0.4s var(--ease-out-expo),
                transform 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}
.work-prev:hover, .work-next:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: scale(1.08);
}
.work-prev:disabled, .work-next:disabled {
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}
.work-slider-container {
    overflow: hidden;
    width: 100%;
}
.work-showcase {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
    align-items: flex-start;
}
.work-project {
    min-width: 100%;
    flex: 0 0 100%;
}
.work-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.work-row.reversed {
    flex-direction: row-reverse;
}
.work-info {
    flex: 1;
    max-width: 500px;
    opacity: 0;
}
.work-number {
    font-family: var(--font-primary);
    color: var(--pink);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: 2px;
}
.work-number::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--pink);
}
.work-name {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
}
.work-desc {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.link-btn {
    color: var(--pink);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}
.link-btn i {
    transition: var(--transition-fast);
}
.link-btn:hover {
    color: var(--lime);
}
.link-btn:hover i {
    transform: translateX(5px);
}

/* 3D Visual Cards */
.work-visual-wrapper {
    flex: 0.9;
    max-width: 500px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.work-visual {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.work-visual img {
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease-out-expo);
}
.visual-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(230, 0, 126, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.work-visual:hover {
    border-color: rgba(230, 0, 126, 0.3);
}
.work-visual:hover img {
    transform: scale(1.05);
}
.work-visual:hover .visual-glow {
    opacity: 1;
}
.project-link:hover {
    gap: 16px;
}

/* === RESULTS === (White Background) */
.results {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}
.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,0,126,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.results .section-tag {
    color: var(--pink);
}
.results .section-title {
    color: var(--black);
}
.results .section-desc {
    color: #555;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.result-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.result-card.revealed {
    opacity: 1;
}
.result-card:hover {
    border-color: rgba(230,0,126,0.3);
    box-shadow: 0 12px 40px rgba(230,0,126,0.25);
}
.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(230,0,126,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pink);
    margin-bottom: 24px;
    transition: background 0.3s ease;
}
.result-card:hover .result-icon {
    background: rgba(230,0,126,0.15);
}
.result-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}
.result-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}
.result-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230,0,126,0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.result-card:hover .result-glow {
    opacity: 1;
}

/* === SERVICES === (Pink Background) */
.services {
    padding: 120px 0;
    background: var(--pink);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.services .section-tag {
    color: rgba(255, 255, 255, 0.9);
}
.services .section-title {
    color: var(--white);
}
.services .title-accent {
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.7));
}
.services .section-desc {
    color: rgba(255,255,255,0.8);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    margin-top: 50px;
    align-items: stretch;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s var(--ease-out-expo);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--pink);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.service-icon img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: #111;
}
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.service-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--lime));
    transition: width 0.4s var(--ease-out-expo);
}
.service-card:hover .service-line {
    width: 80%;
}

/* === ABOUT === (White Background) */
.about {
    padding: 120px 0;
    background: var(--white);
}
.about .section-tag {
    color: var(--pink);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.4s ease;
}
.about-img-container:hover img {
    filter: grayscale(0);
}
.about-img-border {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--pink), transparent 50%, var(--lime)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-img-container:hover .about-img-border {
    opacity: 1;
}
.about-headline {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--black);
}
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.about-content strong {
    color: var(--pink);
    font-weight: 600;
}
.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 100px;
    color: var(--black);
    transition: border-color 0.4s var(--ease-out-expo),
                background 0.4s var(--ease-out-expo),
                color 0.4s var(--ease-out-expo),
                transform 0.4s var(--ease-out-expo);
}
.badge i {
    color: var(--pink);
}
.badge:hover {
    border-color: var(--pink);
    background: rgba(230,0,126,0.06);
    color: var(--pink);
}

/* === PROCESS === */
.process {
    padding: 120px 0;
    background: var(--dark);
}
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
}
.process-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.06);
    z-index: 1;
}
.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--pink), var(--lime));
    transition: height 0.3s ease;
}
.process-line {
    position: absolute;
    left: 31px;
    top: 0;
    bottom: -100px;
    width: 2px;
    background: #333;
}
.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e6007e, #c4ff00);
    border-radius: 2px;
    transform-origin: top center;
    transform: scaleY(0);
    will-change: transform;
    pointer-events: none;
    z-index: 1;
}
.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
}
.process-step:last-child {
    margin-bottom: 0;
}
.step-marker {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.step-marker span {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    color: var(--pink);
}
.process-step.active .step-marker {
    border-color: var(--pink);
    background: var(--dark);
    box-shadow: 0 0 30px rgba(230,0,126,0.2);
}
.step-card {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s var(--ease-out-expo);
}
.step-card:hover {
    border-color: rgba(230,0,126,0.2);
    background: rgba(255,255,255,0.04);
}
.step-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
}


/* === TESTIMONIALS === (Lime Green Background) */
.testimonials {
    padding: 60px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.testimonials .section-head {
    margin-bottom: 32px;
}
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lime);
    z-index: 0;
    clip-path: circle(var(--radius, 0px) at var(--x, 50%) 0%);
    pointer-events: none;
}
.testimonials .container,
.testimonials-wrapper {
    position: relative;
    z-index: 1;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,0,126,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials .section-tag {
    color: var(--black);
    opacity: 0.6;
}
.testimonials .section-title {
    color: var(--black);
}
.testimonials .title-accent {
    background: linear-gradient(90deg, var(--pink), var(--black));
}
.testimonials .section-desc {
    color: rgba(0,0,0,0.6);
}
.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.testimonial-slider {
    position: relative;
    min-height: 280px;
}
.testimonial-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
    pointer-events: none;
    z-index: 0;
}
.testimonial-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    z-index: 2;
}
.testimonial-slide.prev {
    opacity: 0.2;
    transform: translate(-145%, -50%) scale(0.8);
    z-index: 1;
}
.testimonial-slide.next {
    opacity: 0.2;
    transform: translate(45%, -50%) scale(0.8);
    z-index: 1;
}
.testimonial-card {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 40px 36px 32px;
    text-align: left;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: var(--pink);
    opacity: 0.5;
    pointer-events: none;
}
.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 100px;
    line-height: 0.5;
    color: var(--pink);
    opacity: 0.4;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.author-info h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}
.author-info span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.t-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.25);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}
.t-btn:hover {
    border-color: var(--pink);
    background: rgba(230,0,126,0.15);
    color: var(--pink);
}
.t-dots {
    display: flex;
    gap: 8px;
}
.t-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: none;
}
.t-dots .dot.active {
    background: var(--pink);
    width: 24px;
    border-radius: 4px;
}

/* === PRESS === (White Background) */
.press {
    padding: 100px 0;
    background: var(--white);
}
.press .section-tag {
    color: var(--pink);
}
.press .section-title {
    color: var(--black);
}
.press-marquee-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.press-marquee-row {
    display: contents;
}
.press-grid {
    display: contents;
}
.press-grid.duplicate-on-mobile {
    display: none;
}
.press-item {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    aspect-ratio: 1.3;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
.press-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
.press-item img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    clip-path: inset(2px 12px 2px 2px);
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.press-item:hover {
    border-color: rgba(230,0,126,0.5);
    background: rgba(230,0,126,0.02);
}
.press-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* === FOOTER === */
.footer {
    background: var(--black);
}
.footer-submit-btn {
    padding: 16px 40px;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 8px;
}
.footer-cta-title {
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.1;
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -2px;
}
.footer-cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(230,0,126,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content {
    position: relative;
}
.cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--white);
}
.cta-content h2 span {
    background: linear-gradient(90deg, var(--pink), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-big {
    font-size: 16px;
    padding: 20px 48px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 0;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}
.footer-copy {
    font-size: 13px;
    color: var(--gray);
}
.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col a, .footer-col p {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: var(--pink);
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray);
    transition: border-color 0.4s var(--ease-out-expo),
                color 0.4s var(--ease-out-expo),
                background 0.4s var(--ease-out-expo),
                transform 0.4s var(--ease-out-expo);
}
.social-icons a:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(230,0,126,0.1);
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid .result-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-content { padding: 0 24px; }
    .stats-track { padding: 0 24px; }
    .work { padding: 80px 0; }
    .results { padding: 80px 0; }
    .services { padding: 80px 0; }
    .about { padding: 80px 0; }
    .press { padding: 80px 0; }
}

@media (max-width: 768px) {
    .section-head {
        margin-bottom: 40px;
    }
    .section-head .section-tag {
        /* Let inline margins or default margins apply, overriding the forced order */
    }
    .section-head .section-title {
        margin-bottom: 8px !important;
        line-height: 1.2;
    }
    .section-head .section-desc {
        margin-top: 8px !important;
    }

    #cursor-dot, #cursor-ring { display: none !important; }
    body, a, button, * { cursor: auto !important; }
    
    .marquee-content { 
        animation: scrollMarquee 12s linear infinite; 
        gap: 20px;
        padding: 0;
        padding-right: 20px;
    }
    .desktop-br { display: none; }
    
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-inner { justify-content: center; }
    
    .hero-headline { font-size: clamp(52px, 15vw, 80px); }
    .hero-headline .em-underline { top: auto !important; bottom: 0px !important; height: 3px !important; }
    
    .hero {
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 100px;
    }
    .hero-left-gradient {
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    }
    .hero-content {
        margin-left: 0;
        padding: 0 24px;
        text-align: center;
    }
    .hero-sub {
        margin: 0 auto 40px auto;
        font-size: 22px;
        line-height: 1.5;
    }
    #enquire-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }    
    .stats-content { gap: 24px; }
    .stat-divider { display: none; }
    .stat-block { min-width: 120px; }
    
    .work-project {
        display: flex;
        flex-direction: column;
    }
    .work-desc {
        text-align: left !important;
    }
    .work-row {
        display: contents; /* Flatten to allow reordering */
    }
    .work-project > div:nth-child(1) > .work-info { order: 1; margin-bottom: 24px; }
    .work-project > div:nth-child(1) > .work-visual-wrapper { order: 2; margin-bottom: 24px; }
    .work-project > div:nth-child(3) > .work-visual-wrapper { order: 3; margin-bottom: 40px; }
    .work-project > .work-approach { order: 4; margin-bottom: 40px; }
    .work-project > div:nth-child(3) > .work-info { order: 5; margin-bottom: 0; }
    
    .work-slider-wrapper { position: relative; }
    .work-slider-controls {
        position: absolute;
        top: 24px;
        right: 0;
        margin-top: 0;
        display: flex;
        gap: 16px;
        z-index: 10;
    }
    .work-slider-controls button {
        color: var(--pink);
        border-color: var(--pink);
        font-size: 20px;
    }
    .work-name {
        padding-right: 100px;
        font-size: clamp(20px, 5.5vw, 28px);
        white-space: nowrap;
    }
    
    .work-visual { height: auto; aspect-ratio: auto; }
    .work-visual img { width: 100%; height: auto; object-fit: contain; }
    
    .results-grid { grid-template-columns: 1fr; }
    .results-grid .result-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-container img { height: 350px; }
    .about-content { text-align: center; }
    .title-accent.left { margin: 0 auto 24px; }
    .about-badges { justify-content: center; }
    
    .process-step { gap: 20px; }
    .step-marker { width: 48px; height: 48px; }
    .process-line { left: 23px; }
    
    footer .container { flex-direction: column-reverse !important; align-items: flex-start !important; gap: 40px; }
    .footer-form, .footer-cta-text { max-width: 100% !important; padding: 0 !important; width: 100%; }
    .footer-cta-text { text-align: center; }
    .footer-form button[type="submit"], .footer-submit-btn { width: 100%; }
    .footer-bottom .container { flex-direction: column; align-items: center !important; text-align: center; gap: 20px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 16px; }
    .social-icons { justify-content: center; }
    
    .press-marquee-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4px;
        overflow: hidden;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .press-marquee-row {
        display: flex;
        width: 100%;
    }
    .press-grid {
        display: flex;
        flex-shrink: 0;
        animation: pressMarquee 12s linear infinite;
        gap: 20px;
        margin: 0;
        padding-right: 20px;
        width: max-content;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    .press-marquee-row.marquee-right .press-grid {
        animation-direction: reverse;
    }
    .press-grid.duplicate-on-mobile {
        display: flex;
    }
    .press-item {
        width: auto;
        height: 120px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        aspect-ratio: auto;
        opacity: 1;
        transform: none;
    }
    .press-item img {
        height: 100%;
        width: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
        clip-path: inset(3px);
        filter: none;
        opacity: 1;
    }
    
    .client-logo {
        width: auto;
        height: 120px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .client-logo img {
        height: 100%;
        width: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
        clip-path: inset(3px);
    }
    
    .testimonial-slider { min-height: 380px; }
    .testimonial-slide { width: 90%; height: 100%; }
    .testimonial-card { height: 100%; }
    .testimonial-slide.prev, .testimonial-slide.next { opacity: 0; visibility: hidden; }
    .testimonial-slide.active { transform: translate(-50%, -50%) scale(1); }

    .hero-sub br { display: none; }
    body { overflow-wrap: break-word; word-wrap: break-word; }

    .about-headline { font-size: 32px !important; margin-bottom: 24px !important; }
    .about-content p { font-size: 15px !important; line-height: 1.7 !important; }

    .result-card > div:nth-child(3) { top: 20px !important; left: 20px !important; font-size: 20px !important; }
    .result-card > div:nth-child(4) { bottom: 20px !important; left: 20px !important; right: 20px !important; min-height: auto !important; }
    .result-card > div:nth-child(4) h3 { font-size: clamp(18px, 4vw, 22px) !important; }
    .result-card > div:nth-child(4) p { font-size: 14px !important; }
    .results .section-desc { font-size: 16px !important; }

    .step-card { padding: 24px; }
    .step-card h3 { font-size: 18px; }
    .step-card p { font-size: 14px; }
    .process { padding: 60px 0 !important; }
    .process-timeline { margin-top: 40px !important; }

    .work { padding: 60px 0; }
    .results { padding: 60px 0; }
    .services { padding: 60px 0; }
    .about { padding: 60px 0; }
    .press { padding: 60px 0; }
    .testimonials { padding: 40px 0; }
    .clients { padding: 50px 0; }
    .stats > .container { margin-bottom: 30px !important; }
    footer { padding: 60px 0 0 !important; }
    .footer-bottom { margin-top: 40px !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }
    .hero-content { padding: 0 16px !important; }
    .stats-track { padding: 0 16px; }

    .hero-headline { font-size: clamp(40px, 12vw, 60px); }
    .hero-sub { font-size: 15px; line-height: 1.5; }
    .hero { padding-bottom: 60px; }
    .btn-primary, .btn-outline { font-size: 12px; padding: 14px 28px; }

    .footer-cta-title { font-size: 32px !important; letter-spacing: -1px; margin-bottom: 10px; }

    .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .service-card { padding: 24px 12px; }
    .service-icon img { width: 90px; height: 90px; }
    .service-card h3 { font-size: 14px; }

    .section-title { font-size: 28px; }
    .section-desc { font-size: 15px; }

    .stat-number { font-size: 36px; }
    .stat-block { min-width: 100px; }
    .stat-label { font-size: 12px; letter-spacing: 1.5px; }
    .stats { padding: 40px 0; }
    .stats > .container { margin-bottom: 20px !important; }
    .stats > .container p { font-size: 14px !important; }

    .work-name { padding-right: 0 !important; font-size: clamp(18px, 5vw, 24px) !important; white-space: normal !important; overflow: visible !important; text-overflow: clip !important; }
    .work-slider-controls {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        justify-content: center;
        margin-top: 24px !important;
        margin-bottom: 16px;
        z-index: auto;
    }
    .work-slider-controls button { width: 44px; height: 44px; font-size: 16px; }
    .work-approach h4 { font-size: 14px !important; }
    .work-approach p { font-size: 13px !important; }
    .work-info ul { font-size: 13px !important; }
    .work-info h4 { font-size: 14px !important; }

    .result-card > div:nth-child(3) { top: 16px !important; left: 16px !important; font-size: 16px !important; }
    .result-card > div:nth-child(4) { bottom: 16px !important; left: 16px !important; right: 16px !important; }
    .result-card > div:nth-child(4) h3 { font-size: 18px !important; }
    .result-card > div:nth-child(4) p { font-size: 13px !important; }

    .about-headline { font-size: 26px !important; }
    .about-content p { font-size: 14px !important; }

    .process-step { gap: 12px; margin-bottom: 32px; }
    .step-marker { width: 40px; height: 40px; }
    .step-marker span { font-size: 14px; }
    .process-line { left: 19px; }
    .step-card { padding: 20px 16px; }
    .step-card h3 { font-size: 16px; }
    .step-card p { font-size: 13px; line-height: 1.6; }

    .testimonial-text { font-size: 16px; }
    .testimonial-slider { min-height: 420px; }
    .testimonial-slide { width: 95%; height: 100%; }
    .testimonial-card { padding: 30px 20px; height: 100%; }
    .testimonial-card::before { font-size: 48px; top: 10px; left: 14px; }
    .marquee-content span { font-size: 50px; }

    .country-code-select { width: 95px; min-width: 95px; font-size: 13px; padding: 14px 4px 14px 8px; }

    .modal-content { padding: 28px 20px; }
    .modal-content h3 { font-size: 20px !important; }

    footer { padding: 60px 0 0 !important; }
    .footer-bottom { margin-top: 40px !important; }
    .footer-copy { font-size: 11px !important; }
}

@media (max-width: 375px) {
    .hero-headline { font-size: clamp(36px, 11vw, 48px); }
    .hero-sub { font-size: 14px; }
    .hero { padding-bottom: 50px; }

    .stat-number { font-size: 32px; }
    .stat-label { font-size: 11px; letter-spacing: 1px; }
    .stat-block { min-width: 80px; }

    .section-title { font-size: 24px; }
    .section-tag { font-size: 11px; letter-spacing: 2px; }

    .work-name { font-size: 20px !important; }
    .work-desc { font-size: 13px !important; }

    .services-grid { gap: 12px; }
    .service-card { padding: 20px 10px; }
    .service-icon img { width: 90px; height: 90px; }
    .service-card h3 { font-size: 13px; }

    .about-headline { font-size: 22px !important; }
    .about-content p { font-size: 13px !important; }

    .process-step { gap: 10px; }
    .step-marker { width: 36px; height: 36px; }
    .step-marker span { font-size: 12px; }
    .process-line { left: 17px; }
    .step-card { padding: 16px 14px; }
    .step-card h3 { font-size: 15px; }
    .step-card p { font-size: 12px; }

    .footer-cta-title { font-size: 28px !important; }

    .testimonial-text { font-size: 15px; }
    .testimonial-card { padding: 24px 16px; }
    .testimonial-slider { min-height: 400px; }
    .author-info h4 { font-size: 14px; }
    .author-info span { font-size: 12px; }

    .country-code-select { width: 85px; min-width: 85px; font-size: 12px; padding: 12px 4px 12px 6px; }

    .modal-content { padding: 24px 16px; }
    .modal-content h3 { font-size: 18px !important; }
    .modal-content input, .modal-content select { padding: 12px 14px; font-size: 15px; }

    .results-grid { gap: 20px; }
    .result-card > div:nth-child(4) h3 { font-size: 16px !important; }
    .result-card > div:nth-child(4) p { font-size: 12px !important; }

    .btn-primary, .btn-outline { font-size: 11px; padding: 12px 24px; }

    .marquee-content { gap: 30px; padding: 0 15px; }
    .press-grid { gap: 16px; padding-right: 16px; }
    .work-visual-wrapper > div[style*="grid"] { gap: 12px !important; }
}

@media (max-width: 320px) {
    .container { padding: 0 12px; }
    .nav-inner { padding: 0 12px; }
    .hero-content { padding: 0 12px !important; }
    .stats-track { padding: 0 12px; }

    .hero-headline { font-size: clamp(32px, 10vw, 40px); }
    .hero { padding-bottom: 40px; }

    .section-title { font-size: 22px; }
    .about-headline { font-size: 20px !important; }

    .work-name { font-size: 18px !important; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 24px 16px; }
    .service-icon img { width: 90px; height: 90px; }
    .service-card h3 { font-size: 15px; }

    .step-card { padding: 14px 12px; }
    .step-card h3 { font-size: 14px; }
    .step-card p { font-size: 12px; }
    .process-step { gap: 8px; margin-bottom: 24px; }
    .step-marker { width: 32px; height: 32px; }
    .step-marker span { font-size: 11px; }
    .process-line { left: 15px; }

    .footer-cta-title { font-size: 24px !important; letter-spacing: -0.5px; }

    .modal-content { padding: 20px 14px; }
    .modal-content input, .modal-content select { padding: 12px; font-size: 14px; }
    .country-code-select { width: 78px; min-width: 78px; font-size: 11px; padding: 12px 2px 12px 4px; }

    .testimonial-slider { min-height: 440px; }
    .testimonial-card { padding: 20px 14px; }
    .testimonial-text { font-size: 14px; }
    .testimonial-card::before { font-size: 40px; }

    .stat-number { font-size: 28px; }
    .stat-label { font-size: 10px; }
    .stat-block { min-width: 70px; }

    #footer-contact-form input,
    #footer-contact-form select,
    .footer-select { padding: 12px !important; font-size: 14px !important; }

    .phone-field-group { gap: 6px; }
    .footer-submit-btn { font-size: 14px !important; }
    .work-visual-wrapper > div[style*="grid"] { grid-template-columns: 1fr !important; gap: 12px !important; }
}

/* === ANIMATIONS === */
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes pressMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* === MODAL === */
#enquire-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo),
                visibility 0.4s var(--ease-out-expo),
                background-color 0.4s var(--ease-out-expo);
    pointer-events: none;
}
#enquire-modal.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,0.8);
    pointer-events: auto;
}
.modal-content {
    background: var(--dark-2);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.45s var(--ease-out-expo),
                opacity 0.4s var(--ease-out-expo);
    opacity: 0;
}
#enquire-modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s var(--ease-out-expo),
                transform 0.3s var(--ease-out-expo);
}
.modal-close:hover {
    color: var(--pink);
    transform: scale(1.15);
}
.modal-content input, .modal-content select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 16px;
    background: #111;
    color: #fff;
    outline: none;
    transition: border-color 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}
.modal-content input:focus, .modal-content select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.15);
}
.modal-content select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.modal-content select option {
    background: #111;
    color: #fff;
}
.footer-select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 16px;
    background: #111;
    color: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.footer-select option {
    background: #111;
    color: #fff;
}

/* === FORM FIELD WRAPPER & VALIDATION === */
.form-field {
    margin-bottom: 16px;
}
.field-error {
    display: none;
    font-size: 12px;
    color: #ff4444;
    font-family: var(--font-secondary);
    margin-top: 4px;
    padding-left: 4px;
}
.field-error.visible {
    display: block;
}
.input-error {
    border-color: #ff4444 !important;
}

/* === PHONE FIELD GROUP (country code + number) === */
.phone-field-group {
    display: flex;
    gap: 8px;
    width: 100%;
}
.country-code-select {
    width: 110px;
    min-width: 110px;
    flex-shrink: 0;
    padding: 14px 8px 14px 12px;
    border: 1px solid #333;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 14px;
    background: #111;
    color: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 18px;
    cursor: pointer;
}
.country-code-select option {
    background: #111;
    color: #fff;
    font-size: 14px;
}
.phone-field-group input[type="tel"] {
    flex: 1;
    min-width: 0;
}

/* Modal phone field inherits from .modal-content styles */
.modal-content .phone-field-group input[type="tel"] {
    margin-bottom: 0;
}
.modal-content .phone-field-group .country-code-select {
    width: 110px;
    min-width: 110px;
    margin-bottom: 0;
}
.modal-content .form-field input,
.modal-content .form-field select {
    margin-bottom: 0;
}
.modal-content .form-field {
    margin-bottom: 16px;
}
.modal-content .field-error {
    color: #ff4444;
}

/* Footer phone field: remove margin from inner input */
#footer-contact-form .phone-field-group input[type="tel"] {
    margin-bottom: 0;
}

/* === FORM FOCUS GLOW (footer & modal) === */
#footer-contact-form input,
#footer-contact-form select,
.footer-select,
.country-code-select {
    transition: border-color 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}
#footer-contact-form input:focus,
#footer-contact-form select:focus,
.footer-select:focus,
.country-code-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.15);
}
.modal-content .country-code-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.15);
}
