/* ===================================
   KATALAGA HAKIM - PORTFOLIO STYLES
   Refined Editorial Luxury Aesthetic
   =================================== */

/* =============== CSS VARIABLES =============== */
:root {
    /* Premium Color Palette - Warm Neutrals with Copper Accent */
    --deep: #0C0A09;
    --deep-light: #1C1917;
    --surface: #292524;
    --surface-elevated: #44403C;
    --cream: #FAFAF9;
    --cream-muted: #E7E5E4;
    --stone: #A8A29E;
    --stone-dark: #78716C;

    /* Accent Colors - Warm Copper/Bronze */
    --accent: #D97706;
    --accent-light: #F59E0B;
    --accent-glow: rgba(217, 119, 6, 0.15);
    --success: #059669;
    --success-soft: rgba(5, 150, 105, 0.15);

    /* Glass Effects */
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.04);

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, var(--accent) 0%, #B45309 100%);
    --gradient-subtle: linear-gradient(180deg, var(--deep) 0%, var(--deep-light) 100%);
    --gradient-shine: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);

    /* Typography - Refined Serif + Clean Sans with fast system fallbacks */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', Monaco, 'Cascadia Code', monospace;

    /* Spacing */
    --container-width: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-2xl: 12rem;

    /* Transitions - Luxurious Easing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Shadows - Softer, More Refined */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(217, 119, 6, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* =============== RESET & BASE =============== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--deep);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Disable scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Elegant text selection */
::selection {
    background: var(--accent);
    color: var(--deep);
}

/* =============== NOISE TEXTURE =============== */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

/* =============== ELEGANT BACKGROUND ELEMENTS =============== */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    animation: drift 30s infinite ease-in-out;
    will-change: transform;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #78350F;
    top: 50%;
    left: -10%;
    animation-delay: 10s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--surface-elevated);
    bottom: -5%;
    right: 30%;
    animation-delay: 20s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-3deg) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) rotate(3deg) scale(1.02);
    }
}

/* Decorative grid pattern */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(var(--stone-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--stone-dark) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* =============== UTILITY CLASSES =============== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

.desktop-only {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* =============== NAVIGATION =============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-slow);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(12, 10, 9, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
}

.navbar-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
    grid-column: 1;
    font-style: italic;
}

.logo:hover {
    color: var(--accent);
}

.logo .accent {
    color: var(--accent);
    font-style: normal;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    grid-column: 2;
}

.nav-link {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--cream);
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.btn-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1px solid var(--stone-dark);
    border-radius: var(--radius-full);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-base);
    grid-column: 3;
    justify-self: end;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-cta:hover {
    background: var(--accent);
    color: var(--deep);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.status-indicator {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-gentle 3s infinite;
}

@keyframes pulse-gentle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Mobile Menu Checkbox (hidden) */
.menu-checkbox {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    pointer-events: auto;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .navbar {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 0;
    }

    .navbar-content {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo {
        grid-column: auto;
        order: 1;
        font-size: 1.25rem;
    }

    .nav-menu,
    .btn-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 10001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hamburger animation when checked */
    .menu-checkbox:checked + .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-checkbox:checked + .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-checkbox:checked + .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--deep);
        flex-direction: column;
        padding: 80px 2rem 1.5rem 2rem;
        gap: 0.25rem;
        z-index: 10000;
        overflow-y: auto;
    }

    /* Show menu when checkbox is checked */
    .menu-checkbox:checked ~ .mobile-menu {
        display: flex !important;
    }

    .mobile-menu .mobile-nav-link {
        color: #ffffff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu .btn-primary {
        margin-top: 0.75rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* Disable blob animations on mobile for performance */
    .blob {
        animation: none;
        opacity: 0.08;
    }

    .blob-1 {
        transform: translate(0, 0) scale(0.8);
    }

    .blob-2 {
        transform: translate(0, 0) scale(0.8);
    }

    .blob-3 {
        transform: translate(0, 0) scale(0.8);
    }
}

/* =============== HERO SECTION =============== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Decorative line accent */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    transform: translateY(-50%);
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    transform: translateY(-50%);
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--success-soft);
    border: 1px solid rgba(5, 150, 105, 0.25);
    border-radius: var(--radius-full);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-gentle 3s infinite;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: var(--cream);
}

.gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--stone);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    font-weight: 400;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--stone-dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

@media (max-width: 768px) {
    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-stats {
        gap: 2rem;
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

/* =============== BUTTONS =============== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: var(--accent);
    color: var(--deep);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-warm);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--transition-base);
}

.btn-glow:hover::after {
    opacity: 0.5;
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--stone-dark);
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid #25D366;
    background: transparent;
    color: #25D366;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: var(--deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.btn-signal {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid #3A76F0;
    background: transparent;
    color: #3A76F0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-signal:hover {
    background: #3A76F0;
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(58, 118, 240, 0.25);
}

.btn-signal svg {
    flex-shrink: 0;
}

.icon,
.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn-primary:hover .icon,
.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* =============== SECTIONS =============== */
section {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) 0;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
        width: 100%;
        max-width: 100vw;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--stone-dark);
    border-radius: var(--radius-full);
    color: var(--stone);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--stone);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* =============== SERVICES SECTION =============== */
.services {
    background: var(--deep);
    position: relative;
}

/* Subtle section separator */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Service Card */
.service-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-slow);
    cursor: default;
    overflow: hidden;
}

/* Elegant shine effect on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

/* Subtle glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--accent-glow),
            transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Featured Service Cards (Shopify & GHL) */
.service-card-featured {
    background: linear-gradient(145deg, var(--glass) 0%, rgba(217, 119, 6, 0.02) 100%);
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.service-card-featured:hover {
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Service Icon */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.shopify-icon {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--success);
}

.ghl-icon {
    background: var(--accent-glow);
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--accent);
}

.seo-icon {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.design-icon {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    color: #F472B6;
}

.infra-icon {
    background: rgba(168, 162, 158, 0.1);
    border: 1px solid rgba(168, 162, 158, 0.2);
    color: var(--stone);
}

.automation-icon {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #22D3EE;
}

/* Service Badge */
.service-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent-glow);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

/* Service Content */
.service-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
    color: var(--cream);
    letter-spacing: -0.01em;
}

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

.service-description {
    color: var(--stone);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin-bottom: 1.75rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--cream-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--stone);
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.tag:hover {
    border-color: var(--stone-dark);
    color: var(--cream-muted);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 1.25rem;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-link:hover {
    gap: 1rem;
    color: var(--accent-light);
}

.service-link .arrow-icon {
    width: 16px;
    height: 16px;
}

/* =============== PROCESS SECTION =============== */
.process {
    background: var(--deep-light);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Connecting line between steps */
.process-grid::before {
    content: '';
    position: absolute;
    top: 4rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border) 20%, var(--glass-border) 80%, transparent);
    z-index: 0;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }
}

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

.process-step {
    position: relative;
    padding: 2.5rem 2rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    z-index: 1;
}

.process-step:hover {
    border-color: rgba(217, 119, 6, 0.25);
    background: var(--glass);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    transition: opacity var(--transition-base);
}

.process-step:hover .step-number {
    opacity: 0.6;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--cream);
}

.step-description {
    color: var(--stone);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* =============== WORK SECTION =============== */
.work {
    background: var(--deep);
    position: relative;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

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

@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.work-card {
    display: block;
    text-decoration: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.work-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
}

.work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow), filter var(--transition-base);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback gradient if image doesn't load */
.work-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(120, 53, 15, 0.1) 100%);
    z-index: -1;
}

.work-card:hover .work-image {
    transform: scale(1.08);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 10, 9, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 2;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-visit {
    color: var(--cream);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1px solid var(--cream);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.work-card:hover .work-visit {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.3);
}

.work-content {
    padding: 2rem;
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.work-card:hover .work-title {
    color: var(--accent-light);
}

.work-description {
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* =============== TESTIMONIALS SECTION =============== */
.testimonials {
    background: var(--deep-light);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    position: relative;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
}

.testimonial-card {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3.5rem 4rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word;
    position: relative;
}

/* Decorative corner accents */
.testimonial-card::before,
.testimonial-card::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--accent);
    opacity: 0.3;
}

.testimonial-card::before {
    top: 1.5rem;
    left: 1.5rem;
    border-top: 1px solid;
    border-left: 1px solid;
}

.testimonial-card::after {
    bottom: 1.5rem;
    right: 1.5rem;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.35rem;
    opacity: 0.8;
}

.quote-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin: 0 auto 2rem;
    display: block;
    opacity: 0.4;
}

.testimonial-text {
    font-family: var(--font-display);
    color: var(--cream);
    line-height: 1.9;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    text-align: center;
    display: block;
    width: 100%;
    font-weight: 400;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.author-location {
    font-size: 0.8rem;
    color: var(--stone-dark);
    letter-spacing: 0.05em;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid var(--stone-dark);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-btn:hover svg {
    color: var(--deep);
}

.carousel-btn.prev {
    left: -80px;
}

.carousel-btn.next {
    right: -80px;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--stone);
    transition: color var(--transition-fast);
}

@media (max-width: 768px) {
    .carousel-btn.prev {
        left: 0;
        width: 40px;
        height: 40px;
    }

    .carousel-btn.next {
        right: 0;
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .testimonials-carousel {
        max-width: 100%;
        width: 100%;
        padding: 1rem 0;
        margin: 0;
    }

    .carousel-container {
        margin: 0 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .testimonial-slide {
        padding: 0;
        width: 100%;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
        min-height: auto;
        max-height: none;
        margin: 0;
        width: 100%;
    }

    .testimonial-card::before,
    .testimonial-card::after {
        display: none;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
        max-width: 100%;
        width: 100%;
        word-break: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
        text-align: center;
    }

    .stars {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.15rem;
    }

    .quote-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 0.75rem;
    }

    .author-name {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .author-location {
        font-size: 0.7rem;
    }

    .carousel-dots {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 0.75rem 0;
    }

    .carousel-container {
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        word-break: normal;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .stars {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }

    .quote-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 0.5rem;
    }

    .author-name {
        font-size: 0.8rem;
    }

    .author-location {
        font-size: 0.65rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dots {
        margin-top: 1rem;
    }
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--stone-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0.4;
}

.dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: var(--radius-full);
    opacity: 1;
}

.dot:hover {
    opacity: 0.7;
}

/* =============== TECH STACK SECTION =============== */
.stack {
    background: var(--deep);
    position: relative;
    padding: var(--spacing-lg) 0;
}

.stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

.stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3.5rem;
    opacity: 0.5;
    transition: opacity var(--transition-slow);
}

.stack-grid:hover {
    opacity: 0.9;
}

.stack-item {
    transition: all var(--transition-base);
    position: relative;
}

.stack-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.stack-item:hover::after {
    width: 100%;
}

.stack-item:hover {
    transform: translateY(-3px);
}

.stack-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 768px) {
    .stack-grid {
        gap: 1.5rem 2.5rem;
    }

    .stack-name {
        font-size: 0.8rem;
    }
}

/* =============== CTA SECTION =============== */
.cta {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--deep-light);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent-glow);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--stone);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-whatsapp,
    .cta-buttons .btn-signal {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    .cta-buttons .btn-secondary {
        margin-top: 0.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons .btn-primary,
    .cta-buttons .btn-whatsapp,
    .cta-buttons .btn-signal {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* =============== FOOTER =============== */
.footer {
    background: var(--deep);
    border-top: 1px solid var(--glass-border);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 3.5rem;
}

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

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--stone-dark);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-title {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-link {
    display: block;
    color: var(--cream-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-text {
    color: var(--stone-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.copyright {
    text-align: center;
    color: var(--stone-dark);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* =============== SCROLL REVEAL ANIMATIONS =============== */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============== SCROLLBAR =============== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* =============== FOCUS STYLES =============== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* =============== PERFORMANCE OPTIMIZATIONS =============== */
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .blob {
        animation: none;
    }
}

/* =============== MOBILE PERFORMANCE =============== */
@media (max-width: 768px) {
    /* Disable expensive background effects */
    .blob-container,
    .grid-pattern {
        display: none !important;
    }

    .noise-bg {
        display: none !important;
    }

    /* Remove all backdrop blur - very expensive on mobile */
    .navbar,
    .navbar.scrolled,
    .hero-stats,
    .testimonial-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar.scrolled {
        background: var(--deep) !important;
    }

    .hero-stats {
        background: var(--surface) !important;
    }

    /* Disable complex pseudo-elements */
    .hero::before,
    .hero::after,
    .services::before,
    .process::before,
    .work::before,
    .testimonials::before,
    .stack::before,
    .cta::before,
    .cta::after,
    .footer::before,
    .process-grid::before {
        display: none !important;
    }

    /* Simplify card hover effects */
    .service-card::before,
    .service-card::after,
    .work-card::before {
        display: none !important;
    }

    /* Faster transitions on mobile */
    *,
    *::before,
    *::after {
        transition-duration: 0.15s !important;
    }

    /* Disable transforms on hover for cards */
    .service-card:hover,
    .work-card:hover,
    .process-step:hover {
        transform: none !important;
    }

    /* Simpler button hover */
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-whatsapp:hover,
    .btn-signal:hover,
    .btn-cta:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* Disable scroll reveal animations */
    [data-scroll-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Remove will-change to save memory */
    .blob,
    .service-card,
    .work-card,
    .btn-primary,
    .btn-whatsapp,
    .navbar {
        will-change: auto !important;
    }

    /* Simplify work card overlay */
    .work-overlay {
        background: rgba(12, 10, 9, 0.7) !important;
        opacity: 1 !important;
    }

    .work-card:hover .work-image {
        transform: none !important;
    }

    /* Stack items - no hover effect */
    .stack-item:hover {
        transform: none !important;
    }

    .stack-item::after {
        display: none !important;
    }
}

/* Even more aggressive for very small/slow devices */
@media (max-width: 480px) {
    /* Kill all animations */
    * {
        animation: none !important;
        transition: none !important;
    }

    /* Solid backgrounds only */
    .service-card,
    .process-step,
    .work-card,
    .testimonial-card {
        background: var(--surface) !important;
        border: 1px solid var(--glass-border) !important;
    }

    .service-card-featured {
        background: var(--surface) !important;
    }
}