/* ============================================
   FONTS
   Space Grotesk (body) + JetBrains Mono (headings)
   Clean, technical, no-nonsense
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=JetBrains+Mono:wght@400;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   COLOR SCHEME
   Change these variables to customize colors site-wide
   --accent: Main highlight color (Miami blue)
   --accent-hover: Slightly darker version for hover states
   ============================================ */
:root {
    --black: #0a0a0a;
    /* Background color */
    --white: #ffffff;
    /* Text color */
    --chrome: #c0c0c0;
    /* Secondary text / borders */
    --silver: #e8e8e8;
    /* Light accents */
    --platinum: #f4f4f4;
    /* Lightest shade */
    --steel: #1a1a1a;
    /* Dark sections background */

    /* Primary Accent - Miami Blue */
    --accent: #00D9FF;
    --accent-hover: #00B8E6;
    --accent-glow: rgba(0, 217, 255, 0.3);

    /* Miami Sunset Palette */
    --coral: #FF6B6B;
    --coral-glow: rgba(255, 107, 107, 0.3);
    --purple: #A855F7;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --pink: #EC4899;
    --pink-glow: rgba(236, 72, 153, 0.3);
    --orange: #F97316;
    --orange-glow: rgba(249, 115, 22, 0.3);

    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, var(--coral) 0%, var(--orange) 50%, var(--pink) 100%);
    --gradient-ocean: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    --gradient-vibrant: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--accent) 100%);
}

/* ============================================
   TEXT SELECTION STYLING
   ============================================ */
::selection {
    background: var(--white);
    color: var(--black);
}

/* ============================================
   ACCESSIBILITY - SKIP LINK
   Hidden by default, visible on focus
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--black);
    padding: 1rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* ============================================
   ACCESSIBILITY - SCREEN READER ONLY
   Visually hidden but accessible to AT
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ACCESSIBILITY - FOCUS STATES
   Visible focus indicators for keyboard navigation
   ============================================ */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Enhanced focus for links */
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Enhanced focus for buttons */
button:focus-visible,
.cta:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.2);
}

/* Form input focus */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-bottom-color: var(--accent);
    box-shadow: 0 2px 0 0 var(--accent);
}

/* Card hover/focus states */
.work-step:focus-visible,
.value-item:focus-visible,
.info-box:focus-visible,
.service-item:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* ============================================
   ACCESSIBILITY - REQUIRED FIELD INDICATOR
   ============================================ */
.required {
    color: var(--coral);
    font-weight: 700;
}


/* ============================================
   BODY STYLES
   Main font family and background settings
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    /* Change to your preferred body font */
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   Adds subtle texture to background
   Adjust opacity (currently 0.03) to make more/less visible
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, .1) 2px, rgba(255, 255, 255, .1) 4px);
}

/* ============================================
   NAVIGATION BAR
   Fixed to top of page
   mix-blend-mode: difference creates the color-inverting effect
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: min(1600px, 98vw);
    margin: 0 auto;
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -2px;
}

.logo a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: clamp(36px, 5vw, 50px);
    width: auto;
    max-width: clamp(180px, 25vw, 300px);
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: clamp(1.25rem, 3vw, 2rem);
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    will-change: transform;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent);
    color: var(--accent);
}

/* ============================================
   HAMBURGER MENU
   Mobile navigation toggle - Elegant animation
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 48px;
    height: 48px;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 26px;
    height: 2px;
    background: var(--white);
    display: block;
    border-radius: 1px;
    transform-origin: center;
    transition: 
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.25s ease,
        width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.3s ease;
}

.hamburger span:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(8px);
}

/* Hover state - subtle width change */
.hamburger:hover span:nth-child(1) {
    transform: translateY(-8px);
    width: 22px;
}

.hamburger:hover span:nth-child(3) {
    transform: translateY(8px);
    width: 22px;
}

/* Active state - elegant X formation */
.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    width: 26px;
}

.hamburger.active span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    width: 26px;
}

/* Active hover - glow effect */
.hamburger.active:hover span {
    background: var(--accent);
    filter: drop-shadow(0 0 4px var(--accent-glow));
}

/* ============================================
   HERO SECTION
   Full-screen landing section with glitch effect
   Background image: assets/images/backgrounds/hero-bg.jpg
   Change background-image URL below to use a different image
   Scales with viewport for all resolutions
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh; /* Safe viewport height for mobile browsers */
    display: flex;
    align-items: center;
    padding: clamp(1rem, 4vw, 4rem);
    padding-top: calc(80px + clamp(1rem, 4vw, 4rem)); /* Account for fixed nav */
    position: relative;
    background: var(--black);
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: clamp(2rem, 7vw + 1rem, 7rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.hero h1 .glitch {
    opacity: 0;
    visibility: hidden;
}

.glitch {
    position: relative;
    color: var(--white);
    animation: none;
    will-change: transform;
}

.glitch.active {
    animation: glitch 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch.active::before {
    animation: glitch-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--accent);
    z-index: -1;
}

.glitch.active::after {
    animation: glitch-2 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--chrome);
    z-index: -2;
}

/* ============================================
   GLITCH ANIMATION
   Creates a refined text glitch effect on hero headings
   Triggers on scroll/hover instead of continuous loop
   More subtle and sophisticated than before
   ============================================ */
@keyframes glitch {

    0%,
    100% {
        transform: translate(0);
        filter: blur(0px);
    }

    10% {
        transform: translate(-2px, 1px);
    }

    20% {
        transform: translate(2px, -1px);
    }

    30% {
        transform: translate(-1px, 2px);
    }

    40% {
        transform: translate(1px, -2px);
    }

    50% {
        transform: translate(-2px, 1px);
        filter: blur(1px);
    }

    60% {
        transform: translate(2px, -1px);
    }

    70% {
        transform: translate(-1px, 1px);
    }

    80% {
        transform: translate(1px, -1px);
    }

    90% {
        transform: translate(0);
    }
}

@keyframes glitch-1 {
    0% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }

    10% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-4px, 2px);
        opacity: 0.8;
    }

    20% {
        clip-path: inset(80% 0 10% 0);
        transform: translate(4px, -2px);
        opacity: 0.8;
    }

    30% {
        clip-path: inset(20% 0 70% 0);
        transform: translate(-3px, 3px);
        opacity: 0.7;
    }

    40% {
        clip-path: inset(60% 0 30% 0);
        transform: translate(2px, -3px);
        opacity: 0.6;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }
}

@keyframes glitch-2 {
    0% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }

    15% {
        clip-path: inset(65% 0 25% 0);
        transform: translate(3px, -2px);
        opacity: 0.7;
    }

    25% {
        clip-path: inset(15% 0 75% 0);
        transform: translate(-3px, 2px);
        opacity: 0.6;
    }

    35% {
        clip-path: inset(45% 0 45% 0);
        transform: translate(4px, -1px);
        opacity: 0.5;
    }

    45% {
        clip-path: inset(5% 0 85% 0);
        transform: translate(-2px, 2px);
        opacity: 0.4;
    }

    55% {
        opacity: 0.3;
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }
}

.hero-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.85rem, 2vw + 0.4rem, 1.75rem);
    color: var(--accent);
    margin-bottom: clamp(2rem, 4vw, 4rem);
    letter-spacing: clamp(0.05em, 1vw, 0.2em);
    font-weight: 700;
    word-break: break-word;
}

.cta-group {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

/* ============================================
   CALL-TO-ACTION BUTTONS
   Primary = filled white, Secondary = outlined
   Hover effect changes to accent color
   Minimum touch target: 44px for accessibility
   ============================================ */
.cta {
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Minimum touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-primary {
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--white);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--chrome);
}

/* ============================================
   SCROLLING MARQUEE
   Infinite scrolling text banner
   Edit text in HTML section below
   Speed: animation duration is 20s - lower = faster
   ============================================ */
.marquee {
    background: rgba(255, 255, 255, 0.03);
    color: var(--chrome);
    padding: 1.25rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    transition: background 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hide scrollbar but keep functionality */
.marquee::-webkit-scrollbar {
    display: none;
}

.marquee {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.marquee:hover {
    background: rgba(255, 255, 255, 0.05);
}

.marquee:hover .marquee-content {
    animation-duration: 30s;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   FOOTER SECTION
   Bottom of page with copyright info
   ============================================ */
footer {
    background: var(--black);
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
}

.footer-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.ascii-art {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--chrome);
    margin-bottom: 2rem;
    line-height: 1.2;
    white-space: pre;
}

.copyright {
    font-family: 'JetBrains Mono', monospace;
    color: #888;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--chrome);
    text-decoration: none;
    border-bottom: 1px solid var(--chrome);
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: var(--white);
    border-bottom-color: var(--accent);
}

/* ============================================
   ABOUT SECTION
   Text content with statistics grid
   ============================================ */
.about-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: var(--black);
}

.about-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(0rem, 2vw, 2rem);
}

.about-text h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.about-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--chrome);
}

.about-image {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: relative;
    min-height: 300px; /* Fallback minimum */
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: left center;
    display: block;
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
}

.image-circle-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.image-circle-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--steel);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #888;
}

/* ============================================
   PHILOSOPHY SECTION
   Grid of value propositions/principles
   ============================================ */
/* ============================================
   HOW WE WORK SECTION
   Elegant, minimal design
   ============================================ */
.how-we-work-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: var(--black);
    position: relative;
}

.how-we-work-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.work-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 6rem);
    letter-spacing: 0.05em;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.work-step {
    position: relative;
    background: var(--steel);
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Large background number */
.step-number-bg {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.step-content-wrap {
    position: relative;
    z-index: 2;
}

.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.work-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    line-height: 1.3;
}

.work-step p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--chrome);
}

/* Hover effects */
.work-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 1);
}

.work-step:hover .step-number-bg {
    color: rgba(0, 217, 255, 0.08);
    transform: translateY(-10px);
}

.work-step:hover .step-num {
    letter-spacing: 0.3em;
}

.work-step:hover h3 {
    color: var(--accent);
}

/* ============================================
   FINAL CALL-TO-ACTION SECTION
   Last conversion point before footer
   ============================================ */
.final-cta {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: var(--black);
    text-align: center;
}

.final-cta h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 4rem);
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.final-cta p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--chrome);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* ============================================
   PAGE-SPECIFIC ANIMATION STYLES
   These styles hide elements on the home page for GSAP animations
   ============================================ */

/* CSS Fallback Animation - Shows content if GSAP is slow to load */
@keyframes cssRevealFallback {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

/* Apply fallback to hero elements - reveals immediately if GSAP is slow */
.page-home nav,
.page-home .hero h1 .glitch,
.page-home .hero-subtitle,
.page-home .cta-group a,
.page-home .marquee,
.page-services nav,
.page-services .hero h1 .glitch,
.page-services .hero-subtitle,
.page-services .cta-group a,
.page-contact nav,
.page-contact .info-box,
.page-about nav,
.page-about .split-text,
.about-image,
.scroll-indicator {
    animation: cssRevealFallback 0.6s ease 0.1s forwards;
}

.page-home nav {
    opacity: 0;
    visibility: hidden;
}

.page-home .hero h1 .glitch {
    opacity: 0;
    visibility: hidden;
}

.page-home .hero-subtitle {
    opacity: 0;
    visibility: hidden;
}

.page-home .cta-group a {
    opacity: 0;
    visibility: hidden;
}

.page-home .marquee {
    opacity: 0;
    visibility: hidden;
}

/* Scroll-animated elements on home/about pages - no longer hidden by default
   GSAP uses gsap.from() to animate FROM opacity:0 to current (visible) state */

/* Services page animations */
.page-services nav {
    opacity: 0;
    visibility: hidden;
}

.page-services .hero h1 .glitch {
    opacity: 0;
    visibility: hidden;
}

.page-services .hero-subtitle {
    opacity: 0;
    visibility: hidden;
}

.page-services .cta-group a {
    opacity: 0;
    visibility: hidden;
}

/* Contact page animations */
.page-contact nav {
    opacity: 0;
    visibility: hidden;
}

.page-contact .info-box {
    opacity: 0;
    visibility: hidden;
}

/* ============================================
   TABLET RESPONSIVE STYLES
   Applies to screens 1024px and smaller
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        padding: clamp(1rem, 3vw, 2rem);
        padding-top: calc(70px + clamp(1rem, 3vw, 2rem));
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw + 0.5rem, 4.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw + 0.3rem, 1.5rem);
        letter-spacing: 0.1em;
    }

    .about-content {
        gap: 2.5rem;
    }

    .work-grid {
        gap: 1.5rem;
    }

    .work-step {
        padding: 2.25rem;
    }

    .step-number-bg {
        font-size: 9rem;
    }

    .values-grid {
        gap: 1.5rem;
    }

    .value-item {
        padding: 2.25rem;
    }

    .contact-grid {
        gap: 3rem;
    }

    .service-item {
        gap: 2rem;
    }

    .service-title {
        font-size: 2rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   Applies to screens 768px and smaller
   Adjusts layouts, hides custom cursor, restores normal cursor
   ============================================ */
@media (max-width: 768px) {
    /* Improve readability on mobile */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    nav {
        padding: 0.875rem 1rem;
    }

    .logo img {
        height: 40px;
        max-width: 200px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        opacity: 1 !important;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-7px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(7px);
    }

    .hamburger:hover span:nth-child(1) {
        transform: translateY(-7px);
        width: 20px;
    }

    .hamburger:hover span:nth-child(3) {
        transform: translateY(7px);
        width: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
        width: 24px;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
        width: 24px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
        font-size: 1.15rem;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
    }

    .nav-links a {
        padding: 1rem 2rem;
        /* Larger touch targets */
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        min-height: 100svh;
        padding: 1.5rem;
        padding-top: calc(65px + 2rem);
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        line-height: 1;
        letter-spacing: -0.02em;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem);
        letter-spacing: 0.05em;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-text h2 {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 1.25rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1rem;
    }

    .about-intro {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .image-wrapper {
        height: 280px;
    }

    .about-image {
        min-height: 280px;
    }

    /* How We Work Section - Mobile */
    .work-title {
        margin-bottom: 2rem;
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .work-step {
        padding: 1.5rem 1.25rem;
    }

    .step-number-bg {
        font-size: 5rem;
        right: 10px;
        top: -5px;
    }

    .work-step h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .work-step p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .step-num {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .cta {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        min-height: 52px;
        font-size: 0.85rem;
    }

    .about-section,
    .how-we-work-section,
    .final-cta,
    .values-section,
    .journey-section,
    .cta-section,
    .info-section {
        padding: 3.5rem 1.25rem;
    }

    .services {
        padding: 5.5rem 1.25rem 2rem 1.25rem;
    }

    .contact {
        padding: calc(70px + 2rem) 1.25rem 2.5rem 1.25rem;
    }

    footer {
        padding: 2rem 1.25rem;
    }

    .copyright {
        font-size: 0.8rem;
        line-height: 1.8;
    }

    .copyright a {
        display: inline-block;
        padding: 0.25rem 0;
    }

    .final-cta h2 {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .final-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Gradient orbs - smaller and more subtle on mobile */
    .gradient-orb {
        opacity: 0.12;
        filter: blur(40px);
    }

    .gradient-orb-1 {
        width: clamp(120px, 40vw, 200px);
        height: clamp(120px, 40vw, 200px);
    }

    .gradient-orb-2 {
        width: clamp(100px, 35vw, 180px);
        height: clamp(100px, 35vw, 180px);
    }

    .gradient-orb-3 {
        display: none; /* Hide third orb on mobile for cleaner look */
    }

    /* Marquee adjustments */
    .marquee {
        padding: 1rem 0;
    }

    .marquee-content {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    * {
        cursor: auto;
    }

    .cta,
    a,
    button {
        cursor: pointer;
    }
}

/* ============================================
   SMALL MOBILE STYLES
   Applies to screens 480px and smaller
   ============================================ */
@media (max-width: 480px) {
    nav {
        padding: 0.75rem 0.875rem;
    }

    .logo img {
        height: 36px;
        max-width: 180px;
    }

    .hamburger {
        width: 44px;
        height: 44px;
    }

    .hamburger span {
        width: 22px;
        height: 3px;
        opacity: 1 !important;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-6px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(6px);
    }

    .hamburger:hover span:nth-child(1) {
        transform: translateY(-6px);
        width: 18px;
    }

    .hamburger:hover span:nth-child(3) {
        transform: translateY(6px);
        width: 18px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
        width: 22px;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
        width: 22px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 1.1rem;
    }

    .hero {
        padding: 1rem;
        padding-top: calc(55px + 1.5rem);
    }

    .hero h1 {
        font-size: clamp(2.25rem, 11vw, 3rem);
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        letter-spacing: 0.03em;
        margin-bottom: 1.75rem;
    }

    .about-section,
    .how-we-work-section,
    .final-cta,
    .values-section,
    .journey-section,
    .cta-section,
    .info-section {
        padding: 2.5rem 1rem;
    }

    .services {
        padding: 4.5rem 1rem 1.5rem 1rem;
    }

    .contact {
        padding: calc(60px + 1.5rem) 1rem 2rem 1rem;
    }

    .about-text h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .about-text p,
    .about-intro {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.875rem;
    }

    .image-wrapper {
        height: 220px;
    }

    .about-image {
        min-height: 220px;
    }

    .work-title {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .work-step {
        padding: 1.25rem 1rem;
    }

    .step-number-bg {
        font-size: 4rem;
        right: 8px;
    }

    .step-num {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .work-step h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .work-step p {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.875rem;
    }

    .final-cta h2 {
        font-size: clamp(1.35rem, 8vw, 1.85rem);
        line-height: 1.2;
    }

    .final-cta p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .cta {
        font-size: 0.8rem;
        padding: 0.875rem 1rem;
        min-height: 48px;
    }

    footer {
        padding: 1.75rem 1rem;
    }

    .copyright {
        font-size: 0.75rem;
        line-height: 1.8;
    }

    /* Marquee */
    .marquee {
        padding: 0.75rem 0;
    }

    .marquee-content {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    /* Gradient orbs - even more subtle on small screens */
    .gradient-orb {
        opacity: 0.08;
        filter: blur(30px);
    }

    .gradient-orb-1 {
        width: 100px;
        height: 100px;
    }

    .gradient-orb-2 {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   ACCESSIBILITY
   Reduced Motion
   ============================================ */
@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;
    }

    .glitch.active {
        animation: none;
    }

    .glitch::before,
    .glitch::after {
        display: none;
    }

    .marquee-content {
        animation: none;
        white-space: normal;
    }
}

/* ============================================
   ABOUT PAGE ENHANCED STYLES
   ============================================ */

/* Gradient orbs - subtle floating decorative elements with color animation */
/* Scales with viewport for all screen sizes */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(60px, 10vw, 100px));
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-1 {
    width: clamp(200px, 40vw, 500px);
    height: clamp(200px, 40vw, 500px);
    background: linear-gradient(135deg, var(--accent) 0%, #0099CC 50%, var(--purple) 100%);
    top: 5%;
    right: 5%;
    animation: float 20s ease-in-out infinite, colorShift1 12s ease-in-out infinite;
}

.gradient-orb-2 {
    width: clamp(180px, 35vw, 450px);
    height: clamp(180px, 35vw, 450px);
    background: linear-gradient(135deg, var(--purple) 0%, var(--accent) 50%, #00B8E6 100%);
    bottom: 10%;
    left: 10%;
    animation: float 25s ease-in-out infinite reverse, colorShift2 15s ease-in-out infinite;
}

/* Third orb for richer color mixing */
.gradient-orb-3 {
    width: clamp(140px, 28vw, 350px);
    height: clamp(140px, 28vw, 350px);
    background: linear-gradient(135deg, #00B8E6 0%, var(--accent) 50%, var(--purple) 100%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 18s ease-in-out infinite, colorShift3 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 30px);
    }
}

@keyframes colorShift1 {
    0%, 100% {
        background: linear-gradient(135deg, var(--accent) 0%, #0099CC 50%, var(--purple) 100%);
    }
    25% {
        background: linear-gradient(135deg, var(--purple) 0%, var(--accent) 50%, #00B8E6 100%);
    }
    50% {
        background: linear-gradient(135deg, #00B8E6 0%, var(--purple) 50%, var(--accent) 100%);
    }
    75% {
        background: linear-gradient(135deg, var(--accent) 0%, #0066CC 50%, var(--purple) 100%);
    }
}

@keyframes colorShift2 {
    0%, 100% {
        background: linear-gradient(135deg, var(--purple) 0%, var(--accent) 50%, #00B8E6 100%);
    }
    33% {
        background: linear-gradient(135deg, var(--accent) 0%, #0099CC 50%, var(--purple) 100%);
    }
    66% {
        background: linear-gradient(135deg, #00B8E6 0%, var(--purple) 50%, var(--accent) 100%);
    }
}

@keyframes colorShift3 {
    0%, 100% {
        background: linear-gradient(135deg, #00B8E6 0%, var(--accent) 50%, var(--purple) 100%);
        transform: translateX(-50%) scale(1);
    }
    33% {
        background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 50%, #0099CC 100%);
        transform: translateX(-50%) scale(1.1);
    }
    66% {
        background: linear-gradient(135deg, var(--purple) 0%, #00B8E6 50%, var(--accent) 100%);
        transform: translateX(-50%) scale(0.95);
    }
}

/* Split text hero animation styling */
.hero-about .split-text {
    opacity: 0;
    visibility: hidden;
}

.hero-about .split-text .line {
    display: inline-block;
    overflow: hidden;
}

/* Services marquee banner */
.stats-marquee {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

/* Hide scrollbar but keep functionality */
.stats-marquee::-webkit-scrollbar {
    display: none;
}

.stats-marquee {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stats-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--chrome);
    letter-spacing: 0.2em;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stats-marquee:hover .stats-content {
    animation-duration: 60s;
}

/* Enhanced value items with icons */
.value-item {
    position: relative;
    overflow: hidden;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.5s ease;
}

.value-item:hover .value-icon {
    transform: translateY(-5px) scale(1.1);
}

.value-item:hover .value-icon svg {
    stroke: var(--white);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.value-item:hover .value-number {
    color: rgba(0, 217, 255, 0.08);
    transform: translateY(-10px);
}

/* Responsive styles for about page */
@media (max-width: 768px) {
    .stats-content {
        font-size: 0.8rem;
    }

    .stats-marquee {
        padding: 1rem 0;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .value-number {
        font-size: 3rem;
        top: 12px;
        right: 12px;
    }

    .hero-about,
    .hero-services {
        min-height: auto;
        padding-top: calc(65px + 2rem);
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-content {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .stats-marquee {
        padding: 0.75rem 0;
    }

    .value-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.875rem;
    }

    .value-number {
        font-size: 2.5rem;
        top: 10px;
        right: 10px;
    }

    .hero-about,
    .hero-services {
        padding-top: calc(55px + 1.5rem);
        padding-bottom: 2rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES (ORIGINAL)
   ============================================ */
.about-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--chrome);
    margin-bottom: 1.5rem;
}

.about-intro strong,
.about-text strong {
    color: var(--white);
    font-weight: 700;
}

.about-intro:last-of-type {
    margin-bottom: 0;
}

.values-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: #000000;
}

.values-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.values-content h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 6rem);
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 1 !important;
    visibility: visible !important;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    position: relative;
    background: var(--steel);
    padding: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 1);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.value-item:hover h3 {
    color: var(--accent);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--chrome);
}

.journey-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: var(--steel);
}

.journey-content {
    max-width: min(900px, 90vw);
    margin: 0 auto;
    text-align: center;
}

.journey-content h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.journey-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    color: var(--chrome);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
/* Services hero section - matches home page hero */
.hero-services {
    min-height: 80vh;
    min-height: 80svh;
}

/* About page hero - slightly shorter */
.hero-about {
    min-height: 85vh;
    min-height: 85svh;
}

@media (max-width: 768px) {
    .hero-services,
    .hero-about {
        min-height: 70vh;
        min-height: 70svh;
    }
}

@media (max-width: 480px) {
    .hero-services,
    .hero-about {
        min-height: auto;
        padding-top: calc(60px + 2rem);
        padding-bottom: 3rem;
    }
}

.services {
    padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 4rem);
    background: var(--black);
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.services-header {
    margin-bottom: clamp(3rem, 6vw, 6rem);
}

.services-header h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: var(--white);
}

.services-header h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.services-header p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--chrome);
    max-width: 600px;
}

.service-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

.service-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    text-align: right;
}

.service-content {
    padding-top: 0.5rem;
}

.service-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 700px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag::before {
    content: '// ';
    color: var(--accent);
}

/* Fit list in contact page */
.fit-list li {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact {
    padding: calc(100px + clamp(5rem, 10vw, 10rem)) clamp(1rem, 4vw, 2rem) clamp(4rem, 8vw, 8rem);
    background: var(--black);
}

.contact-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.contact h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.75rem, 6vw, 4rem);
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.contact-info h2,
.contact-info h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--chrome);
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--steel);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    cursor: text;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    color: var(--black);
    border: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.info-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: var(--black);
}

.info-content {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.info-section h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    position: relative;
    background: var(--steel);
    padding: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    cursor: pointer;
}

.info-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.info-box:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 1);
}

.info-box:hover::before {
    transform: scaleY(1);
}

.info-box h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 700;
    transition: color 0.3s ease;
}

.info-box:hover h3 {
    color: var(--accent);
}

.info-box p {
    color: var(--chrome);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   SHARED CTA SECTION
   ============================================ */
.cta-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
    background: var(--black);
    text-align: center;
}

.cta-section h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 4rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.cta-section p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--chrome);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 1024px) {
    .values-grid {
        gap: 1.5rem;
    }

    .value-item {
        padding: 2.5rem;
    }

    .service-item {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
    }

    .service-number {
        font-size: 4rem;
    }

    .service-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .values-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 2rem;
    }

    .value-item {
        padding: 1.5rem 1.25rem;
    }

    .value-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .value-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .contact h1 {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .contact-info h2,
    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .fit-list li {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }

    .contact-form {
        padding: 1.5rem 1.25rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.875rem 0;
    }

    .submit-btn {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    /* Services page mobile */
    .services-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .services-header h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: 0.75rem;
    }

    .services-header p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-item:first-of-type {
        border-top: none;
    }

    .service-number {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 0.75rem;
        opacity: 0.4;
    }

    .service-content {
        padding-top: 0;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .service-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .service-tags {
        gap: 0.75rem;
    }

    .tag {
        font-size: 0.75rem;
    }

    .service-item .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .info-box {
        padding: 1.5rem 1.25rem;
    }

    .info-box h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .info-box p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .info-section h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: 0.5rem;
    }

    /* CTA section mobile */
    .cta-section h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Journey section mobile */
    .journey-content h2 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: 1rem;
    }

    .journey-content p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .values-grid {
        gap: 0.875rem;
    }

    .values-content h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .value-item {
        padding: 1.25rem 1rem;
    }

    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .value-item p {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .value-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1rem;
    }

    .value-number {
        font-size: 2.5rem;
        top: 10px;
        right: 10px;
    }

    .contact h1 {
        font-size: clamp(1.35rem, 8vw, 1.85rem);
        margin-bottom: 1.25rem;
        line-height: 1.15;
    }

    .contact-info h2,
    .contact-info h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .fit-list li {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.25rem 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 0.85rem;
    }

    /* Services page small mobile */
    .services-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .services-header h2 {
        font-size: 1.15rem;
    }

    .services-header p {
        font-size: 0.85rem;
    }

    .service-item {
        padding: 1.25rem 0;
    }

    .service-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .service-tags {
        gap: 0.5rem;
    }

    .tag {
        font-size: 0.7rem;
    }

    .service-item .icon {
        width: 36px;
        height: 36px;
    }

    .info-grid {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }

    .info-box {
        padding: 1.25rem 1rem;
    }

    .info-box h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .info-box p {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .info-section h2 {
        font-size: 1.15rem;
    }

    /* CTA section small mobile */
    .cta-section h2 {
        font-size: 1.35rem;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    /* Journey section small mobile */
    .journey-section {
        padding: 2.5rem 1rem;
    }

    .journey-content h2 {
        font-size: 1.2rem;
    }

    .journey-content p {
        font-size: 0.85rem;
    }
}

/* ============================================
   RIPPLE EFFECT
   Click animation for interactive elements
   ============================================ */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.cta {
    position: relative;
    overflow: hidden;
}

/* ============================================
   SVG ICON STYLES
   Clean, minimalist icons with animations
   ============================================ */
.icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.3s ease;
}

/* Icon hover effects */
.service-item:hover .icon svg,
.work-step:hover .icon svg {
    stroke: var(--accent);
    transform: scale(1.1);
}

/* Service page specific icon positioning */
.service-item .icon {
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
}

/* Contact info icons - smaller, inline */
.contact-info .icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    margin-bottom: 0;
    vertical-align: middle;
}

.contact-info p {
    display: flex;
    align-items: center;
}

/* Animated icon on scroll */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.icon.animate {
    animation: iconFloat 2s ease-in-out infinite;
}

/* Responsive icon sizing */
@media (max-width: 768px) {
    .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1.25rem;
    }

    .service-item .icon {
        width: 44px;
        height: 44px;
    }

    .contact-info .icon {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1rem;
    }

    .service-item .icon {
        width: 40px;
        height: 40px;
    }

    .contact-info .icon {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-section {
    padding: clamp(6rem, 12vw, 12rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 8vw, 8rem);
    background: var(--black);
}

.privacy-content {
    max-width: min(900px, 90vw);
    margin: 0 auto;
}

.privacy-content h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.75rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 0.05em;
    opacity: 0;
    visibility: hidden;
}

.privacy-content .last-updated {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--chrome);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    opacity: 0;
    visibility: hidden;
}

.privacy-body {
    opacity: 0;
    visibility: hidden;
}

.privacy-body h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.privacy-body h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.privacy-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--chrome);
}

.privacy-body ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.privacy-body li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--chrome);
}

.privacy-body li strong {
    color: var(--white);
    font-weight: 700;
}

.privacy-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.privacy-body a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.privacy-body strong {
    color: var(--white);
    font-weight: 700;
}

.privacy-body .contact-info {
    background: var(--steel);
    border-left: 3px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.privacy-body .contact-info p {
    margin-bottom: 0.5rem;
}

.privacy-body .contact-info a {
    color: var(--white);
    border-bottom: 2px solid var(--accent);
}

.privacy-body .contact-info a:hover {
    color: var(--accent);
}

/* Responsive Privacy Page */
@media (max-width: 768px) {
    .privacy-section {
        padding: 5.5rem 1.25rem 2.5rem 1.25rem;
    }

    .privacy-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .privacy-content .last-updated {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .privacy-body h2 {
        font-size: 1.15rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-body h3 {
        font-size: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .privacy-body p,
    .privacy-body li {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .privacy-body ul {
        margin-left: 1rem;
        margin-bottom: 1.25rem;
    }

    .privacy-body li {
        margin-bottom: 0.5rem;
    }

    .privacy-body .contact-info {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 4.5rem 1rem 2rem 1rem;
    }

    .privacy-content h1 {
        font-size: 1.35rem;
    }

    .privacy-content .last-updated {
        font-size: 0.8rem;
        margin-bottom: 1.75rem;
    }

    .privacy-body h2 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .privacy-body h3 {
        font-size: 0.95rem;
        margin-top: 1.25rem;
    }

    .privacy-body p,
    .privacy-body li {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .privacy-body ul {
        margin-left: 0.75rem;
    }

    .privacy-body li {
        margin-bottom: 0.375rem;
    }

    .privacy-body .contact-info {
        padding: 0.875rem 1rem;
    }

    .privacy-body .contact-info p {
        margin-bottom: 0.375rem;
    }
}

/* ============================================
   ELEGANT REFINEMENTS
   Sophisticated, clean, confident
   ============================================ */

/* Button base styles */
.cta {
    transition: none;
}

/* Elegant card hover - subtle border glow */
.work-step,
.value-item,
.info-box,
.service-item {
    position: relative;
}

.work-step::before,
.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-step:hover::before,
.value-item:hover::before {
    height: 100%;
}

/* Refined service number */
.service-number {
    opacity: 0.25;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.service-item:hover .service-number {
    opacity: 0.4;
    color: var(--accent);
}

/* Elegant icon treatment */
.service-item .icon svg,
.work-step .icon svg {
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.service-item:hover .icon svg,
.work-step:hover .icon svg {
    stroke: var(--accent);
    transform: scale(1.05);
}

/* Refined typography for service titles */
.service-title {
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--accent);
}

/* Elegant tag styling */
.tag {
    transition: color 0.3s ease;
}

.service-item:hover .tag {
    color: var(--white);
}

.service-item:hover .tag::before {
    color: var(--accent);
}

/* Scrollbar - minimal */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) var(--black);
}

/* Elegant link underlines */
.about-text a,
.service-description a {
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

.about-text a:hover,
.service-description a:hover {
    background-size: 100% 1px;
}

/* Refined section spacing */
.services-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: clamp(2rem, 4vw, 4rem);
}

/* Elegant hero subtitle */
.hero-subtitle {
    opacity: 0.7;
}

/* Clean footer line */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile refinements */
@media (max-width: 768px) {
    .work-step::before,
    .value-item::before {
        display: none;
    }
    
    .service-item {
        border-top-width: 1px;
    }
}

/* ============================================
   SCROLL INDICATOR - Minimal Progress Ring
   Elegant, subtle progress indicator
   ============================================ */
.scroll-indicator {
    position: fixed;
    bottom: clamp(1.5rem, 4vh, 2.5rem);
    right: clamp(1.5rem, 4vw, 2.5rem);
    z-index: 999;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator:active {
    transform: scale(0.95);
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
    transition: all 0.3s ease-out !important;
}

/* Progress ring container */
.scroll-progress-ring {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Progress Ring */
.scroll-progress-ring > svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    left: 0;
}

/* Background track - very subtle */
.scroll-progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 1.5;
}

/* Progress stroke - thin and elegant */
.scroll-progress-bar {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 100.53; /* 2 * PI * radius (16) */
    stroke-dashoffset: 100.53;
    transition: stroke-dashoffset 0.2s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
}

/* Subtle glow on hover */
.scroll-indicator:hover .scroll-progress-bar {
    filter: drop-shadow(0 0 3px var(--accent-glow));
}

/* Center content */
.scroll-progress-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
}

/* Arrow indicator - simple chevron */
.scroll-indicator-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--chrome);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.scroll-indicator:hover .scroll-indicator-arrow svg {
    stroke: var(--white);
}

/* At bottom state - arrow points UP */
.scroll-indicator.at-bottom .scroll-indicator-arrow {
    transform: rotate(180deg);
}

.scroll-indicator.at-bottom .scroll-indicator-arrow svg {
    stroke: var(--white);
}

.scroll-indicator.at-bottom .scroll-progress-bar {
    stroke: var(--white);
}

.scroll-indicator.at-bottom:hover .scroll-progress-bar {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
}

/* Scroll text - only visible in hero */
.scroll-indicator-text {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--chrome);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scroll-indicator.in-hero .scroll-indicator-text {
    opacity: 0.6;
}

.scroll-indicator.in-hero:hover .scroll-indicator-text {
    opacity: 1;
}

/* Subtle bounce animation in hero */
.scroll-indicator.in-hero {
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator.in-hero:hover {
    animation-play-state: paused;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Hide text at bottom */
.scroll-indicator.at-bottom .scroll-indicator-text {
    opacity: 0 !important;
}

/* Page-specific animation styles for scroll indicator */
.page-home .scroll-indicator,
.page-services .scroll-indicator,
.page-about .scroll-indicator,
.page-contact .scroll-indicator,
.page-privacy .scroll-indicator {
    opacity: 0;
    visibility: hidden;
}

/* Responsive scroll indicator */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.25rem;
        right: 1.25rem;
    }
    
    .scroll-progress-ring {
        width: 46px;
        height: 46px;
    }
    
    .scroll-progress-center {
        width: 34px;
        height: 34px;
    }
    
    .scroll-indicator-arrow {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 1rem;
        right: 1rem;
    }
    
    .scroll-progress-ring {
        width: 42px;
        height: 42px;
    }
    
    .scroll-progress-center {
        width: 30px;
        height: 30px;
    }
    
    .scroll-indicator-arrow {
        width: 12px;
        height: 12px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE STYLES
   Applies to screens 360px and smaller
   ============================================ */
@media (max-width: 360px) {
    nav {
        padding: 0.625rem 0.75rem;
    }

    .logo img {
        height: 32px;
        max-width: 160px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .hamburger span {
        width: 20px;
        height: 3px;
        opacity: 1 !important;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-5px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(5px);
    }

    .hamburger:hover span:nth-child(1) {
        transform: translateY(-5px);
        width: 16px;
    }

    .hamburger:hover span:nth-child(3) {
        transform: translateY(5px);
        width: 16px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
        width: 20px;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
        width: 20px;
    }

    .hero {
        padding: 0.875rem;
        padding-top: calc(50px + 1.25rem);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }

    .cta {
        font-size: 0.75rem;
        padding: 0.75rem 0.875rem;
        min-height: 44px;
    }

    .about-section,
    .how-we-work-section,
    .final-cta,
    .values-section,
    .journey-section,
    .cta-section,
    .info-section {
        padding: 2rem 0.875rem;
    }

    .services {
        padding: 4rem 0.875rem 1.25rem 0.875rem;
    }

    .contact {
        padding: calc(60px + 3rem) 0.875rem 1.5rem 0.875rem;
    }

    .about-text h2 {
        font-size: 1rem;
    }

    .about-text p,
    .about-intro {
        font-size: 0.85rem;
    }

    .work-title {
        font-size: 1.15rem;
    }

    .work-step {
        padding: 1rem 0.875rem;
    }

    .work-step h3 {
        font-size: 0.95rem;
    }

    .work-step p {
        font-size: 0.8rem;
    }

    .step-number-bg {
        font-size: 3rem;
    }

    .final-cta h2 {
        font-size: 1.2rem;
    }

    .final-cta p {
        font-size: 0.8rem;
    }

    .value-item {
        padding: 1rem 0.875rem;
    }

    .value-item h3 {
        font-size: 0.95rem;
    }

    .value-item p {
        font-size: 0.8rem;
    }

    .contact h1 {
        font-size: 1.2rem;
    }

    .contact-info h2,
    .contact-info h3 {
        font-size: 0.95rem;
    }

    .contact-info p {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1rem 0.875rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 0.8rem;
        padding: 0.875rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-subtitle {
        font-size: 0.8rem;
    }

    .service-description {
        font-size: 0.8rem;
    }

    .service-number {
        font-size: 1.5rem;
    }

    .info-box {
        padding: 1rem 0.875rem;
    }

    .info-box h3 {
        font-size: 0.95rem;
    }

    .info-box p {
        font-size: 0.8rem;
    }

    .privacy-section {
        padding: 4rem 0.875rem 1.5rem 0.875rem;
    }

    .privacy-content h1 {
        font-size: 1.2rem;
    }

    .privacy-body h2 {
        font-size: 0.95rem;
    }

    .privacy-body h3 {
        font-size: 0.9rem;
    }

    .privacy-body p,
    .privacy-body li {
        font-size: 0.8rem;
    }

    footer {
        padding: 1.5rem 0.875rem;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .marquee {
        padding: 0.5rem 0;
    }

    .marquee-content {
        font-size: 0.55rem;
    }

    .scroll-indicator {
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .scroll-progress-ring {
        width: 36px;
        height: 36px;
    }

    .scroll-progress-center {
        width: 26px;
        height: 26px;
    }

    .scroll-indicator-arrow {
        width: 10px;
        height: 10px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-progress-bar,
    .scroll-indicator-arrow {
        transition: none;
    }
}