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

:root {
    /* Black & White Minimalist palette */
    --color-primary: #000000;
    --color-secondary: #1a1a1a;
    --color-accent: #ffffff;
    --color-accent-2: #e0e0e0;
    --color-accent-gradient: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    --color-purple: #ffffff;
    --color-pink: #ffffff;
    --color-orange: #ffffff;
    --color-text: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-bg: #000000;
    --color-bg-light: #0a0a0a;
    --color-bg-dark: #000000;
    --color-border: #2a2a2a;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

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

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

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

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::before {
    width: 100%;
}

/* Contact button in nav */
.nav-links .btn-primary {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid #ffd700;
    border-radius: 20px;
    color: #ffd700;
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: none;
    transition: all 0.3s ease;
}

.nav-links .btn-primary::before {
    display: none;
}

.nav-links .btn-primary:hover {
    background: #ffd700;
    color: #000000;
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    flex-direction: column;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-text);
    text-decoration: none;
    padding: var(--spacing-sm);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--color-bg-light);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 980px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #000000;
    color: #ffd700;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #ffd700;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: #ffd700;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* Hero Section */
.hero {
    padding: calc(60px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    animation: fadeInUp 1s ease;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Floating particles effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(191, 90, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

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

/* Trust Strip */
.trust-strip {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    cursor: default;
}

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

.trust-item i {
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.2);
}

.trust-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Sections */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-dark {
    background: var(--color-bg-dark);
    color: white;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.section-light {
    background: var(--color-bg-light);
}

.services-section {
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: ambient-glow 12s ease-in-out infinite;
}

@keyframes ambient-glow {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.15) rotate(5deg); }
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.04), rgba(255, 255, 255, 0.02), rgba(255, 215, 0, 0.04), transparent);
    animation: shimmer 10s infinite;
}

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

.services-section .section-header {
    background: transparent;
    padding: 0;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.services-section .section-title {
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 90px rgba(255, 215, 0, 0.1);
    animation: title-pulse-golden 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.services-section .section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #ffd700, #ffb300, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s ease infinite;
    opacity: 0.3;
}

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

@keyframes title-pulse-golden {
    0%, 100% { 
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 215, 0, 0.3),
            0 0 90px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
    50% { 
        text-shadow: 
            0 0 40px rgba(255, 215, 0, 0.7),
            0 0 80px rgba(255, 215, 0, 0.5),
            0 0 120px rgba(255, 215, 0, 0.3);
        transform: scale(1.03);
    }
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.services-section .service-card h3,
.services-section .service-card p {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.services-section .service-card h3 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: text-glow-golden 3s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section .service-card:hover h3 {
    color: #ffd700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

@keyframes text-glow-golden {
    0%, 100% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
    50% { text-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3); }
}

.services-section .service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.95));
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 193, 7, 0.4), rgba(255, 215, 0, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-section .service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section .service-card:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.12), rgba(0, 0, 0, 1));
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 25px 70px rgba(255, 215, 0, 0.3),
        0 10px 40px rgba(255, 215, 0, 0.2),
        inset 0 0 60px rgba(255, 215, 0, 0.08);
    transform: translateY(-20px) scale(1.08) rotateX(5deg);
}

.services-section .service-card:hover::before {
    opacity: 1;
    animation: border-spin 4s linear infinite;
}

.services-section .service-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@keyframes border-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.services-section .service-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    animation: icon-pulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.services-section .service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: icon-rotate 4s linear infinite;
}

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

@keyframes icon-pulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.4), 0 0 100px rgba(255, 215, 0, 0.2);
        transform: scale(1.1);
    }
}

.services-section .service-icon i {
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(5deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

.services-section .service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 193, 7, 0.3));
    border-color: #ffd700;
    transform: rotate(360deg) scale(1.3);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.7), 
        0 0 100px rgba(255, 215, 0, 0.5),
        0 0 140px rgba(255, 215, 0, 0.3);
}

.services-section .service-card:hover .service-icon::before {
    animation: icon-rotate 2s linear infinite;
}

.services-section .service-image {
    background: rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.services-section .service-image::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 215, 0, 0.2) 60deg, transparent 120deg);
    animation: rotate-slow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-section .service-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-section .service-card:hover .service-image {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        inset 0 0 60px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.15);
}

.services-section .service-card:hover .service-image::before {
    opacity: 1;
}

.services-section .service-card:hover .service-image::after {
    opacity: 1;
    animation: rotate-fast 5s linear infinite;
}

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

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

.services-section .service-image svg {
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: svg-float 4s ease-in-out infinite;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section .service-card:hover .service-image svg {
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.5));
    transform: scale(1.15);
}

@keyframes svg-float {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-10px) scale(1.05) rotate(2deg); }
    50% { transform: translateY(-5px) scale(1.08) rotate(-2deg); }
    75% { transform: translateY(-10px) scale(1.05) rotate(2deg); }
}

.testimonials-section {
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.05) 0%, transparent 45%);
    animation: float 18s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, -40px) rotate(5deg); }
}

.testimonials-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.01) 50px,
        rgba(255, 255, 255, 0.01) 100px
    );
    animation: lines-move 25s linear infinite;
}

@keyframes lines-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.testimonials-section .section-title {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    animation: title-pulse 4s ease-in-out infinite;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.testimonials-section .testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.98));
    border: 2px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials-section .testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 35px 90px rgba(255, 255, 255, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
    transform: translateY(-12px) scale(1.03) rotateX(3deg) rotateY(2deg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 1));
}

.testimonials-section .testimonial-card:hover::before {
    opacity: 1;
    animation: border-glow 3s infinite, border-spin 5s linear infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.testimonials-section .testimonial-stars {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: star-shine 3s ease-in-out infinite;
}

@keyframes star-shine {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.15) rotate(180deg);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.testimonials-section .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-section .testimonial-author {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.testimonials-section .testimonial-role {
    color: rgba(255, 255, 255, 0.6);
}

.process-section {
    background: #000000 !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: ambient-glow 12s ease-in-out infinite;
}

.process-section .section-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.process-section .timeline::before {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0.4));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.process-section .timeline-number {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 193, 7, 0.6));
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.process-section .timeline-content {
    position: relative;
    z-index: 1;
}

.process-section .timeline-content h3 {
    color: #ffffff;
}

.process-section .timeline-content p {
    color: rgba(255, 255, 255, 0.8);
}

.process-section .timeline-item:hover .timeline-number {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.4);
    transform: scale(1.2);
}

.faq-section {
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    top: -350px;
    right: -350px;
    animation: pulse-circle 10s ease-in-out infinite;
}

.faq-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    bottom: -350px;
    left: -350px;
    animation: pulse-circle 10s ease-in-out infinite reverse;
}

@keyframes pulse-circle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.4; 
    }
    50% { 
        transform: scale(1.4) rotate(180deg); 
        opacity: 0.7; 
    }
}

.faq-section .section-title {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(3, 138, 255, 0.4);
    position: relative;
    z-index: 1;
    animation: title-pulse 4s ease-in-out infinite;
}

.faq-stars {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.faq-section .faq-item {
    background: rgba(3, 138, 255, 0.05);
    border: 2px solid rgba(3, 138, 255, 0.25);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 138, 255, 0.8), rgba(0, 119, 182, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-section .faq-item:hover {
    background: rgba(3, 138, 255, 0.1);
    border-color: rgba(3, 138, 255, 0.5);
    box-shadow: 
        0 15px 50px rgba(3, 138, 255, 0.25),
        inset 0 0 30px rgba(3, 138, 255, 0.08);
    transform: translateX(15px) scale(1.02);
}

.faq-section .faq-item:hover::before {
    opacity: 1;
    animation: slide-bar 1.5s ease-in-out infinite;
}

@keyframes slide-bar {
    0%, 100% { 
        height: 100%; 
        top: 0;
        box-shadow: 0 0 15px rgba(3, 138, 255, 0.6);
    }
    50% { 
        height: 60%; 
        top: 20%;
        box-shadow: 0 0 25px rgba(3, 138, 255, 0.9);
    }
}

.faq-section .faq-question {
    color: #ffffff;
    background: transparent;
    transition: all 0.4s ease;
}

.faq-section .faq-question:hover {
    background: rgba(3, 138, 255, 0.08);
    padding-left: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(3, 138, 255, 0.4);
    letter-spacing: 0.5px;
}

.faq-section .faq-question::after {
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.faq-section .faq-item:hover .faq-question::after {
    transform: scale(1.2) rotate(180deg);
    filter: brightness(0) invert(1);
}

.faq-section .faq-answer {
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(3, 138, 255, 0.25);
}

.faq-section .faq-item.active {
    background: rgba(3, 138, 255, 0.12);
    border-color: rgba(3, 138, 255, 0.6);
    box-shadow: 0 0 40px rgba(3, 138, 255, 0.3);
}

.faq-section .faq-item.active::before {
    opacity: 1;
    animation: pulse-bar 2s ease-in-out infinite;
}

@keyframes pulse-bar {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px rgba(3, 138, 255, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 30px rgba(3, 138, 255, 0.9); }
}

.faq-section .faq-item.active .faq-question {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(3, 138, 255, 0.5);
    font-weight: 600;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    padding: var(--spacing-lg);
    background: var(--color-bg-light);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: #ffffff;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.service-icon i {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
}

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

.service-image {
    width: 100%;
    height: 150px;
    margin: var(--spacing-md) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image {
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.02);
}

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

.service-image svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.service-card:hover .service-image svg {
    transform: scale(1.05);
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--color-accent-gradient);
    color: white;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    padding: var(--spacing-lg);
    background: var(--color-bg-light);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-stars {
    color: #ffb800;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: shimmer 2s ease-in-out infinite;
}

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

.testimonial-text {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--color-text);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

/* Why Choose Us Section Headings */
.testimonial-card h3 {
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldenShine 3s ease-in-out infinite, floatText 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
}

@keyframes goldenShine {
    0%, 100% {
        background-position: 0% center;
        filter: brightness(1);
    }
    50% {
        background-position: 100% center;
        filter: brightness(1.3);
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.testimonial-card:hover h3 {
    animation: goldenShine 1.5s ease-in-out infinite, floatText 1s ease-in-out infinite, pulse 1.5s ease-in-out infinite;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
}

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

.faq-question i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #000000;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 200%; }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text);
}

.modal-close:hover {
    background: var(--color-border);
    border-color: #ffffff;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-bg-dark);
    color: var(--color-text);
}

.form-group select {
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-bg-dark);
    color: var(--color-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9375rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #34c759;
}

.form-status.error {
    display: block;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

.form-status.loading {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

/* Services Page Styles */
.page-hero {
    padding: calc(60px + var(--spacing-xl)) var(--spacing-md) var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: titleShine 4s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes titleShine {
    to { background-position: 200% center; }
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.service-detail-reverse {
    direction: rtl;
}

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

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    }
}

.service-detail-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ffd700, #ffb300, #ffd700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderRotate 3s linear infinite;
}

.service-detail-icon:hover::before {
    opacity: 1;
}

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

.service-detail-icon i {
    width: 44px;
    height: 44px;
    color: #000000;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.service-detail-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.service-detail-content .lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

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

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-lg) 0 var(--spacing-md);
    color: #ffd700;
    position: relative;
    padding-left: 20px;
}

.service-detail-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #ffd700 0%, #ffb300 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.03);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-list li:nth-child(1) { animation-delay: 0.3s; }
.service-list li:nth-child(2) { animation-delay: 0.4s; }
.service-list li:nth-child(3) { animation-delay: 0.5s; }
.service-list li:nth-child(4) { animation-delay: 0.6s; }
.service-list li:nth-child(5) { animation-delay: 0.7s; }
.service-list li:nth-child(6) { animation-delay: 0.8s; }

.service-list li:hover {
    background: rgba(255, 215, 0, 0.08);
    border-left-color: #ffd700;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.service-list li i {
    width: 20px;
    height: 20px;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

@media (max-width: 968px) {
    .use-cases {
        grid-template-columns: 1fr;
    }
}

.use-case-item {
    padding: var(--spacing-md) var(--spacing-sm);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.use-case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.use-case-item:hover::before {
    left: 100%;
}

.use-case-item:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.use-case-item:hover .use-case-icon {
    animation: iconFloat 1.5s ease-in-out infinite, iconRotate 0.6s ease;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

.use-case-item strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
    color: #ffd700;
    font-weight: 600;
    text-align: center;
}

.use-case-item p {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
}

.service-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.service-visual {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.service-visual:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.6);
}

.service-visual::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, 
        #ffd700 0deg,
        transparent 60deg,
        transparent 120deg,
        #ffb300 180deg,
        transparent 240deg,
        transparent 300deg,
        #ffd700 360deg);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
    animation: spinBorder 6s linear infinite;
}

@keyframes spinBorder {
    to { transform: rotate(360deg); }
}

.service-visual svg {
    width: 100%;
    height: 100%;
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.service-visual i {
    width: 120px;
    height: 120px;
    color: #ffd700;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.impact-stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-stat:hover::before {
    opacity: 1;
}

.impact-stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.3);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.impact-label {
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 179, 0, 0.03) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-item:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.08) 100%);
}

.integration-item i {
    width: 32px;
    height: 32px;
    color: #ffd700;
}

.integration-item span {
    font-weight: 500;
    color: var(--color-text);
}

/* Service Highlight Box */
.service-highlight {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
    border-left: 4px solid #ffd700;
    border-radius: 12px;
    margin: var(--spacing-lg) 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
    }
}

.service-highlight i {
    width: 48px;
    height: 48px;
    color: #ffd700;
    flex-shrink: 0;
}

.service-highlight strong {
    display: block;
    font-size: 1.125rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.service-highlight p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Value Propositions Grid */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.value-prop-item {
    padding: var(--spacing-lg);
    background: rgba(255, 215, 0, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-prop-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.value-prop-item strong {
    display: block;
    color: #ffd700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.value-prop-item p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.application-card {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.application-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.3);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.application-card strong {
    display: block;
    color: #ffd700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.application-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Indicator */
.pricing-indicator {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-indicator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: priceGlow 4s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.1); }
}

.pricing-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
    }
}

.pricing-indicator p {
    color: var(--color-text);
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-card {
    padding: var(--spacing-lg);
    background: rgba(255, 215, 0, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.feature-card i {
    width: 40px;
    height: 40px;
    color: #ffd700;
    margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}
}

.integration-item i {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.integration-item span {
    font-size: 0.9375rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    padding: var(--spacing-md);
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.feature-card i {
    width: 32px;
    height: 32px;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: calc(60px + var(--spacing-lg));
        min-height: auto;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .service-visual {
        width: 200px;
        height: 200px;
    }
    
    .service-visual i {
        width: 80px;
        height: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #ffffff;
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Mouse cursor effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: lighten;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

.service-card,
.testimonial-card,
.timeline-item {
    animation: fadeIn 0.6s ease-out;
}

/* Parallax sections */
.parallax-section {
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

/* Glowing text effect */
.glow-text {
    text-shadow: none;
}

/* Bouncing arrow */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Ripple effect */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: visible;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--color-accent);
    animation: ripple 1.5s ease-out infinite;
}

/* Magnetic button effect */
.magnetic {
    transition: transform 0.2s ease;
}

/* Bento grid animations */
.bento-grid {
    display: grid;
    gap: var(--spacing-md);
    animation: fadeIn 1s ease;
}

.bento-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: scale(1.03);
    z-index: 10;
}