/* Custom properties */
:root {
    --bg-color: #fbfbfb; /* Cleaner, brighter white for Apple look */
    --text-primary: #111111; 
    --text-secondary: #666666;
    --border-color: #eaeaea;
    --accent-blue: #0066cc;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --nav-height: 90px;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* ============================================
   LENIS SMOOTH SCROLL (AWWWARDS BUTTERY FEEL)
   ============================================ */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Premium Text Selection */
::selection {
    background-color: var(--text-primary);
    color: #fff;
}

::-moz-selection {
    background-color: var(--text-primary);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Ambient Background */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-color);
    pointer-events: none;
}

/* Dark Mystical Chakra Energy Cursor Canvas */
.chakra-canvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.glow-1 {
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.25) 0%, rgba(0, 153, 255, 0.05) 70%, transparent 100%);
    top: -10%;
    right: -10%;
}

.glow-2 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.15) 0%, rgba(200, 230, 255, 0.05) 70%, transparent 100%);
    bottom: -20%;
    left: 10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.1); }
    100% { transform: translate(20px, -20px) scale(0.9); }
}

/* Chill Concentric Rings */
.chill-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 204, 0.05); /* very subtle blue border */
}

.ring-1 { width: 400px; height: 400px; }
.ring-2 { width: 750px; height: 750px; }
.ring-3 { width: 1100px; height: 1100px; }
.ring-4 { width: 1450px; height: 1450px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(180deg, rgba(251, 251, 251, 0.9) 0%, rgba(251, 251, 251, 0.4) 70%, rgba(251, 251, 251, 0) 100%);
    border: 1px solid transparent;
    border-radius: 0px;
    box-shadow: 0 0 0 transparent;
}

.navbar.scrolled {
    top: 16px;
    width: calc(100% - 48px);
    max-width: 1060px;
    height: 68px;
    border-radius: 100px;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.92) 0%, 
        rgba(244, 248, 255, 0.82) 50%, 
        rgba(255, 255, 255, 0.88) 100%
    );
    backdrop-filter: saturate(200%) blur(24px);
    -webkit-backdrop-filter: saturate(200%) blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 20px 40px -15px rgba(0, 30, 80, 0.1), 
        0 4px 12px -2px rgba(0, 0, 0, 0.03),
        inset 0 1px 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 2px 0 rgba(0, 102, 204, 0.1),
        inset 0 0 24px 0 rgba(255, 255, 255, 0.65);
}

/* ====================================================================
   CASE STUDY EXCLUSIVE PILL NAVBAR (ALWAYS A PILL WITH GRADIENT & INNER GLOW)
   ==================================================================== */
body.case-study-body .navbar {
    top: 24px !important;
    width: calc(100% - 48px) !important;
    max-width: 1240px !important;
    height: 80px !important;
    border-radius: 100px !important;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.94) 0%, 
        rgba(244, 248, 255, 0.86) 50%, 
        rgba(255, 255, 255, 0.90) 100%
    ) !important;
    backdrop-filter: saturate(200%) blur(28px) !important;
    -webkit-backdrop-filter: saturate(200%) blur(28px) !important;
    border: 1px solid rgba(255, 255, 255, 0.88) !important;
    box-shadow: 
        0 24px 48px -15px rgba(0, 30, 80, 0.15), 
        0 6px 16px -2px rgba(0, 0, 0, 0.04),
        inset 0 2px 3px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 3px 0 rgba(0, 102, 204, 0.15),
        inset 0 0 30px 0 rgba(255, 255, 255, 0.75) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.case-study-body .navbar .nav-container {
    padding: 0 40px !important;
    max-width: 100% !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.case-study-body .navbar .btn-primary {
    padding: 14px 28px !important;
    font-size: 15px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Scrolled state for Case Study Navbar (shrinks slightly) */
body.case-study-body .navbar.scrolled {
    top: 16px !important;
    width: calc(100% - 48px) !important;
    max-width: 1060px !important;
    height: 68px !important;
    border-radius: 100px !important;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.92) 0%, 
        rgba(244, 248, 255, 0.82) 50%, 
        rgba(255, 255, 255, 0.88) 100%
    ) !important;
    backdrop-filter: saturate(200%) blur(24px) !important;
    -webkit-backdrop-filter: saturate(200%) blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 
        0 20px 40px -15px rgba(0, 30, 80, 0.1), 
        0 4px 12px -2px rgba(0, 0, 0, 0.03),
        inset 0 1px 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 2px 0 rgba(0, 102, 204, 0.1),
        inset 0 0 24px 0 rgba(255, 255, 255, 0.65) !important;
}

body.case-study-body .navbar.scrolled .nav-container {
    padding: 0 28px !important;
}

body.case-study-body .navbar.scrolled .btn-primary {
    padding: 10px 22px !important;
    font-size: 14px !important;
}

/* Mobile overrides for Case Study Pill Navbar */
@media (max-width: 768px) {
    body.case-study-body .navbar {
        top: 16px !important;
        width: calc(100% - 24px) !important;
        height: 64px !important;
        border-radius: 32px !important;
    }
    body.case-study-body .navbar .nav-container {
        padding: 0 20px !important;
    }
    body.case-study-body .navbar.scrolled {
        top: 12px !important;
        width: calc(100% - 24px) !important;
        height: 56px !important;
        border-radius: 30px !important;
    }
    body.case-study-body .navbar.scrolled .nav-container {
        padding: 0 18px !important;
    }
}

/* Seamless mobile burger menu open state */
body.no-scroll.case-study-body .navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    height: var(--nav-height) !important;
    border-radius: 0 !important;
}

/* Seamless mobile menu integration */
body.no-scroll .navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    border-radius: 0 !important;
}

body.no-scroll .navbar .nav-logo {
    color: #fff !important;
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .nav-container {
    padding: 0 28px;
    max-width: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.03em;
}

/* Desktop Links */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    display: inline-block;
    height: 20px; 
    line-height: 20px;
}

.nav-link span {
    display: block;
    transition: transform var(--transition-smooth);
}

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    transition: transform var(--transition-smooth);
    color: var(--accent-blue);
}

.nav-link:hover span {
    transform: translateY(-100%);
}

.nav-link:hover::after {
    transform: translateY(-100%);
}

/* Magnetic Button (Directional Fill) */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.1);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
    transition: all var(--transition-smooth), transform 0.2s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.navbar.scrolled .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
}

.btn-primary:hover {
    border-color: var(--text-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-text i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-text i {
    transform: translateX(4px);
}

.btn-fill {
    position: absolute;
    background-color: var(--text-primary);
    z-index: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
}

/* Burger Menu */
.burger-trigger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    width: 32px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.burger-lines {
    position: relative;
    width: 20px;
    height: 14px;
}

.burger-lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-lines span:nth-child(1) {
    top: 0;
}

.burger-lines span:nth-child(2) {
    bottom: 0;
}

.burger-trigger.active .burger-lines span {
    background-color: #fff;
}

.burger-trigger.active .burger-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-trigger.active .burger-lines span:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-inner {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mobile-nav-links {
    list-style: none;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a {
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 500;
    letter-spacing: -0.02em;
    display: inline-block;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-blue);
}

.mobile-cta-li {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.mobile-cta {
    font-size: 24px !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
}

.mobile-cta i {
    color: var(--accent-blue);
}

.mobile-menu-footer {
    color: #888;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 40px);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dot,
.eyebrow-pill .dot,
.hero-eyebrow .dot,
.works-badge .dot,
.process-badge .dot,
.about-badge .dot,
.cta-badge .dot {
    width: 6px !important;
    height: 6px !important;
    background-color: var(--accent-blue) !important;
    border-radius: 50% !important;
    display: block !important;
    animation: none !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
}

.hero-headline {
    font-size: clamp(40px, 6vw, 92px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--text-primary) 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Hero Text Rotator (Clean Awwwards Blur & Slide Animation) */
.hero-rotator {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    position: relative;
    vertical-align: bottom;
    max-width: 100%;
}

.rotator-item {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(18px) scale(0.96);
    pointer-events: none;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rotator-item.active {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.rotator-item.exit-up {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-18px) scale(0.96);
}

.rotator-item.exit-down {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(18px) scale(0.96);
}

.rotator-item.enter-from-bottom {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(18px) scale(0.96);
    transition: none;
}

.rotator-item.enter-from-top {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-18px) scale(0.96);
    transition: none;
}

.hero-copy {
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.hero-btn {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    transition: background-color var(--transition-smooth), transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.btn-secondary-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-inner i {
    font-size: 20px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.btn-secondary:hover .btn-secondary-inner i {
    color: var(--accent-blue);
}

.hero-credibility {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 40px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
    opacity: 0.8;
}

.separator {
    color: rgba(0,0,0,0.15);
}

/* ============================================
   INFINITE MARQUEE SECTION (FRAME-LESS, EDGE-TO-EDGE)
   ============================================ */
.infinite-marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
    user-select: none;
    pointer-events: none;
}

.infinite-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
}

.infinite-marquee-content {
    display: flex;
    align-items: center;
    gap: 70px;
    padding-right: 70px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(44px, 7.5vw, 90px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    opacity: 0.20;
}

.infinite-marquee-content span.star {
    font-size: 0.65em;
    color: #0071e3;
    opacity: 0.85;
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .infinite-marquee-section {
        margin-top: 40px;
        margin-bottom: 20px;
        padding: 20px 0;
    }
    .infinite-marquee-content {
        gap: 36px;
        padding-right: 36px;
        font-size: clamp(32px, 7vw, 44px);
    }
}

/* ============================================
   SELECTED WORKS SECTION
   ============================================ */
.works {
    padding: 120px 0 100px;
    position: relative;
}

.works-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.eyebrow-pill,
.hero-eyebrow,
.works-badge,
.process-badge,
.about-badge,
.cta-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 16px !important;
    border-radius: 100px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 24px !important;
    line-height: 1 !important;
    backdrop-filter: blur(10px);
}

.works-badge {
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--accent-blue);
}

.works-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    box-shadow: none !important;
}

.works-heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.works-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.works-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 20px;
}

.works-arrow:hover {
    background-color: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
    transform: scale(1.05);
}

.works-arrow:active {
    transform: scale(0.95);
}

.works-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Slider */
.works-slider {
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.works-slider:active {
    cursor: grabbing;
}

.works-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Cards */
.work-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.work-card-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-card-number {
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 700;
    color: rgba(255,255,255,0.08);
    letter-spacing: -0.05em;
    line-height: 1;
    transition: color 0.4s ease, transform 0.6s ease;
}

.work-card:hover .work-card-number {
    color: rgba(255,255,255,0.15);
    transform: scale(1.1);
}

.work-card-info {
    padding: 28px;
}

.work-card-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.work-card-info p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.work-card-tags {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-blue);
}

.process {
    position: relative;
    padding: 0;
    margin: 100px 0 0 0;
}

/* Visual Layer — JS toggles between fixed/absolute */
.process-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.process-visual.is-fixed {
    position: fixed;
    top: 0;
}

.process-visual.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

.process-bg-wrapper {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    background-color: #0c1017;
}

.process-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: translate3d(0, 3%, 0) scale(1.08);
    will-change: opacity, transform, filter;
    filter: contrast(105%) brightness(85%);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
    z-index: 0;
}

.process-bg-img.active {
    opacity: 1;
    transform: translate3d(var(--shift-x, 0%), 0, 0) scale(1);
    filter: contrast(105%) brightness(95%);
    z-index: 2;
}

.process-bg-img.prev-active {
    opacity: 0;
    transform: translate3d(var(--shift-x, 0%), -4%, 0) scale(1.04);
    z-index: 1;
}

.process-bg-img.next-active {
    opacity: 0;
    transform: translate3d(var(--shift-x, 0%), 4%, 0) scale(1.1);
    z-index: 1;
}

/* Cinematic Vignette Overlay */
.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.process-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    z-index: 3;
    transition: background 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.process-glow-left {
    top: 20%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.8) 0%, transparent 70%);
}

.process-glow-right {
    bottom: 20%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.6) 0%, transparent 70%);
}

/* Scrolling Content Layer */
.process-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px 100px 40px;
}

.process-header {
    max-width: 1100px;
    margin: 0 0 160px 0;
    color: #fff;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.process-badge .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #3399ff !important;
    box-shadow: none !important;
}

.process-heading {
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    font-weight: 400;
}

/* Sticky Stacking Cards Container */
.process-cards {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

/* Each wrapper is sticky â€” cards stack on each other */
.process-card-wrapper {
    position: sticky;
    top: calc(100px + var(--card-index) * 40px);
    margin-bottom: 60px;
    z-index: calc(1 + var(--card-index));
    will-change: transform;
}

/* The card itself â€” glassmorphism */
.process-card {
    width: 100%;
    max-width: 620px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(32px);
    -webkit-backdrop-filter: saturate(180%) blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 32px;
    padding: 48px;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.45),
        0 12px 24px -6px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px 0 rgba(255, 255, 255, 1),
        inset 0 0 20px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, filter 0.6s ease;
    position: relative;
    overflow: hidden;
}

/* Alternating layout â€” odd left, even right */
.process-card-wrapper:nth-child(odd) .process-card {
    margin-left: 0;
    margin-right: auto;
}

.process-card-wrapper:nth-child(even) .process-card {
    margin-left: auto;
    margin-right: 0;
}

.process-card.active-step {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 1);
    box-shadow:
        0 45px 100px -15px rgba(0, 0, 0, 0.6),
        0 0 45px 0 rgba(0, 102, 204, 0.18),
        inset 0 1px 3px 0 rgba(255, 255, 255, 1);
}

.process-card.stacked-prev {
    opacity: 0.35;
    transform: scale(0.94) translateY(-10px);
    filter: blur(1.5px);
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
}

.process-card.stacked-next {
    opacity: 0.65;
    transform: scale(0.98) translateY(14px);
    border-color: rgba(255, 255, 255, 0.6);
}

.process-card:hover {
    border-color: #ffffff;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        0 16px 32px -8px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px 0 rgba(255, 255, 255, 1),
        inset 0 0 30px 0 rgba(0, 102, 204, 0.12);
    transform: translateY(-6px);
}

.process-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #0066cc;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.process-tag {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #515154;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.process-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.process-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 32px;
}

.process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333336;
    font-weight: 500;
}

.process-list li i {
    color: #0066cc;
    font-size: 20px;
    flex-shrink: 0;
}


/* ============================================
   ABOUT ME SECTION
   ============================================ */
.about {
    position: relative;
    padding: 160px 0;
    background-color: var(--bg-color);
    z-index: 10;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    box-shadow: none !important;
    flex-shrink: 0;
}

.about-headline {
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-top: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-bio {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bio-lead {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.bio-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 48px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.stat-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   BUSINESS CTA / VIDEO RECTANGLE
   ============================================ */
.business-cta {
    position: relative;
    padding: 40px 0 160px 0;
    background-color: var(--bg-color);
    z-index: 10;
}

.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-rectangle {
    position: relative;
    width: 100%;
    min-height: 680px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.35),
        inset 0 1px 2px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #0c1017;
}

.cta-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: contrast(110%) brightness(85%);
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 80, 200, 0.25) 0%, rgba(10, 14, 22, 0.85) 100%),
        linear-gradient(180deg, rgba(10, 14, 22, 0.4) 0%, rgba(10, 14, 22, 0.6) 100%);
    z-index: 2;
}

.cta-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 780px;
    background: linear-gradient(135deg, rgba(0, 95, 255, 0.88) 0%, rgba(0, 50, 180, 0.94) 100%);
    backdrop-filter: saturate(180%) blur(32px);
    -webkit-backdrop-filter: saturate(180%) blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    padding: 64px 56px;
    text-align: center;
    box-shadow: 
        0 40px 90px -15px rgba(0, 50, 180, 0.65),
        inset 0 1px 3px 0 rgba(255, 255, 255, 0.5),
        inset 0 0 50px 0 rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 50px 100px -15px rgba(0, 50, 180, 0.75),
        inset 0 1px 4px 0 rgba(255, 255, 255, 0.6),
        inset 0 0 60px 0 rgba(255, 255, 255, 0.25);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.cta-badge .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #3399ff !important;
    box-shadow: none !important;
}

.cta-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subdesc {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background-color: #ffffff;
    color: #0055ff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: #f4f8ff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* About & CTA Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-stats {
        padding: 36px;
    }
    .cta-card {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    .about-container, .cta-container {
        padding: 0 20px;
    }
    .cta-rectangle {
        padding: 40px 20px;
        min-height: auto;
        border-radius: 28px;
    }
    .cta-card {
        padding: 36px 24px;
        border-radius: 24px;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet landscape */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    .navbar.scrolled .nav-container {
        padding: 0 24px;
    }
    .hero-container {
        padding: 0 30px;
    }
    .nav-links {
        gap: 24px;
    }
    .works-container {
        padding: 0 30px;
    }
    .work-card {
        flex: 0 0 calc(50% - 12px);
    }
    .process-content {
        padding: 100px 30px 100px 30px;
    }
    .process-card {
        padding: 40px;
    }
}

/* Tablet portrait & small laptops */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }
    .burger-trigger {
        display: flex;
    }
    .works {
        padding: 80px 0 60px;
    }
    .works-header {
        margin-bottom: 40px;
    }
    .process-content {
        padding: 80px 30px 100px 30px;
    }
    .process-card-wrapper {
        top: calc(80px + var(--card-index) * 30px);
        margin-bottom: 40px;
    }
    .process-card-wrapper:nth-child(odd) .process-card,
    .process-card-wrapper:nth-child(even) .process-card {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .navbar.scrolled {
        top: 12px;
        width: calc(100% - 24px);
        height: 56px;
        border-radius: 30px;
    }

    .navbar.scrolled .nav-container {
        padding: 0 18px;
    }

    .hero {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        padding-top: calc(var(--nav-height) + 20px);
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: clamp(32px, 9vw, 52px);
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btn, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-credibility {
        gap: 10px;
        font-size: 13px;
        margin-top: 20px;
    }

    .mobile-menu {
        height: 100vh;
        height: 100dvh;
    }

    .mobile-nav-links a {
        font-size: clamp(28px, 7vw, 40px);
    }

    /* Works mobile */
    .works-container {
        padding: 0 20px;
    }

    .works-header {
        flex-direction: row;
        align-items: flex-end;
        margin-bottom: 32px;
    }

    .works-heading {
        font-size: clamp(28px, 7vw, 40px);
    }

    .works-nav {
        gap: 6px;
    }

    .works-arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .work-card {
        flex: 0 0 85vw;
        min-width: 280px;
    }

    .work-card-image {
        height: 220px;
    }

    .work-card-info {
        padding: 22px;
    }

    .work-card-info h3 {
        font-size: 20px;
    }
    .process-content {
        padding: 60px 20px 100px 20px;
    }
    .process-header {
        margin-bottom: 80px;
    }
    .process-card-wrapper {
        top: calc(70px + var(--card-index) * 24px);
        margin-bottom: 30px;
    }
    .process-card {
        padding: 32px 24px;
    }
    .process-card {
        border-radius: 24px;
    }
    .process-number {
        font-size: 36px;
    }
    .process-title {
        font-size: 24px;
    }
    .process-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .process-list li {
        font-size: 14px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    :root {
        --nav-height: 60px;
    }

    .logo-text {
        font-size: 17px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .navbar.scrolled {
        top: 10px;
        width: calc(100% - 20px);
        height: 52px;
        border-radius: 26px;
    }

    .navbar.scrolled .nav-container {
        padding: 0 14px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-headline {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero-eyebrow {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .mobile-menu-inner {
        padding: 30px 20px;
    }

    .mobile-nav-links {
        gap: 24px;
    }

    .mobile-cta-li {
        margin-top: 24px;
        padding-top: 24px;
    }

    .works-container {
        padding: 0 16px;
    }

    .work-card {
        flex: 0 0 90vw;
    }
    .process-content {
        padding: 50px 16px 80px 16px;
    }
    .process-card-wrapper {
        top: calc(60px + var(--card-index) * 20px);
        margin-bottom: 24px;
    }
    .process-card {
        padding: 24px 18px;
    }
    .process-card {
        border-radius: 20px;
    }
    .process-card-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    .process-number {
        font-size: 30px;
    }
    .process-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 90;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
    color: #fff;
}

.floating-cta-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.floating-cta i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .floating-cta-text {
        display: none;
    }

    .floating-cta i {
        font-size: 24px;
        margin-bottom: 0;
    }
}

/* ============================================
   AWWWARDS-WINNING FOOTER & INTERACTIVE TOOL
   ============================================ */
.site-footer {
    position: relative;
    background-color: #070a0f;
    color: #ffffff;
    padding: 120px 0 50px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.footer-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.footer-glow-1 {
    top: -10%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.8) 0%, transparent 70%);
}

.footer-glow-2 {
    bottom: 0%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.6) 0%, transparent 70%);
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.04em;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #0088ff;
}

.footer-bio {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    max-width: 420px;
}

.footer-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0088ff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links li a i {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-links li a:hover i {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-location-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-location-time i {
    color: #0088ff;
    font-size: 18px;
}

.footer-location-time strong {
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.footer-back-to-top a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-back-to-top a:hover {
    color: #ffffff;
}

/* ============================================
   FAQ ACCORDION SECTION (ABOUT ME)
   ============================================ */
.faq-section {
    padding: 60px 0 100px 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    background: #ffffff;
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    background: #ffffff;
    border-color: #0066cc;
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.12);
}

.faq-question {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    color: #1d1d1f;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #0066cc;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    background: #0066cc;
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 32px 32px 32px;
    color: #515154;
    font-size: 16px;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* ============================================
   EXTRAORDINARY WORK PORTFOLIO
   ============================================ */
.work-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
    justify-content: center;
}

.work-filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.work-filter-btn.active {
    background: #0088ff;
    color: #ffffff;
    border-color: #0088ff;
    box-shadow: 0 8px 25px rgba(0, 136, 255, 0.35);
}

/* Flagship Featured Project Card */
.flagship-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-bottom: 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.flagship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px rgba(0, 136, 255, 0.2);
}

.flagship-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f2f5;
    min-height: 420px;
}

.flagship-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-card:hover .flagship-img {
    transform: scale(1.05);
}

.flagship-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #1d1d1f;
}

.flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088ff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 24px;
}

.flagship-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.flagship-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 32px;
}

.flagship-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.flagship-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #0066cc;
    display: block;
}

.flagship-stat-label {
    font-size: 12px;
    color: #6e6e73;
    font-weight: 500;
}

/* Bento Work Grid */
.bento-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bento-work-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 136, 255, 0.15);
}

.bento-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f0f2f5;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-work-card:hover .bento-img {
    transform: scale(1.06);
}

.bento-content {
    padding: 36px 36px 40px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    color: #1d1d1f;
}

.bento-category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0066cc;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bento-title {
    font-size: 26px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 14px;
    line-height: 1.2;
}

.bento-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 28px;
}

.bento-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bento-tag {
    font-size: 11px;
    font-weight: 600;
    color: #424245;
    background: #f5f5f7;
    padding: 4px 10px;
    border-radius: 6px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0066cc;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bento-link:hover {
    color: #004499;
    transform: translateX(4px);
}

/* Diagonal Staircase Cards for Services */
.diagonal-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.diagonal-cards .service-step-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px;
    width: 75%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.diagonal-cards .service-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.diagonal-cards .service-step-card:nth-child(1) {
    margin-left: 0%;
}
.diagonal-cards .service-step-card:nth-child(2) {
    margin-left: 8.33%;
}
.diagonal-cards .service-step-card:nth-child(3) {
    margin-left: 16.66%;
}
.diagonal-cards .service-step-card:nth-child(4) {
    margin-left: 25%;
}

.service-card-num {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 12px;
}

.service-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 24px;
}

/* ============================================
   INTERACTIVE TYPEFORM CONTACT SECTION
   ============================================ */
.typeform-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: flex-start;
}

.typeform-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.typeform-subcopy {
    font-size: 18px;
    line-height: 1.65;
    color: #515154;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.contact-card-apple {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.contact-card-apple:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-color: #0066cc;
}

.contact-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.email-icon { background: #e6f2ff; color: #0066cc; }
.wa-icon { background: #ecfdf5; color: #059669; }
.li-icon { background: #f0f9ff; color: #0284c7; }
.ig-icon { background: #fff0f5; color: #e1306c; }

.contact-card-apple:hover .contact-icon-box {
    transform: scale(1.08);
}

.contact-arrow {
    font-size: 20px;
    color: #a1a1a6;
    transition: all 0.3s ease;
}

.contact-card-apple:hover .contact-arrow {
    color: #1d1d1f;
    transform: translate(3px, -3px);
}

.contact-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

.typeform-box {
    background: #ffffff;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.tf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #6e6e73;
}

.tf-progress {
    width: 100%;
    height: 6px;
    background: #f0f2f5;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 36px;
}

.tf-progress-bar {
    height: 100%;
    background: #0066cc;
    width: 25%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-step {
    display: none;
    animation: fadeInSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tf-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tf-question {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.25;
}

.tf-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #1d1d1f;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 40px;
}

.tf-input:focus {
    border-bottom-color: #0066cc;
}

.tf-input::placeholder {
    color: #a1a1a6;
    font-weight: 400;
}

.tf-textarea {
    font-size: 18px;
    line-height: 1.6;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 20px;
    resize: none;
}

.tf-textarea:focus {
    border-color: #0066cc;
}

.tf-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tf-option {
    background: #f5f5f7;
    border: 2px solid transparent;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tf-option:hover {
    background: #e8e8ed;
}

.tf-option.active {
    background: #e6f2ff;
    border-color: #0066cc;
    color: #0066cc;
}

.tf-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tf-btn-next, .tf-btn-submit {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.tf-btn-next:hover, .tf-btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.tf-btn-back {
    background: transparent;
    border: none;
    color: #6e6e73;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 100px;
    transition: color 0.2s ease, background 0.2s ease;
}

.tf-btn-back:hover {
    color: #1d1d1f;
    background: #f5f5f7;
}

.tf-success {
    text-align: center;
    padding: 30px 0;
}

.tf-success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

/* Full Responsive Footer & Layout Rules */
@media (max-width: 1024px) {
    .typeform-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .diagonal-cards .service-step-card {
        width: 100%;
        margin-left: 0 !important;
        padding: 36px;
    }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .brand-col {
        grid-column: span 2;
    }
    .flagship-card {
        grid-template-columns: 1fr;
    }
    .flagship-img-wrapper {
        min-height: 320px;
    }
    .bento-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 80px 0 40px 0;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .brand-col {
        grid-column: span 1;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
    .flagship-content {
        padding: 32px 24px;
    }
    .flagship-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .bento-content {
        padding: 28px 24px;
    }
    .bento-img-wrapper {
        height: 240px;
    }
    .work-filter-tabs {
        gap: 6px;
    }
    .work-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    .typeform-box {
        padding: 32px 20px;
    }
    .tf-question {
        font-size: 22px;
    }
    .bento-work-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   ACCESSIBILITY (A11Y) & PERFORMANCE OPTIMIZATIONS
   ============================================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: #000000;
    color: #ffffff;
    padding: 12px 24px;
    z-index: 999999;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: top 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.skip-link:focus {
    top: 20px;
    outline: 3px solid #0066cc;
}

/* Accessible focus rings for keyboard navigators */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid #0066cc;
    outline-offset: 3px;
}

/* Respect user motion preferences for accessibility & battery saving */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

