.what-we-do-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    position: relative;
}

.what-we-do-header .section-title {
    color: var(--text-light);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.what-we-do-card {
    background: #f3f4f6;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
    padding: 1.25rem 1.1rem 1.1rem;
    position: relative;
    overflow: hidden;
}

.what-we-do-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: var(--primary-color);
    margin: -2.2rem auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.what-we-do-icon .tm-icon {
    width: 1.55rem;
    height: 1.55rem;
    color: #fff;
}

.what-we-do-title {
    font-size: 0.95rem;
    line-height: 1.35;
    text-transform: uppercase;
    text-align: center;
    color: #1f2937;
    margin: 0 0 0.6rem;
}

.what-we-do-text {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

@media (max-width: 1024px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }

    .what-we-do-card {
        padding: 1.2rem 1rem 1rem;
    }
}
/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: var(--bg-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

/* Animated Background */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#pixel-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(116, 42, 132, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 42, 132, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.scanlines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Logo Animation */
.logo-animation {
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown 1s ease-out;
}

.pixel-logo {
    display: inline-block;
    position: relative;
}

.pixel-logo img,
.pixel-logo .custom-logo {
    width: 80px;
    height: 80px;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 20px var(--primary-color));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Main Title */
.hero-title {
    margin: 0 0 var(--spacing-lg);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title-line-1 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -2px;
}

.glitch {
    position: relative;
    color: var(--text-light);
    text-shadow: 
        2px 2px 0 var(--primary-color),
        4px 4px 0 var(--primary-dark);
    display: inline-block;
    animation: glitchText 3s infinite;
}

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

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: var(--primary-light);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: var(--secondary-color);
    z-index: -2;
}

.title-line-2 {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--secondary-light);
    letter-spacing: 0.5em;
    margin-top: var(--spacing-sm);
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-light), var(--secondary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Animated Tagline */
.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    height: 2em;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.6s both;
	/* justify-self: anchor-center; */
}

.tagline-prefix {
    color: var(--secondary-color);
}

.tagline-rotating {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 300px;
}

.rotating-word {
    display: block;
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateY(50px);
    color: var(--primary-light);
    font-weight: 700;
    white-space: nowrap;
}

.rotating-word.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    animation: wordRotate 12s infinite;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Pixel CTAs / .btn-icon — see style.css (.tm-pixel-btn) */

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.6s both;
    perspective: 1000px;
}

.game-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform-style: preserve-3d;
    transition: transform var(--transition-normal);
}

.showcase-screen {
    width: 100%;
    aspect-ratio: 4/3;
    background: #000;
    border: 8px solid var(--bg-card);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px var(--primary-dark),
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(116, 42, 132, 0.3);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

/* Pixel Art Scene */
.pixel-scene {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.pixel-character-home {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 20%;
    left: 20%;
    image-rendering: pixelated;
    animation: characterRun 2s steps(4) infinite;
}

.pixel-character-home::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--error);
    clip-path: polygon(
        25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%
    );
}

@keyframes characterRun {
    0% { transform: translateX(0) scaleX(1); }
    25% { transform: translateX(50px) scaleX(1); }
    50% { transform: translateX(100px) scaleX(-1); }
    75% { transform: translateX(50px) scaleX(-1); }
    100% { transform: translateX(0) scaleX(1); }
}

.floating-platforms {
    position: absolute;
    width: 100%;
    height: 100%;
}

.platform {
    position: absolute;
    height: 10px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-dark));
    border-top: 2px solid var(--secondary-light);
    image-rendering: pixelated;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.platform-1 {
    width: 100px;
    bottom: 40%;
    left: 10%;
    animation: platformFloat 4s ease-in-out infinite;
}

.platform-2 {
    width: 120px;
    bottom: 60%;
    right: 15%;
    animation: platformFloat 4s ease-in-out infinite 1s;
}

.platform-3 {
    width: 80px;
    bottom: 30%;
    right: 10%;
    animation: platformFloat 4s ease-in-out infinite 2s;
}

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

/* Collectibles */
.collectibles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--warning);
    border-radius: var(--radius-full);
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.3),
        0 0 10px var(--warning);
    animation: coinSpin 2s linear infinite;
}

.coin:nth-child(1) { top: 35%; left: 30%; }
.coin:nth-child(2) { top: 55%; right: 25%; animation-delay: 0.5s; }
.coin:nth-child(3) { bottom: 35%; left: 50%; animation-delay: 1s; }

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 50%);
    pointer-events: none;
}

/* Console Base */
.console-base {
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-card), #1a1a1a);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0 var(--spacing-lg);
}

.console-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.d-pad {
    width: 80px;
    height: 80px;
    position: relative;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.d-pad::before,
.d-pad::after {
    content: '';
    position: absolute;
    background: var(--secondary-dark);
}

.d-pad::before {
    width: 26px;
    height: 80px;
    left: 27px;
    top: 0;
}

.d-pad::after {
    width: 80px;
    height: 26px;
    top: 27px;
    left: 0;
}

.action-buttons {
    display: flex;
    gap: var(--spacing-md);
    transform: rotate(-25deg);
}

.btn-a, .btn-b {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 
        inset 0 -3px 0 rgba(0,0,0,0.3),
        0 2px 0 rgba(255,255,255,0.2);
}

.btn-b {
    background: var(--error);
}

.btn-a::after, .btn-b::after {
    content: 'A';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-weight: bold;
}

.btn-b::after {
    content: 'B';
}

.btn-a:hover, .btn-b:hover {
    transform: scale(1.1);
    box-shadow: 
        inset 0 -3px 0 rgba(0,0,0,0.3),
        0 2px 0 rgba(255,255,255,0.2),
        0 0 20px currentColor;
}

.btn-a:active, .btn-b:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 0 rgba(0,0,0,0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    margin: 0 auto var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 8px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-color);
    display: block;
}

/* Section Base Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.section-title::before {
    left: -70px;
}

.section-title::after {
    right: -70px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-light);
    margin-bottom: var(--spacing-md);
}

.about-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.pixel-team {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md); */
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}   
.techmeeva-emoji {
    height: auto;
    width: 70%;
    animation: iconFloat 3s ease-in-out infinite;
}
.techmeeva-emoji-wrapper {
    text-align: -webkit-center;
}
.team-member {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    position: relative;
    image-rendering: pixelated;
    transition: transform var(--transition-normal);
    cursor: pointer;
}

.team-member:nth-child(2) {
    background: var(--secondary-color);
}

.team-member:nth-child(3) {
    background: var(--error);
}

.team-member:nth-child(4) {
    background: var(--warning);
}

.team-member:nth-child(5) {
    background: var(--success);
}

.team-member:nth-child(6) {
    background: var(--info);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* .team-member::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, transparent 20%, currentColor 20%, currentColor 80%, transparent 80%),
        linear-gradient(to right, transparent 30%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0.3) 70%, transparent 70%);
    mix-blend-mode: multiply;
} */
  .team-member-image{
            width: 80px;
        }

/* Ultra Creative Projects Slider */
.ultra-projects-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ultra-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
        radial-gradient(circle at 20% 30%, rgba(116, 42, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(116, 42, 132, 0.05) 50%, transparent 100%); */
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

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

.ultra-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Ultra Header */
.ultra-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.ultra-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.ultra-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { box-shadow: 0 0 10px var(--primary-color); }
    50% { box-shadow: 0 0 20px var(--secondary-color); }
}

.ultra-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ultra Slider Wrapper */
.ultra-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.ultra-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.ultra-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.ultra-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    position: relative;
}

/* Ultra Visual */
.ultra-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 2px solid var(--secondary-dark);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(116, 42, 132, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ultra-visual:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(116, 42, 132, 0.3);
}

.visual-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-pixel {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    border: 4px solid var(--primary-light);
    animation: pulse 2s infinite;
    cursor: pointer;
}

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

.ultra-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.1) saturate(1.2);
}

.ultra-visual:hover .ultra-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(116, 42, 132, 0.1) 0%,
        transparent 50%,
        rgba(255, 193, 7, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-visual:hover .image-overlay {
    opacity: 1;
}

/* Pixel Placeholder */
.pixel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    position: relative;
}

.pixel-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    width: 120px;
    height: 120px;
}

.pixel-dot {
    width: 100%;
    height: 100%;
    background: var(--color);
    border-radius: 4px;
    animation: pixelPulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px var(--color);
}

@keyframes pixelPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Ultra Content */
.ultra-content {
    position: relative;
    z-index: 2;
}

.content-inner {
    max-width: 500px;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-pixel,
.date-pixel {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.category-pixel::before,
.date-pixel::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.6s ease;
}

.category-pixel:hover::before,
.date-pixel:hover::before {
    left: 100%;
}

.ultra-project-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.ultra-project-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.ultra-description {
    margin-bottom: 2rem;
}

.ultra-description p,
.overview-text {
    color: var(--secondary-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Ultra Tools */
.ultra-tools {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tool-pixel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(116, 42, 132, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(116, 42, 132, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-pixel:hover {
    background: rgba(116, 42, 132, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tool-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    image-rendering: pixelated;
}

.tool-pixel span {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Ultra Actions */
.ultra-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ultra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 120px;
}

.ultra-btn.primary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(116, 42, 132, 0.3);
}

.ultra-btn.secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.ultra-btn::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.6s ease;
}

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

.ultra-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(116, 42, 132, 0.4);
}

.ultra-btn.primary:hover {
    background: var(--primary-light);
}

.ultra-btn.secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-pixel {
    position: relative;
    z-index: 2;
}

/* Ultra Navigation */
.ultra-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.nav-dots {
    display: flex;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.nav-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-light);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(116, 42, 132, 0.5);
}

.nav-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.nav-arrows {
    display: flex;
    gap: 1rem;
}

.ultra-arrow {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ultra-arrow:hover {
    background: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(116, 42, 132, 0.4);
}

.ultra-arrow:active {
    transform: scale(0.95);
}

.arrow-pixel {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

/* Ultra Progress */
.ultra-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-line {
    width: 200px;
    height: 4px;
    background: var(--secondary-dark);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 3s infinite;
}

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

.progress-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.counter-separator {
    opacity: 0.5;
}

/* Services Section — two-up “game menu” cards (theme: --primary-*, --bg-*, --secondary-*) */
.services-section {
    padding: clamp(3rem, 8vw, var(--spacing-xl)) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(116, 42, 132, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(142, 59, 160, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.services-categories-grid--pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 4vw, 2.5rem);
    max-width: 1080px;
    margin: clamp(1.5rem, 4vw, var(--spacing-xl)) auto 0;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.service-category-card {
    --card-accent: var(--primary-color);
    --card-accent-2: var(--primary-light);
    background: linear-gradient(165deg, rgba(36, 36, 42, 0.98) 0%, var(--bg-card) 40%, rgba(22, 22, 28, 0.98) 100%);
    border: 2px solid var(--secondary-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeInUp 0.75s ease-out forwards;
    box-shadow:
        6px 6px 0 rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-category-card--1 {
    --card-accent: var(--primary-color);
    --card-accent-2: var(--primary-light);
}

.service-category-card--2 {
    --card-accent: var(--primary-dark);
    --card-accent-2: var(--secondary-color);
}

.service-category-card:nth-child(1) {
    animation-delay: 0.08s;
}

.service-category-card:nth-child(2) {
    animation-delay: 0.18s;
}

.service-card-slot {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 5;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.45rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}

.service-card-topbar {
    display: block;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, var(--card-accent), var(--card-accent-2));
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(116, 42, 132, 0.35);
}

.service-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(116, 42, 132, 0.12) 0%,
        rgba(255, 193, 7, 0.06) 50%,
        rgba(116, 42, 132, 0.08) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .service-category-card:hover {
        transform: translate(-4px, -4px);
        border-color: var(--primary-light);
        box-shadow:
            10px 10px 0 rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(116, 42, 132, 0.35),
            0 24px 48px rgba(116, 42, 132, 0.22);
    }

    .service-category-card:hover::before {
        opacity: 1;
    }
}

/* Category Image Wrapper */
.category-image-wrapper {
    position: relative;
    height: clamp(180px, 22vw, 240px);
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary-dark) 0%, #1a1424 50%, var(--secondary-dark) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
}

.category-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    transition: transform var(--transition-normal);
    filter: contrast(1.08) saturate(1.15);
}

@media (hover: hover) and (pointer: fine) {
    .service-category-card:hover .category-featured-image {
        transform: scale(1.06);
    }
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-placeholder-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(116, 42, 132, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 42, 132, 0.25) 1px, transparent 1px);
    background-size: 14px 14px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
}

.service-category-card .pixel-icon {
    position: relative;
    z-index: 1;
    color: var(--primary-light);
    animation: iconFloat 3.5s ease-in-out infinite;
}

.service-category-card .pixel-icon svg {
    width: clamp(3rem, 10vw, 4.25rem);
    height: clamp(3rem, 10vw, 4.25rem);
    display: block;
    filter: drop-shadow(0 4px 12px rgba(116, 42, 132, 0.45));
}

/* Category Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        transparent 38%,
        transparent 58%,
        rgba(0, 0, 0, 0.78) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: var(--spacing-md);
    z-index: 2;
}

.post-count-badge {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid var(--primary-light);
    position: relative;
    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.post-count-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.35;
}

.count-number {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
}

.count-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.92;
    margin-top: 0.15rem;
}

/* Category Content */
.category-content {
    padding: clamp(1.1rem, 3vw, var(--spacing-lg));
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.category-description {
    color: var(--secondary-light);
    line-height: 1.65;
    margin-bottom: var(--spacing-md);
    font-size: clamp(0.9rem, 1.8vw, 0.98rem);
    flex: 1;
}

/* Category Stats */
.category-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(116, 42, 132, 0.14);
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(116, 42, 132, 0.35);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.stat-item--accent {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(160, 159, 156, 0.35);
}

@media (hover: hover) and (pointer: fine) {
    .stat-item:hover {
        background: rgba(116, 42, 132, 0.26);
        border-color: var(--primary-color);
    }
}

.stat-icon-svg {
    display: flex;
    color: var(--primary-light);
}

.stat-icon-svg svg {
    width: 1rem;
    height: 1rem;
}

.stat-text {
    font-size: 0.72rem;
    color: var(--secondary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Category CTA — extends .tm-pixel-btn--primary in style.css */
.category-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
}

.cta-inner .cta-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}

@media (hover: hover) and (pointer: fine) {
    .category-cta:hover .cta-icon {
        transform: translateX(3px);
    }
}

.cta-icon {
    display: flex;
    transition: transform var(--transition-fast);
}

/* Pixel Border */
.pixel-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(42deg, var(--primary-color), var(--secondary-color), var(--primary-light)) border-box;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .service-category-card:hover .pixel-border {
        opacity: 0.45;
    }
}

/* Enhanced Icon Float Animation */
@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

/* Services Showcase Layout (wireframe-inspired, theme-oriented) */
.services-showcase-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    z-index: 2;
}

.service-showcase-card {
    border: 2px solid rgba(116, 42, 132, 0.45);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(34, 34, 40, 0.98), rgba(18, 18, 24, 0.98));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-showcase-card--1 {
    --service-accent-start: var(--primary-color);
    --service-accent-end: var(--primary-light);
    --service-chip-bg: rgba(26, 26, 26, 0.25);
    --service-chip-border: rgba(200, 199, 196, 0.58);
    --service-chip-hover: rgba(26, 26, 26, 0.45);
    --service-chip-hover-border: var(--secondary-light);
    --service-hero-highlight: rgba(255, 255, 255, 0.12);
}

.service-showcase-card--2 {
    --service-accent-start: var(--secondary-dark);
    --service-accent-end: var(--secondary-color);
    --service-chip-bg: rgba(18, 18, 18, 0.2);
    --service-chip-border: rgba(255, 255, 255, 0.45);
    --service-chip-hover: rgba(18, 18, 18, 0.38);
    --service-chip-hover-border: rgba(255, 255, 255, 0.8);
    --service-hero-highlight: rgba(116, 42, 132, 0.14);
}

.service-showcase-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: nowrap;
    padding: clamp(1.25rem, 3.4vw, 2rem);
    background:
        linear-gradient(130deg, var(--service-accent-start), var(--service-accent-end)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25));
}

.service-showcase-card--2 .service-showcase-hero {
    flex-direction: row-reverse;
}

.service-showcase-content {
    color: #fff;
    position: relative;
    flex: 1 1 62%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* .service-showcase-content::after {
    content: '';
    position: absolute;
    inset: -0.25rem -0.25rem -0.25rem -0.4rem;
    border-radius: 14px;
    border: 1px solid var(--service-hero-highlight);
    pointer-events: none;
    opacity: 0.75;
} */

.service-showcase-title {
    margin: 0 0 0.85rem;
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.service-showcase-title-icon {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
}

.service-showcase-card--2 .service-showcase-title-icon {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(116, 42, 132, 0.35);
}

.service-showcase-title-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.service-showcase-description {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.65;
    font-size: clamp(0.92rem, 1.6vw, 1rem);
    max-width: 92%;
}

.service-subservices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
    align-items: stretch;
}

.service-subservice-chip {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    background: var(--service-chip-bg);
    border: 1px solid var(--service-chip-border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 0.8rem;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
    min-height: 2.3rem;
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.45rem);
}

.service-subservice-chip.is-muted {
    background: rgba(26, 26, 26, 0.36);
    border-color: rgba(160, 159, 156, 0.4);
}

.service-showcase-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding-bottom: 0.15rem;
}

.service-showcase-cta svg {
    width: 1rem;
    height: 1rem;
}

.service-showcase-visual {
    /* min-height: 280px; */
    flex: 0 0 35%;
    max-width: 35%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.25);
    border: 1px solid rgba(200, 199, 196, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 30px rgba(0, 0, 0, 0.24);
}

.service-showcase-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.service-showcase-card--2 .service-showcase-visual {
    order: 0;
}

.service-showcase-visual-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
}

.service-showcase-visual-placeholder svg {
    width: 3.5rem;
    height: 3.5rem;
}

.service-projects-slider {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #101014 0%, var(--bg-card) 100%);
    border-top: 1px solid rgba(160, 159, 156, 0.2);
    padding: 0.65rem;
}

.service-projects-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
}

.service-project-slide {
    flex: 0 0 auto;
    display: block;
    min-height: 110px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0.3rem;
    border: 1px solid rgba(160, 159, 156, 0.25);
    background: rgba(26, 26, 26, 0.2);
}

.service-project-image {
    width: 100%;
    height: 100%;
    min-height: 110px;
    object-fit: cover;
    display: block;
}

.service-project-slide--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.service-project-slide--placeholder svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {
    .service-subservice-chip:hover {
        transform: translateY(-2px);
        background: var(--service-chip-hover);
        border-color: var(--service-chip-hover-border);
    }

    .service-showcase-cta:hover svg {
        transform: translateX(3px);
    }

    .service-showcase-card:hover .service-showcase-visual img {
        transform: scale(1.04);
    }
}

@media (max-width: 1080px) {
    .service-showcase-hero {
        flex-direction: column-reverse;
        flex-wrap: nowrap;
    }

    .service-showcase-content,
    .service-showcase-visual {
        flex: 1 1 auto;
        max-width: none;
    }

    .service-showcase-card--2 .service-showcase-hero {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .service-subservice-chip {
        flex-basis: 100%;
        max-width: 100%;
    }

    .service-showcase-description {
        max-width: 100%;
    }
}

/* Ultra Creative Testimonials Section */
.ultra-testimonials-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-dark) 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.ultra-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(116, 42, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(116, 42, 132, 0.03) 50%, transparent 100%);
    pointer-events: none;
    animation: testimonialBgShift 25s ease-in-out infinite;
}

@keyframes testimonialBgShift {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-30px) translateY(-20px) rotate(1deg); }
    66% { transform: translateX(20px) translateY(30px) rotate(-1deg); }
}

.ultra-testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Ultra Header */
.ultra-testimonials-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    position: relative;
}

.ultra-testimonials-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.ultra-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

.ultra-testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ultra Slider Wrapper — viewport clips row; track uses JS padding + slide widths */
.ultra-testimonials-slider-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0.25rem;
}

.ultra-testimonials-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    touch-action: pan-y;
    user-select: none;
    will-change: transform;
}

.ultra-testimonial-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 clamp(0.4rem, 1.2vw, 0.75rem);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.ultra-testimonial-slide:not(.is-focused) .ultra-testimonial-inner {
    opacity: 0.72;
    transform: scale(0.94);
}

.ultra-testimonial-slide.is-focused .ultra-testimonial-inner {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.ultra-testimonial-inner {
    background: linear-gradient(165deg, rgba(26, 26, 34, 0.98) 0%, var(--bg-card) 45%, rgba(18, 18, 24, 0.98) 100%);
    border: 2px solid var(--secondary-dark);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 1.75rem);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease,
        border-color 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    min-height: 100%;
}

.ultra-testimonial-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(116, 42, 132, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 193, 7, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-testimonial-slide.is-focused .ultra-testimonial-inner:hover::before {
    opacity: 1;
}

.ultra-testimonial-slide.is-focused .ultra-testimonial-inner {
    border-color: rgba(116, 42, 132, 0.85);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 193, 7, 0.15),
        inset 0 0 0 1px rgba(116, 42, 132, 0.25);
}

@media (hover: hover) and (pointer: fine) {
    .ultra-testimonial-slide.is-focused .ultra-testimonial-inner:hover {
        border-color: var(--primary-color);
        box-shadow:
            0 24px 56px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(116, 42, 132, 0.15);
    }
}

/* Pixel Avatar Container */
.pixel-avatar-container {
    position: relative;
    margin: 0 auto 2rem;
    width: 120px;
    height: 120px;
}

.pixel-avatar-frame {
    width: 100%;
    height: 100%;
    position: relative;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-dark);
    box-shadow: 
        0 0 0 2px var(--primary-light),
        0 10px 30px rgba(116, 42, 132, 0.3);
    animation: avatarFloat 4s ease-in-out infinite;
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.pixel-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    filter: contrast(1.1) saturate(1.2);
    transition: transform 0.3s ease;
}

.pixel-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    position: relative;
}

.pixel-avatar-pattern {
    width: 60px;
    height: 60px;
    background: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
        linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: patternRotate 8s linear infinite;
}

@keyframes patternRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pixel-avatar-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    animation: avatarGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.pixel-avatar-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* Testimonial Content */
.ultra-testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.ultra-quote-decoration {
    width: 48px;
    height: 4px;
    margin: 0 auto 1rem;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    border-radius: 2px;
    opacity: 0.9;
    box-shadow: 0 0 12px rgba(116, 42, 132, 0.35);
}

.ultra-testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-light);
    font-style: italic;
    margin: 0;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Author Info */
.ultra-testimonial-author {
    position: relative;
    z-index: 2;
}

.author-name {
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.author-details {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Ultra Navigation */
.ultra-testimonials-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding: 0 0.5rem;
}

.pixel-nav-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    max-width: 100%;
}

button.pixel-nav-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 2px;
    background: rgba(100, 100, 120, 0.45);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
    transform: rotate(45deg);
}

button.pixel-nav-dot:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}

.pixel-nav-dot.active {
    background: linear-gradient(135deg, var(--primary-color), #5a1f6a);
    border-color: rgba(255, 193, 7, 0.45);
    box-shadow: 0 0 0 1px rgba(116, 42, 132, 0.6), 0 0 16px rgba(116, 42, 132, 0.45);
    transform: rotate(45deg) scale(1.15);
}

@media (hover: hover) and (pointer: fine) {
    button.pixel-nav-dot:hover:not(.active) {
        background: rgba(116, 42, 132, 0.55);
        transform: rotate(45deg) scale(1.08);
    }
}

.pixel-nav-arrows {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Testimonial arrows — base = .tm-pixel-btn (style.css); square icon-only sizing */
.tm-testimonial-nav-btn.tm-pixel-btn.pixel-nav-arrow {
    width: 52px;
    height: 46px;
}

.tm-testimonial-nav-btn .tm-pixel-btn__inner {
    padding: 0;
    width: 100%;
    height: 100%;
}

.tm-testimonial-nav-btn .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.tm-testimonial-nav-btn .arrow-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    stroke: currentColor;
}

/* Progress Bar */
.ultra-testimonials-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-pixel-bar {
    width: 200px;
    height: 4px;
    background: var(--secondary-dark);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.progress-pixel-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.progress-pixel-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 3s infinite;
}

.progress-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.counter-separator {
    opacity: 0.5;
}

/* Contact section styles moved to assets/css/contact-form.css (tm-contact component) */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glitchText {
    0%, 100% { 
        text-shadow: 
            2px 2px 0 var(--primary-color),
            4px 4px 0 var(--primary-dark);
    }
    25% { 
        text-shadow: 
            -2px 2px 0 var(--primary-color),
            -4px 4px 0 var(--primary-dark);
    }
    50% { 
        text-shadow: 
            2px -2px 0 var(--primary-color),
            4px -4px 0 var(--primary-dark);
    }
}

@keyframes glitch-1 {
    0%, 100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0);
    }
    30% {
        clip-path: polygon(0 25%, 100% 25%, 100% 75%, 0 75%);
        transform: translate(2px, 2px);
    }
    60% {
        clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
        transform: translate(-2px, -2px);
    }
}

@keyframes wordRotate {
    0%, 25% { 
        opacity: 1;
        transform: translateY(0);
    }
    30%, 95% { 
        opacity: 0;
        transform: translateY(-50px);
    }
    100% { 
        opacity: 0;
        transform: translateY(50px);
    }
}

/* Ripple Animation */
@keyframes ripple {
    to {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }
    
    .game-showcase {
        max-width: 400px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .services-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Ultra Slider Responsive */
    .ultra-slide-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ultra-visual {
        height: 300px;
        order: -1;
    }
    
    .ultra-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-arrows {
        order: -1;
    }
}

@media (max-width: 768px) {
    .title-line-1 {
        font-size: 3rem;
    }
    
    .title-line-2 {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .tagline-rotating {
        min-width: 200px;
    }
    
    .tm-pixel-btn,
    .pixel-btn {
        font-size: 0.875rem;
    }
    
    .tm-pixel-btn__inner,
    .btn-inner {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .portfolio-grid,
    .services-categories-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pixel-team {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: var(--spacing-md);
        gap: var(--spacing-lg);
    }
    
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .pixel-logo img,
    .pixel-logo .custom-logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .tm-pixel-btn,
    .pixel-btn {
        width: 100%;
    }
    
    .game-showcase {
        max-width: 300px;
    }
    
    .console-base {
        height: 80px;
    }
    
    .d-pad {
        width: 60px;
        height: 60px;
    }
    
    .d-pad::before {
        width: 20px;
        left: 20px;
    }
    
    .d-pad::after {
        height: 20px;
        top: 20px;
    }
    
    .btn-a, .btn-b {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .team-member {
        width: 60px;
        height: 60px;
    }
    
    /* Service Category Cards Mobile */
    .services-categories-grid {
        gap: var(--spacing-md);
    }
    
    .category-image-wrapper {
        height: 150px;
    }
    
    .pixel-icon {
        font-size: 3rem;
    }
    
    .category-content {
        padding: var(--spacing-md);
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .services-categories-grid--pair .category-cta {
        align-self: stretch;
        width: 100%;
        justify-content: center;
    }
    
    .services-categories-grid--pair .cta-inner {
        flex: 1;
        justify-content: center;
    }
    
    .post-count-badge {
        padding: var(--spacing-xs);
    }
    
    .count-number {
        font-size: 1.2rem;
    }
    
    .count-label {
        font-size: 0.6rem;
    }
    
    /* Gamified Slider Mobile */
    .projects-slider-container {
        height: 500px;
    }
    
    .project-slide {
        padding: var(--spacing-md);
    }
    
    .project-media {
        height: 250px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-subtitle {
        font-size: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .d-pad-btn {
        width: 50px;
        height: 50px;
    }
    
    .d-pad-arrow {
        font-size: 1.2rem;
    }
    
    .action-btn.play-btn,
    .action-btn.pause-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.8rem;
    }
    
    /* Ultra Slider Mobile */
    .ultra-projects-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .ultra-container {
        padding: 0 1rem;
    }
    
    .ultra-header {
        margin-bottom: 2rem;
    }
    
    .ultra-slide-inner {
        gap: 1.5rem;
        min-height: auto;
    }
    
    .ultra-visual {
        height: 250px;
    }
    
    .ultra-project-title {
        font-size: 1.5rem;
    }
    
    .ultra-tools {
        justify-content: center;
    }
    
    .ultra-actions {
        justify-content: center;
    }
    
    .ultra-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .ultra-arrow {
        width: 40px;
        height: 40px;
    }
    
    .arrow-pixel {
        font-size: 1rem;
    }
    
    .progress-line {
        width: 150px;
    }
    
    /* Ultra Testimonials Mobile */
    .ultra-testimonials-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .ultra-testimonials-container {
        padding: 0 1rem;
    }
    
    .ultra-testimonials-header {
        margin-bottom: 2rem;
    }
    
    .ultra-testimonials-title {
        font-size: 2rem;
    }
    
    .ultra-testimonials-subtitle {
        font-size: 1rem;
    }
    
    .ultra-testimonial-inner {
        padding: 2rem 1.5rem;
    }
    
    .pixel-avatar-container {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .pixel-avatar-frame {
        border-width: 3px;
    }
    
    .pixel-avatar-pattern {
        width: 50px;
        height: 50px;
        background-size: 15px 15px;
    }
    
    .ultra-quote-decoration {
        width: 40px;
        margin-bottom: 0.75rem;
    }
    
    .ultra-testimonial-text {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .author-name {
        font-size: 1.2rem;
    }
    
    .author-details {
        font-size: 0.9rem;
    }
    
    .ultra-testimonials-navigation {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .pixel-nav-arrows {
        order: -1;
    }
    
    .tm-testimonial-nav-btn.tm-pixel-btn.pixel-nav-arrow {
        width: 48px;
        height: 44px;
    }
    
    .pixel-nav-dots {
        gap: 0.55rem 0.65rem;
    }
    
    button.pixel-nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .progress-pixel-bar {
        width: 150px;
    }
    
    .progress-counter {
        font-size: 0.9rem;
    }
}