/* =================================
   SYNTAX STUDIOS - MAIN STYLESHEET
   Custom Code, Zero Templates
   ================================= */

/* Root Variables */
:root {
    /* Colors */
    --color-bg: #0a0e27;
    --color-bg-light: #131832;
    --color-bg-lighter: #1a1f3a;
    --color-primary: #00d4ff;
    --color-secondary: #7c3aed;
    --color-accent: #ff6b9d;
    --color-text: #e4e4e7;
    --color-text-muted: #a1a1aa;
    --color-success: #10b981;
    --color-error: #ef4444;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-elegant: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 3rem;
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Matrix Canvas Background */
#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    z-index: -2;
    opacity: 0.2;
}

/* Static Code Snippets - hidden, we place them in sections */
.floating-code {
    display: none;
}

.code-snippet-static {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.4;
    white-space: nowrap;
    color: #abb2bf;
    pointer-events: none;
    z-index: 1;
}

.code-snippet-static.typed {
    opacity: 0.3;
}

/* Adjust code snippets on smaller screens */
@media (max-width: 1200px) {
    .code-snippet-static {
        font-size: 0.65rem;
        opacity: 0.25;
    }
}

@media (max-width: 768px) {
    .code-snippet-static {
        font-size: 0.6rem;
        opacity: 0.35;
    }

    /* Mobile-specific class for gap positioning */
    .code-snippet-static.mobile-gap {
        text-align: center;
        width: auto;
        max-width: 90%;
    }
}

/* Syntax highlighting colors (VS Code dark theme style) */
.code-snippet-static span.kw { color: #c678dd !important; } /* keywords - purple */
.code-snippet-static span.fn { color: #61afef !important; } /* functions - blue */
.code-snippet-static span.str { color: #98c379 !important; } /* strings - green */
.code-snippet-static span.num { color: #d19a66 !important; } /* numbers - orange */
.code-snippet-static span.cm { color: #7a8599 !important; font-style: italic; } /* comments - brighter gray */
.code-snippet-static span.sel { color: #e06c75 !important; } /* selectors - red */
.code-snippet-static span.prop { color: #56b6c2 !important; } /* properties - cyan */

/* Blinking cursor */
.code-cursor {
    color: #528bff;
    animation: blink 0.8s infinite;
    font-weight: bold;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bracket {
    color: var(--color-primary);
}

.studio {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

.glitch-wrapper {
    margin-bottom: 2rem;
}

.glitch {
    position: relative;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.02em;
    animation: glitch 3s infinite;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--color-primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--color-accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(70px, 9999px, 71px, 0); }
    40% { clip: rect(30px, 9999px, 130px, 0); }
    60% { clip: rect(90px, 9999px, 140px, 0); }
    80% { clip: rect(50px, 9999px, 20px, 0); }
    100% { clip: rect(60px, 9999px, 85px, 0); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.code-highlight {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-weight: 600;
}

.code-highlight-pink {
    color: #ff6b9d;
    font-family: var(--font-mono);
    font-weight: 600;
}

.code-highlight-green {
    color: #10b981;
    font-family: var(--font-mono);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Scroll Indicator */
.hero {
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    position: relative;
}

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

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

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

.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 3D Code Cube */
.cube-wrapper {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    perspective: 800px;
    -webkit-perspective: 800px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.cube-wrapper:active {
    cursor: grabbing;
}

.code-cube {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(19, 24, 50, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-primary);
}

.cube-face pre {
    margin: 0;
}

.cube-face.front  { transform: rotateY(0deg) translateZ(100px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotateCube {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.comment {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

/* Why Us Section - Snake Journey */
.why-us-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
}

.journey-snake {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.snake-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.snake-row.row-1 {
    justify-content: flex-start;
    padding-left: 3%;
}

.snake-row.row-2 {
    justify-content: flex-start;
    padding-left: 6%;
}

.snake-row.row-3 {
    justify-content: center;
}

/* Horizontal arrows between boxes */
.arrow-h {
    width: 80px;
    height: 24px;
    flex-shrink: 0;
}

/* Curved arrows - absolutely positioned, separate classes */
.curve-03-04 {
    position: absolute;
    width: 200px;
    height: 109px;
    right: 1.1%;
    top: 87px;
}

.curve-05-06 {
    position: absolute;
    width: 200px;
    height: 107px;
    left: 15%;
    top: 220px;
}

.journey-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(19, 24, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    min-width: 250px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.journey-box:hover {
    transform: translateY(-5px);
}

/* Different hover colors for each journey box */
.journey-box.box-1:hover {
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.journey-box.box-2:hover {
    border-color: #ff6b9d;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.journey-box.box-3:hover {
    border-color: #ffd93d;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.2);
}

.journey-box.box-4:hover {
    border-color: #6bcb77;
    box-shadow: 0 10px 30px rgba(107, 203, 119, 0.2);
}

.journey-box.box-5:hover {
    border-color: #c678dd;
    box-shadow: 0 10px 30px rgba(198, 120, 221, 0.2);
}

.journey-box.box-6:hover {
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.journey-box.final-box {
    border-color: rgba(16, 185, 129, 0.5);
}

.box-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.row-2 .journey-box:nth-child(1) .box-number,
.row-2 .journey-box:nth-child(3) .box-number {
    background: linear-gradient(135deg, #7c3aed, #ff6b9d);
    -webkit-background-clip: text;
    background-clip: text;
}

.row-3 .box-number {
    background: linear-gradient(135deg, #ff6b9d, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
}

.box-content h3 {
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.box-content p {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
}

.check-mark {
    color: #10b981;
    font-size: 1.5rem;
    margin-left: auto;
}


/* Why Custom Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Different hover colors for each feature card */
.feature-card:nth-child(6n+1):hover {
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-card:nth-child(6n+2):hover {
    border-color: #ff6b9d;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.feature-card:nth-child(6n+3):hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.feature-card:nth-child(6n+4):hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.feature-card:nth-child(6n+5):hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.feature-card:nth-child(6n+6):hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Feature card icon styling */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.25;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

/* Feature icon color variants */
.feature-icon--cyan { background: rgba(0, 212, 255, 0.1); }
.feature-icon--cyan::before { background: #00d4ff; }
.feature-icon--cyan svg { color: #00d4ff; }

.feature-icon--pink { background: rgba(255, 107, 157, 0.1); }
.feature-icon--pink::before { background: #ff6b9d; }
.feature-icon--pink svg { color: #ff6b9d; }

.feature-icon--purple { background: rgba(124, 58, 237, 0.1); }
.feature-icon--purple::before { background: #7c3aed; }
.feature-icon--purple svg { color: #7c3aed; }

.feature-icon--green { background: rgba(16, 185, 129, 0.1); }
.feature-icon--green::before { background: #10b981; }
.feature-icon--green svg { color: #10b981; }

.feature-icon--orange { background: rgba(245, 158, 11, 0.1); }
.feature-icon--orange::before { background: #f59e0b; }
.feature-icon--orange svg { color: #f59e0b; }

.feature-icon--blue { background: rgba(59, 130, 246, 0.1); }
.feature-icon--blue::before { background: #3b82f6; }
.feature-icon--blue svg { color: #3b82f6; }

.feature-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* Process Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-value-wrapper {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    margin-left: 0.25rem;
    color: var(--color-text);
    line-height: 1;
}

.stat-item p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(255, 107, 157, 0.1));
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--color-bg-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
}

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

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

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Page Titles */
.page-title {
    margin-top: 8rem;
    margin-bottom: 0.25rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.showcase-hero,
.about-hero,
.services-hero,
.contact-hero {
    text-align: center;
    padding: 6rem 0 4rem;
}

/* Showcase Components */
.showcase-section {
    padding: var(--spacing-xl) 0;
}

.showcase-header {
    margin-bottom: 3rem;
}

.showcase-header h2 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.component-demo {
    position: relative;
}

.demo-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Tech/SaaS Components */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.glass-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.glass-card h3 {
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.glass-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.glass-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Pricing Card */
.pricing-card {
    background: var(--color-bg-light);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-text);
}

.period {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.check {
    color: var(--color-success);
    margin-right: 0.5rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Feature Showcase */
.feature-showcase {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-metrics {
    margin-top: 1.5rem;
}

.metric-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transition: width 1s ease-out;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* Wedding/Elegant Components */
.wedding-section {
    background: linear-gradient(135deg, rgba(245, 215, 227, 0.05), rgba(232, 180, 200, 0.05));
}

.invitation-card {
    background: linear-gradient(135deg, #fff5f8, #ffe8f0);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #8b5a6f;
}

.floral-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.2;
}

.floral-decoration.top {
    top: 10px;
    left: 10px;
    background: radial-gradient(circle, rgba(216, 159, 176, 0.5), transparent);
}

.floral-decoration.bottom {
    bottom: 10px;
    right: 10px;
    background: radial-gradient(circle, rgba(216, 159, 176, 0.5), transparent);
}

.elegant-script {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #a06d80;
}

.couple-names {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    color: #8b5a6f;
    margin: 1rem 0;
}

.wedding-date {
    font-size: 1.1rem;
    color: #a06d80;
    margin-bottom: 1.5rem;
}

.divider {
    margin: 1.5rem 0;
    color: #d89fb0;
    font-size: 1.5rem;
}

.venue {
    color: #a06d80;
    margin-bottom: 2rem;
}

.elegant-btn {
    background: linear-gradient(135deg, #d89fb0, #c78599);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.elegant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(216, 159, 176, 0.4);
}

/* Gallery */
.elegant-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-placeholder {
    font-size: 3rem;
    opacity: 0.5;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Timeline */
.elegant-timeline {
    padding: 1rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-time {
    font-weight: 600;
    color: #d89fb0;
    min-width: 80px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #d89fb0, #c78599);
    border-radius: 50%;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #d89fb0, transparent);
}

.timeline-item:last-child .timeline-dot::after {
    display: none;
}

.timeline-content h4 {
    color: #8b5a6f;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #a06d80;
    font-size: 0.9rem;
}

/* Product/E-commerce Components - Clean & Modern */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981;
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-image {
    height: 250px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image .image-placeholder {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.quick-view {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .quick-view {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    background: #ffffff;
}

.product-info h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: #f59e0b;
}

.reviews {
    font-size: 0.85rem;
    color: #6b7280;
}

.product-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
}

.price-old {
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.85rem;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.add-to-cart:hover {
    background: #2d2d44;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

/* Feature Box - E-commerce Style */
.feature-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.feature-box h4 {
    color: #1a1a2e;
}

.feature-box p {
    color: #6b7280;
}

.feature-box-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-points {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.feature-points li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.feature-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* CTA Banner - E-commerce Sale Style */
.cta-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.cta-content-box {
    color: white;
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    background: #fbbf24;
    color: #1a1a2e;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-banner h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    min-width: 65px;
}

.countdown-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.countdown-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-banner {
    background: #fbbf24;
    color: #1a1a2e;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.cta-btn-banner:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

/* Creative/Portfolio Components - Bold & Artistic */
.creative-section {
    background: #0a0a0a;
}

.creative-section .showcase-header h2 {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.creative-section .showcase-header p {
    color: #888888;
}

.creative-card {
    background: #141414;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #222;
}

.creative-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.creative-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.creative-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.creative-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 1.5rem 1rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.creative-content {
    padding: 1.5rem;
    background: #141414;
}

.creative-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.creative-content p {
    color: #666666;
    font-size: 0.9rem;
}

.creative-link {
    color: #ff6b35;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.creative-link:hover {
    color: #f7931e;
}

/* Profile Card - Minimal Artist Style */
.profile-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
}

.profile-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    background: #ff6b35;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 300;
    color: white;
    margin: 0 auto;
    position: relative;
    letter-spacing: 2px;
}

.profile-status {
    position: absolute;
    bottom: -5px;
    right: calc(50% - 50px);
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #141414;
    border-radius: 50%;
}

.profile-name {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.profile-title {
    color: #666666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    transition: var(--transition);
    color: #888;
    cursor: pointer;
}

.social-icon:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.profile-btn {
    width: 100%;
    padding: 0.85rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ff6b35;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.profile-btn:hover {
    background: #ff6b35;
    color: white;
}

/* Skills Box - Portfolio Style */
.skills-box {
    background: #141414;
    border: 1px solid #222;
    border-radius: 0;
    padding: 2rem;
}

.skills-box h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.skill-info span:first-child {
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-info span:last-child {
    color: #ff6b35;
    font-weight: 500;
}

.skill-bar {
    background: #222;
    border-radius: 0;
    height: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 0;
    transition: width 1s ease-out;
}

/* About Page Styles */
.story-section {
    padding: var(--spacing-xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.code-editor-mockup {
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.editor-dots {
    display: flex;
    gap: 0.5rem;
}

.editor-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.editor-dots .dot-close {
    background: #ff5f56;
}

.editor-dots .dot-minimize {
    background: #ffbd2e;
}

.editor-dots .dot-maximize {
    background: #27ca3f;
}

.editor-dots .dot:hover {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* Editor states */
.code-editor-mockup {
    transition: var(--transition);
}

.code-editor-mockup.minimized .editor-content {
    display: none;
}

.code-editor-mockup.closed {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.editor-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.editor-content {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
}

.code-keyword { color: #ff79c6; }
.code-function { color: #50fa7b; }
.code-property { color: #8be9fd; }
.code-boolean { color: #bd93f9; }
.code-string { color: #f1fa8c; }

/* Team Section */
.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

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

.team-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.team-stat .stat-number {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Services Page Styles - Asymmetrical Design */
.services-asymmetric {
    padding: 2rem 0;
    overflow: hidden;
}

.service-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 2.5rem 2rem;
    min-height: 400px;
    align-items: center;
}

.service-block:last-child {
    margin-bottom: 2rem;
}

/* Background shapes container - FULL WIDTH */
.service-block__bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

/* Large triangular/diagonal shape - FULL BLEED */
.service-block__shape {
    position: absolute;
    width: 65%;
    height: 130%;
    top: -15%;
    clip-path: polygon(0 0, 100% 8%, 75% 100%, 0 92%);
    opacity: 0.7;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.service-block:hover .service-block__shape {
    transform: scale(1.01);
    opacity: 0.8;
}

/* Shape colors for each service - Softer tones */
.service-block__shape--purple {
    background: linear-gradient(145deg, #9333ea 0%, #7c3aed 50%, #6d28d9 100%);
    left: 0;
}

.service-block__shape--cyan {
    background: linear-gradient(145deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    right: 0;
    left: auto;
    clip-path: polygon(25% 8%, 100% 0, 100% 92%, 0 100%);
}

.service-block__shape--pink {
    background: linear-gradient(145deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    left: 0;
    clip-path: polygon(0 5%, 100% 0, 80% 95%, 0 100%);
}

.service-block__shape--green {
    background: linear-gradient(145deg, #10b981 0%, #059669 50%, #047857 100%);
    right: 0;
    left: auto;
    clip-path: polygon(20% 0, 100% 5%, 100% 100%, 0 95%);
}

.service-block__shape--orange {
    background: linear-gradient(145deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    left: 0;
    clip-path: polygon(0 0, 95% 10%, 85% 100%, 0 90%);
}

.service-block__shape--blue {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    right: 0;
    left: auto;
    clip-path: polygon(15% 10%, 100% 0, 100% 90%, 5% 100%);
}

/* Diagonal line overlay */
.service-block__diagonal {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    top: 50%;
    left: 0;
    transform: rotate(-12deg);
}

.service-block__diagonal--reverse {
    transform: rotate(12deg);
}

/* Content section */
.service-block__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.service-block__header {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 14, 39, 0.95);
    padding: 0.75rem 2rem 0.75rem 1rem;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    transform: skewX(-5deg);
}

.service-block__header > * {
    transform: skewX(5deg);
}

.service-block__number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 2px solid var(--color-primary);
}

.service-block__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-text);
    margin: 0;
    font-weight: 700;
}

.service-block__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 500px;
    background: rgba(10, 14, 39, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

/* Image placeholder */
.service-block__image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1);
    background: rgba(19, 24, 50, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    justify-self: end;
}

.service-block__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block__image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(19, 24, 50, 0.8), rgba(26, 31, 58, 0.8));
}

.service-block__image.placeholder::after {
    content: '🖼️';
    font-size: 4rem;
    opacity: 0.3;
}

/* Reverse layout for alternating sections */
.service-block--reverse {
    direction: rtl;
}

.service-block--reverse > * {
    direction: ltr;
}

.service-block--reverse .service-block__image {
    justify-self: start;
}

.service-block--reverse .service-block__content {
    text-align: left;
}

/* Unique styling tweaks per section */
.service-block--1 .service-block__number { border-color: #9333ea; }
.service-block--1 .service-block__text { border-left-color: #9333ea; }

.service-block--2 .service-block__number { border-color: #06b6d4; }
.service-block--2 .service-block__text { border-left-color: #06b6d4; }

.service-block--3 .service-block__number { border-color: #ec4899; }
.service-block--3 .service-block__text { border-left-color: #ec4899; }

.service-block--4 .service-block__number { border-color: #10b981; }
.service-block--4 .service-block__text { border-left-color: #10b981; }

.service-block--5 .service-block__number { border-color: #f97316; }
.service-block--5 .service-block__text { border-left-color: #f97316; }

.service-block--6 .service-block__number { border-color: #3b82f6; }
.service-block--6 .service-block__text { border-left-color: #3b82f6; }

/* Old service styles (keeping for backward compatibility) */
.main-services {
    padding: var(--spacing-xl) 0;
}

.service-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.service-content h2 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.service-features li {
    color: var(--color-text-muted);
    padding: 0.5rem 0;
}

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

.process-card {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* Different Section */
.different-section {
    padding-top: 1.5rem;
}

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

@media (min-width: 600px) {
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .different-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.different-card {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.different-card:hover {
    transform: translateY(-5px);
}

/* Different hover colors for each card */
.different-card:nth-child(4n+1):hover {
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.different-card:nth-child(4n+2):hover {
    border-color: #ff6b9d;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.different-card:nth-child(4n+3):hover {
    border-color: #ffd93d;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.2);
}

.different-card:nth-child(4n+4):hover {
    border-color: #6bcb77;
    box-shadow: 0 10px 30px rgba(107, 203, 119, 0.2);
}

.different-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: var(--spacing-xl) 0;
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    background-color: #1a1f35;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: #1a1f35;
    color: #ffffff;
    padding: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.form-message {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
    display: block;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h4,
.info-card h3 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--color-primary);
    display: block;
    margin-top: 0.25rem;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

/* Contact Form Success State */
.contact-grid.fade-out {
    animation: fadeOutUp 0.5s ease forwards;
}

.contact-success {
    display: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-success.visible {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

.success-content {
    margin-bottom: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.4s ease 0.3s both;
}

.contact-success h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.contact-success p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.success-next-steps {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: left;
    animation: fadeInUp 0.5s ease 0.4s both;
}

.success-next-steps h3 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.success-next-steps .next-steps li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
}

.success-next-steps .next-steps li span {
    display: none;
}

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

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(19, 24, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-item:hover {
    transform: translateY(-5px);
}

/* Different hover colors for each FAQ item */
.faq-item:nth-child(6n+1):hover {
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.faq-item:nth-child(6n+2):hover {
    border-color: #ff6b9d;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.faq-item:nth-child(6n+3):hover {
    border-color: #ffd93d;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.2);
}

.faq-item:nth-child(6n+4):hover {
    border-color: #6bcb77;
    box-shadow: 0 10px 30px rgba(107, 203, 119, 0.2);
}

.faq-item:nth-child(6n+5):hover {
    border-color: #c678dd;
    box-shadow: 0 10px 30px rgba(198, 120, 221, 0.2);
}

.faq-item:nth-child(6n+6):hover {
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.faq-item p {
    text-align: center;
}

.inline-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

/* Animation classes for scroll reveals */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}



/* Responsive Design */
@media (max-width: 1024px) {
    html, body {
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
    }

    .hero {
        overflow: visible !important;
        transform-style: preserve-3d !important;
        -webkit-transform-style: preserve-3d !important;
    }

    .cube-wrapper {
        position: absolute;
        right: 15px;
        left: auto;
        top: 90px;
        transform: none;
        width: 70px;
        height: 70px;
        perspective: 300px;
        -webkit-perspective: 300px;
        transform-style: preserve-3d !important;
        -webkit-transform-style: preserve-3d !important;
        z-index: 1;
        touch-action: none;
    }

    .code-cube {
        width: 70px;
        height: 70px;
        opacity: 1;
        transform-style: preserve-3d !important;
        -webkit-transform-style: preserve-3d !important;
        animation: rotateCube 15s infinite linear;
    }

    .code-cube .cube-face {
        width: 70px;
        height: 70px;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        background: rgba(19, 24, 50, 0.98);
        border: 1px solid rgba(0, 212, 255, 0.5);
        font-size: 0.4rem;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
    }

    .code-cube .cube-face.front  { transform: rotateY(0deg) translateZ(35px) !important; }
    .code-cube .cube-face.back   { transform: rotateY(180deg) translateZ(35px) !important; }
    .code-cube .cube-face.right  { transform: rotateY(90deg) translateZ(35px) !important; }
    .code-cube .cube-face.left   { transform: rotateY(-90deg) translateZ(35px) !important; }
    .code-cube .cube-face.top    { transform: rotateX(90deg) translateZ(35px) !important; }
    .code-cube .cube-face.bottom { transform: rotateX(-90deg) translateZ(35px) !important; }

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

    .service-item {
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Asymmetric Services - Tablet */
    .service-block {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-block__shape {
        width: 60%;
        height: 120%;
        top: -10%;
    }

    .service-block__image {
        max-width: 320px;
    }

    .service-block__title {
        font-size: 1.4rem;
    }

    .service-block__text {
        font-size: 0.95rem;
    }

    .journey-snake {
        max-width: 100%;
        padding: 0 1rem;
    }

    .journey-box {
        min-width: 180px;
        padding: 0.75rem 1rem;
    }

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

    .box-content p {
        display: none;
    }

    .arrow-h {
        width: 40px;
    }

    .curve-03-04 {
        width: 150px;
        height: 50px;
        top: 80px;
    }

    .curve-05-06 {
        width: 150px;
        height: 50px;
        top: 190px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .hero {
        padding: 6rem 1rem 4rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-links {
        gap: 2rem;
    }

    .component-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Asymmetric Services - Mobile */
    .service-block {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 2.5rem;
        padding: 1.5rem 1rem;
    }

    .service-block--reverse {
        direction: ltr;
    }

    .service-block__shape {
        width: 100%;
        height: 105%;
        top: -2.5%;
        opacity: 0.6;
        clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
    }

    .service-block--reverse .service-block__shape {
        clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
    }

    .service-block__header {
        flex-direction: row;
        padding: 0.5rem 1.5rem 0.5rem 0.75rem;
    }

    .service-block__title {
        font-size: 1.25rem;
    }

    .service-block__number {
        font-size: 1.25rem;
        padding: 0.2rem 0.5rem;
    }

    .service-block__text {
        font-size: 1rem;
        padding: 1rem;
    }

    .service-block__image {
        max-width: 100%;
        justify-self: center;
        margin-top: 1rem;
    }

    .service-block--reverse .service-block__image {
        justify-self: center;
        order: 2;
    }

    .service-block--reverse .service-block__content {
        order: 1;
    }

    .journey-snake {
        gap: 1rem;
    }

    .snake-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0 !important;
    }

    /* Hide all arrows on mobile */
    .arrow-h,
    .curve-03-04,
    .curve-05-06 {
        display: none;
    }

    .journey-box {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }

    .box-content p {
        display: block;
    }

    /* Show single vertical arrow between row groups on mobile */
    .snake-row.row-1::after,
    .snake-row.row-2::after {
        content: '↓';
        font-size: 1.5rem;
        margin-top: 1rem;
        display: block;
    }

    .snake-row.row-1::after {
        color: #00d4ff;
    }

    .snake-row.row-2::after {
        color: #7c3aed;
    }

    .snake-row.row-3::after {
        display: none;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
}

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.75rem;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }
}

/* =================================
   SERVICES PAGE ENHANCEMENTS
   ================================= */

/* Hero Animated Shapes */
.services-hero {
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-shape--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape--2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-secondary), transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.hero-shape--3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-accent), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* Service Block Icon */
.service-block__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-block__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-block:hover .service-block__icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(124, 58, 237, 0.3));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.service-block:hover .service-block__icon svg {
    color: var(--color-text);
}

/* Service specific icon colors */
.service-block--1 .service-block__icon {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(124, 58, 237, 0.2));
    border-color: rgba(147, 51, 234, 0.4);
}
.service-block--1 .service-block__icon svg { color: #9333ea; }

.service-block--2 .service-block__icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(14, 116, 144, 0.2));
    border-color: rgba(6, 182, 212, 0.4);
}
.service-block--2 .service-block__icon svg { color: #06b6d4; }

.service-block--3 .service-block__icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2));
    border-color: rgba(236, 72, 153, 0.4);
}
.service-block--3 .service-block__icon svg { color: #ec4899; }

.service-block--4 .service-block__icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.4);
}
.service-block--4 .service-block__icon svg { color: #10b981; }

.service-block--5 .service-block__icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
}
.service-block--5 .service-block__icon svg { color: #f97316; }

.service-block--6 .service-block__icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border-color: rgba(59, 130, 246, 0.4);
}
.service-block--6 .service-block__icon svg { color: #3b82f6; }

/* Service Block Features List */
.service-block__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-block__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.service-block__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-block__features li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

/* Service-specific feature colors */
.service-block--1 .service-block__features li { border-left-color: #9333ea; }
.service-block--1 .service-block__features li::before { background: #9333ea; }

.service-block--2 .service-block__features li { border-left-color: #06b6d4; }
.service-block--2 .service-block__features li::before { background: #06b6d4; }

.service-block--3 .service-block__features li { border-left-color: #ec4899; }
.service-block--3 .service-block__features li::before { background: #ec4899; }

.service-block--4 .service-block__features li { border-left-color: #10b981; }
.service-block--4 .service-block__features li::before { background: #10b981; }

.service-block--5 .service-block__features li { border-left-color: #f97316; }
.service-block--5 .service-block__features li::before { background: #f97316; }

.service-block--6 .service-block__features li { border-left-color: #3b82f6; }
.service-block--6 .service-block__features li::before { background: #3b82f6; }

/* Different Cards Icons */
.different-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.different-card__icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--icon-color, var(--color-primary)), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.different-card:hover .different-card__icon::before {
    opacity: 1;
}

.different-card__icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.different-card:hover .different-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.different-card:hover .different-card__icon svg {
    transform: scale(1.1);
}

/* Icon color variants */
.different-card__icon--cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    --icon-color: #00d4ff;
}
.different-card__icon--cyan svg { color: #00d4ff; }

.different-card__icon--pink {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 107, 157, 0.05));
    --icon-color: #ff6b9d;
}
.different-card__icon--pink svg { color: #ff6b9d; }

.different-card__icon--purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    --icon-color: #7c3aed;
}
.different-card__icon--purple svg { color: #7c3aed; }

.different-card__icon--green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    --icon-color: #10b981;
}
.different-card__icon--green svg { color: #10b981; }

/* Enhanced Different Card hover */
.different-card {
    position: relative;
    overflow: hidden;
}

.different-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.different-card:hover::before {
    transform: translateX(100%);
}

/* Mobile responsive for service features */
@media (max-width: 768px) {
    .service-block__features {
        grid-template-columns: 1fr;
    }

    .service-block__icon {
        width: 40px;
        height: 40px;
    }

    .service-block__icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-shape--1 {
        width: 250px;
        height: 250px;
    }

    .hero-shape--2 {
        width: 200px;
        height: 200px;
    }

    .hero-shape--3 {
        width: 150px;
        height: 150px;
    }

    .different-card__icon {
        width: 48px;
        height: 48px;
    }

    .different-card__icon svg {
        width: 24px;
        height: 24px;
    }
}

/* =================================
   CONTACT PAGE ENHANCEMENTS
   ================================= */

/* Contact Hero inherits from services hero shapes */
.contact-hero {
    position: relative;
    overflow: hidden;
}

/* Glass Form Wrapper */
.contact-form-wrapper--glass {
    background: rgba(19, 24, 50, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper--glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    opacity: 0.8;
}

.contact-form-wrapper--glass::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Form Header */
.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.form-header__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.form-header__title {
    color: var(--color-text);
    font-size: 1.25rem;
    margin: 0 0 0.25rem 0;
}

.form-header__subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Form Inputs */
.contact-form-wrapper--glass .form-group input,
.contact-form-wrapper--glass .form-group select,
.contact-form-wrapper--glass .form-group textarea {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-form-wrapper--glass .form-group input:hover,
.contact-form-wrapper--glass .form-group select:hover,
.contact-form-wrapper--glass .form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(10, 14, 39, 0.8);
}

.contact-form-wrapper--glass .form-group input:focus,
.contact-form-wrapper--glass .form-group select:focus,
.contact-form-wrapper--glass .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15), 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Input Labels */
.contact-form-wrapper--glass .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Validation States */
.contact-form-wrapper--glass .form-group input:valid:not(:placeholder-shown),
.contact-form-wrapper--glass .form-group textarea:valid:not(:placeholder-shown) {
    border-color: rgba(16, 185, 129, 0.5);
}

.contact-form-wrapper--glass .form-group input:invalid:not(:placeholder-shown):not(:focus),
.contact-form-wrapper--glass .form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(239, 68, 68, 0.5);
}

/* Enhanced Submit Button */
.contact-form-wrapper--glass .btn-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper--glass .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;
}

.contact-form-wrapper--glass .btn-primary:hover::before {
    left: 100%;
}

/* Info Cards Enhanced */
.info-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-card__icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-card:hover .info-card__icon svg {
    transform: scale(1.1);
}

/* Icon color variants */
.info-card__icon--cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.info-card__icon--cyan svg { color: #00d4ff; }

.info-card__icon--pink {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 107, 157, 0.05));
    border: 1px solid rgba(255, 107, 157, 0.3);
}
.info-card__icon--pink svg { color: #ff6b9d; }

.info-card__icon--purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.3);
}
.info-card__icon--purple svg { color: #7c3aed; }

/* Featured Info Card */
.info-card--featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.05));
    border-color: rgba(0, 212, 255, 0.2);
}

.info-card--featured:hover {
    border-color: var(--color-primary);
}

/* Location Badge */
.info-card__location {
    color: var(--color-text);
    font-weight: 500;
    margin: 0.25rem 0 0.75rem 0;
}

.info-card__badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
}

/* FAQ Item Icons */
.faq-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.faq-item__icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-item__icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--color-primary);
}

.faq-item:hover .faq-item__icon svg {
    color: var(--color-text);
}

/* FAQ icon colors based on position */
.faq-item:nth-child(6n+1) .faq-item__icon svg { color: #00d4ff; }
.faq-item:nth-child(6n+2) .faq-item__icon svg { color: #ff6b9d; }
.faq-item:nth-child(6n+3) .faq-item__icon svg { color: #ffd93d; }
.faq-item:nth-child(6n+4) .faq-item__icon svg { color: #6bcb77; }
.faq-item:nth-child(6n+5) .faq-item__icon svg { color: #c678dd; }
.faq-item:nth-child(6n+6) .faq-item__icon svg { color: #ffffff; }

.faq-item:nth-child(6n+1):hover { border-color: #00d4ff; }
.faq-item:nth-child(6n+2):hover { border-color: #ff6b9d; }
.faq-item:nth-child(6n+3):hover { border-color: #ffd93d; }
.faq-item:nth-child(6n+4):hover { border-color: #6bcb77; }
.faq-item:nth-child(6n+5):hover { border-color: #c678dd; }
.faq-item:nth-child(6n+6):hover { border-color: #ffffff; }

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper--glass {
        padding: 1.5rem;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
    }

    .form-header__icon {
        margin: 0 auto;
    }

    .info-card__icon {
        width: 40px;
        height: 40px;
    }

    .info-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-item__icon {
        width: 36px;
        height: 36px;
    }

    .faq-item__icon svg {
        width: 18px;
        height: 18px;
    }
}

/* =================================
   SERVICE PAGE GRAPHICS
   ================================= */

.service-block__graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.service-graphic {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service 01: Code/Web Dev Graphic */
.service-graphic--code .graphic-window {
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 12px;
    padding: 0;
    width: 220px;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.graphic-window__dots {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.graphic-window__dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.graphic-window__dots .dot-close { background: #ff5f56; }
.graphic-window__dots .dot-minimize { background: #ffbd2e; }
.graphic-window__dots .dot-maximize { background: #27ca40; }

.graphic-window__dots .dot:hover {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* Graphic window states */
.graphic-window {
    transition: var(--transition);
}

.graphic-window.minimized .graphic-window__content {
    display: none;
}

.graphic-window.closed {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.graphic-window__content {
    padding: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.code-line {
    margin-bottom: 4px;
}

.code-line.indent {
    padding-left: 1.5rem;
}

.code-tag { color: #ff6b9d; }
.code-attr { color: #7c3aed; }
.code-str { color: #00d4ff; }

.floating-bracket {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    animation: float-bracket 4s ease-in-out infinite;
}

.floating-bracket--1 {
    top: 10px;
    left: 10px;
    color: #00d4ff;
    animation-delay: 0s;
}

.floating-bracket--2 {
    bottom: 10px;
    right: 10px;
    color: #ff6b9d;
    animation-delay: -2s;
}

@keyframes float-bracket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Service 02: SEO Graphic */
.service-graphic--seo {
    position: relative;
}

.seo-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 150px;
    padding: 20px;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(to top, #06b6d4, #00d4ff);
    border-radius: 4px 4px 0 0;
    animation: grow-bar 2s ease-out forwards;
}

.chart-bar--1 { height: 40%; animation-delay: 0s; }
.chart-bar--2 { height: 55%; animation-delay: 0.2s; }
.chart-bar--3 { height: 70%; animation-delay: 0.4s; }
.chart-bar--4 { height: 95%; animation-delay: 0.6s; }

@keyframes grow-bar {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

.chart-line {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}

.seo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.seo-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-arrow 2s ease-in-out infinite;
}

.seo-arrow svg {
    width: 24px;
    height: 24px;
    color: #10b981;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Service 03: AI Graphic */
.service-graphic--ai {
    position: relative;
}

.ai-brain {
    position: relative;
    width: 200px;
    height: 200px;
}

.brain-connections {
    position: absolute;
    inset: 0;
    color: rgba(236, 72, 153, 0.4);
    z-index: 1;
}

.brain-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    z-index: 2;
}

.brain-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    border-radius: 50%;
    animation: pulse-node 2s ease-in-out infinite;
    z-index: 2;
}

.brain-node--1 { top: 10%; left: 10%; animation-delay: 0s; }
.brain-node--2 { top: 10%; right: 10%; animation-delay: 0.4s; }
.brain-node--3 { bottom: 10%; left: 10%; animation-delay: 0.8s; }
.brain-node--4 { bottom: 10%; right: 10%; animation-delay: 1.2s; }
.brain-node--5 { top: 5%; left: 50%; margin-left: -10px; animation-delay: 1.6s; }

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

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    animation: ai-pulse-ring 2s ease-out infinite;
}

@keyframes ai-pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Service 04: CRM Graphic */
.service-graphic--crm {
    position: relative;
}

.crm-dashboard {
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    width: 200px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.dashboard-header {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dashboard-dots .dot-close { background: #ff5f56; }
.dashboard-dots .dot-minimize { background: #ffbd2e; }
.dashboard-dots .dot-maximize { background: #27ca40; }

.dashboard-dots .dot:hover {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* CRM Dashboard states */
.crm-dashboard {
    transition: var(--transition);
}

.crm-dashboard.minimized .dashboard-content {
    display: none;
}

.crm-dashboard.closed {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.dashboard-content {
    padding: 20px;
}

.dashboard-stat {
    text-align: center;
    margin-bottom: 15px;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-users {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 2px solid rgba(10, 14, 39, 1);
    margin-left: -8px;
}

.user-avatar:first-child {
    margin-left: 0;
}

.user-more {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.crm-card {
    position: absolute;
    width: 80px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
}

.crm-card--1 {
    top: 20px;
    right: 10px;
    animation: float-card 3s ease-in-out infinite;
}

.crm-card--2 {
    bottom: 20px;
    left: 10px;
    animation: float-card 3s ease-in-out infinite reverse;
}

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

/* Service 05: E-commerce Graphic */
.service-graphic--ecom {
    position: relative;
}

.ecom-card {
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 12px;
    width: 160px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.ecom-image {
    height: 100px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
}

.ecom-info {
    padding: 15px;
}

.ecom-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
}

.ecom-stars {
    color: #fbbf24;
    font-size: 0.75rem;
}

.ecom-cart {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    animation: cart-bounce 2s ease-in-out infinite;
}

.ecom-cart svg {
    width: 24px;
    height: 24px;
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes cart-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ecom-success {
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: success-pop 2s ease-in-out infinite;
}

.ecom-success svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

@keyframes success-pop {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Service 06: Support Graphic */
.service-graphic--support {
    position: relative;
}

.support-shield {
    position: relative;
    width: 100px;
    height: 120px;
}

.support-shield > svg {
    width: 100%;
    height: 100%;
    color: #3b82f6;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
}

.shield-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-check svg {
    width: 30px;
    height: 30px;
    color: #10b981;
    animation: check-pulse 2s ease-in-out infinite;
}

@keyframes check-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.support-gear {
    position: absolute;
    width: 40px;
    height: 40px;
    color: #3b82f6;
    opacity: 0.6;
}

.support-gear svg {
    width: 100%;
    height: 100%;
}

.support-gear--1 {
    top: 10px;
    right: 30px;
    animation: rotate-gear 8s linear infinite;
}

.support-gear--2 {
    bottom: 10px;
    left: 30px;
    width: 30px;
    height: 30px;
    animation: rotate-gear 6s linear infinite reverse;
}

@keyframes rotate-gear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile responsive for service graphics */
@media (max-width: 768px) {
    .service-graphic {
        max-width: 250px;
        height: 200px;
    }

    .service-block__graphic {
        min-height: 220px;
    }
}

/* =================================
   SHOWCASE PAGE ENHANCEMENTS
   ================================= */

/* Showcase Hero inherits from services hero shapes */
.showcase-hero {
    position: relative;
    overflow: hidden;
}

/* Showcase Disclaimer Banner */
.showcase-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #fbbf24;
}

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-icon svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

/* Style Badges */
.style-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.style-badge--pink {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 107, 157, 0.1));
    border-color: rgba(255, 107, 157, 0.4);
    color: #ff6b9d;
}

.style-badge--orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border-color: rgba(249, 115, 22, 0.4);
    color: #f97316;
}

.style-badge--purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.1));
    border-color: rgba(124, 58, 237, 0.4);
    color: #7c3aed;
}

/* Demo Label Enhancement */
.demo-label {
    position: relative;
}

.demo-label::before {
    content: 'STYLE COMPONENT: ';
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 0.65rem;
    letter-spacing: 1px;
}

/* Mobile responsive for showcase */
@media (max-width: 768px) {
    .showcase-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.8rem;
    }

    .style-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.75rem;
    }
}
