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

/* Skip to content link */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0 0 10px 0;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
}

:root {
    /* Brand Colors */
    --primary: #960FC9;
    --primary-light: #8B5CF6;
    --primary-dark: #6D28D9;
    --accent: #EE8968;
    --accent-mid: #F87D78; /* Midpoint between orange and purple */

    /* Text Colors */
    --secondary: #f0f0f0;
    --text-light: #b0b0b0;
    --text-muted: #888888;

    /* Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;

    /* Gradients */
    --gradient: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-extended: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 25%, var(--primary-light) 75%, var(--primary) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);

    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;

    /* Neutral Colors for Print/Light Themes */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #e5e5e5;
    --gray-400: #e0e0e0;
    --gray-500: #d0d0d0;
    --gray-600: #888888;
    --gray-700: #666666;
    --gray-800: #333333;
    --gray-900: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header, .header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

header.scrolled, .header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced logo styling */
.enhanced-logo {
    position: relative;
    padding: 0.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(150, 15, 201, 0.05) 0%, 
        rgba(238, 137, 104, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.enhanced-logo:hover::before {
    opacity: 1;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2);
    position: relative;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced text styling */
.enhanced-logo-text {
    font-size: 1.1em; /* Slightly larger relative to parent */
    font-weight: 900;
    background: linear-gradient(135deg, #960FC9 0%, #EE8968 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.3) contrast(1.1);
    text-shadow: 0 0 30px rgba(150, 15, 201, 0.3);
    position: relative;
}

.enhanced-logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 25%, 
        var(--accent) 75%, 
        transparent 100%);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(0.5px);
}

.enhanced-logo:hover .enhanced-logo-text::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.enhanced-logo:hover .enhanced-logo-text {
    transform: translateY(-1px) scale(1.02);
    filter: brightness(1.6) contrast(1.3);
    text-shadow: 0 0 40px rgba(150, 15, 201, 0.5), 
                 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-logo-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(150, 15, 201, 0.2));
}

.enhanced-logo:hover .enhanced-logo-icon {
    transform: rotate(360deg) scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(150, 15, 201, 0.4)) 
            drop-shadow(0 0 20px rgba(238, 137, 104, 0.3));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--secondary);
}

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

nav a:hover::after {
    width: 100%;
}

/* No underline for buttons in nav */
nav .secondary-button::after,
nav .cta-button::after {
    display: none;
}

.cta-button {
    background: var(--gradient-extended);
    background-size: 200% 200%;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(150, 15, 201, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
    animation: enhancedGradientShift 8s ease infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(150, 15, 201, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.15) saturate(1.1);
    animation: enhancedGradientShift 4s ease infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px; /* Reduced spacing - exact height of fixed header */
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(59, 130, 246, 0.03) 50px,
            rgba(59, 130, 246, 0.03) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(99, 102, 241, 0.03) 50px,
            rgba(99, 102, 241, 0.03) 51px
        );
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    /* Animation removed - static orbs */
}

.orb1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #960FC9 0%, transparent 70%);
    top: -150px;
    right: -150px;
    /* Animation removed - static orb */
}

.orb2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #EE8968 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    /* Animation removed - static orb */
}

.orb3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Animation removed - static orb */
    opacity: 0.15;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotateZ(0deg);
        filter: blur(40px);
    }
    25% { 
        transform: translate(30px, -30px) scale(1.1) rotateZ(90deg);
        filter: blur(35px);
    }
    50% { 
        transform: translate(-20px, -40px) scale(0.95) rotateZ(180deg);
        filter: blur(45px);
    }
    75% { 
        transform: translate(-30px, 20px) scale(1.05) rotateZ(270deg);
        filter: blur(38px);
    }
}

@keyframes floatReverse {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotateZ(0deg);
        filter: blur(40px);
    }
    25% { 
        transform: translate(-30px, 20px) scale(1.05) rotateZ(-90deg);
        filter: blur(45px);
    }
    50% { 
        transform: translate(20px, 40px) scale(0.95) rotateZ(-180deg);
        filter: blur(35px);
    }
    75% { 
        transform: translate(30px, -30px) scale(1.1) rotateZ(-270deg);
        filter: blur(42px);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #8B5CF6 50%, #EE8968 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .cta-button {
    padding: 1rem 2.5rem; /* Larger primary CTA */
    font-size: 1.1rem;
}

.secondary-button {
    background: rgba(150, 15, 201, 0.1);
    color: var(--primary-light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(150, 15, 201, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(150, 15, 201, 0.2), transparent);
    transition: left 0.5s;
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:hover {
    background: rgba(150, 15, 201, 0.2);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(150, 15, 201, 0.2);
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.6s both;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150, 15, 201, 0.3), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 2rem auto 0;
    line-height: 1.8;
    font-weight: 400;
}

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

.service-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(150, 15, 201, 0.02) 100%);
    border-radius: 24px;
    padding: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(150, 15, 201, 0.05) 100%);
    border-color: rgba(150, 15, 201, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(150, 15, 201, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 16px rgba(150, 15, 201, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(150, 15, 201, 0.35);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 400;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem 2.8rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(150, 15, 201, 0.1) 0%, var(--bg-card) 50%, rgba(238, 137, 104, 0.1) 100%);
    border: 2px solid rgba(150, 15, 201, 0.3);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(150, 15, 201, 0.2);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite; /* Added pulse animation */
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(150, 15, 201, 0.7);
    }
    70% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 10px rgba(150, 15, 201, 0);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(150, 15, 201, 0);
    }
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(150, 15, 201, 0.3);
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(150, 15, 201, 0.05) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(150, 15, 201, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 20px 40px rgba(150, 15, 201, 0.3);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    position: relative;
}

.price-tag span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.original-price {
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
    display: block;
    margin-bottom: 0.5rem;
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #EE8968;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 0 20px 0 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(238, 137, 104, 0.3);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: var(--bg-secondary);
    color: white;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(155, 89, 182, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.2);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,
        var(--primary) 0%,
        var(--primary-light) 25%,
        var(--accent) 75%,
        #f97316 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(150, 15, 201, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: enhancedGradientShift 8s ease infinite;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:active::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(150, 15, 201, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.15) saturate(1.1);
    animation: enhancedGradientShift 4s ease infinite;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150, 15, 201, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-brand .enhanced-logo {
    margin-bottom: 1.2rem;
    font-size: 2.1rem;
}

.footer-brand .logo svg {
    width: 56px;
    height: 56px;
    min-width: 56px;
}

.footer-brand .enhanced-logo-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    animation-duration: 15s; /* Slower animation in footer */
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


.footer-column h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Mobile menu styles */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.mobile-menu-button[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    
    .mobile-menu-button {
        display: flex;
    }
    
    nav {
        padding: 1rem 3%;
    }
    
    .logo {
        font-size: 1.6rem;
        gap: 0.8rem;
    }
    
    .enhanced-logo {
        padding: 0.3rem;
    }
    
    .logo svg {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .enhanced-logo-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }
    
    .enhanced-logo-text {
        font-size: 1em; /* Reset relative sizing on mobile */
        animation: none; /* Disable shimmer animation on mobile for performance */
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero {
        padding-top: 90px; /* Account for header on mobile */
        padding-bottom: 3rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0; /* Add vertical padding */
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-visual {
        display: none; /* Hide SVG on mobile for cleaner look */
    }
    
    .floating-orb {
        display: none; /* Hide orbs on mobile */
    }
    
    /* Adjust animations for mobile */
    .hero-text h1,
    .hero-text p,
    .hero-buttons {
        animation: none; /* Disable animations on mobile for better performance */
        opacity: 1;
        transform: none;
    }
    
    .services {
        padding: 3rem 3%;
    }
    
    .pricing {
        padding: 3rem 3%;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .discount-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    .contact {
        padding: 3rem 3%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2::after {
        bottom: -8px;
        width: 40px;
        height: 2px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    
    nav {
        padding: 0.8rem 3%;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .enhanced-logo {
        padding: 0.2rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .enhanced-logo-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        animation: none; /* Disable 3D animation on very small screens */
    }
    
    .hero {
        padding-top: 85px; /* Adjusted for header on small screens */
        padding-left: 3%;
        padding-right: 3%;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cta-button, .secondary-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        width: 100%; /* Full width on very small screens */
        max-width: 280px;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
    
    .original-price {
        font-size: 1.5rem;
    }
    
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateX(500px);
    transition: transform 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.error {
    border-left: 4px solid var(--error);
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.notification-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--secondary);
}

.notification-message {
    color: var(--text-light);
    line-height: 1.5;
}

.notification-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.notification.success .notification-icon {
    color: var(--success);
}

.notification.error .notification-icon {
    color: var(--error);
}

@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
        top: 80px;
    }
}

/* Glow Effects */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

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

/* Enhanced Logo Styles */
.logo-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(150, 15, 201, 0.2));
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.enhanced-logo-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(150, 15, 201, 0.25)) 
            drop-shadow(0 0 12px rgba(238, 137, 104, 0.1));
    transform-origin: center;
}

.logo-icon path {
    transition: all 0.3s ease;
}

/* Logo enhancements for different contexts */
@media print {
    .logo-icon, .enhanced-logo-icon {
        background: white;
        border-radius: 50%;
        padding: 2px;
        filter: none;
    }
}

/* Light mode logo adjustments */
@media (prefers-color-scheme: light) {
    .enhanced-logo-icon {
        filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.15)) 
                drop-shadow(0 0 20px rgba(150, 15, 201, 0.1));
    }
}

/* 3D logo effect for enhanced version */
.enhanced-logo {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.enhanced-logo-icon {
    animation: enhanced3d 12s ease-in-out infinite;
}

@keyframes enhanced3d {
    0%, 100% { 
        transform: rotateY(0deg) rotateX(0deg) scale(1);
        filter: drop-shadow(0 4px 8px rgba(150, 15, 201, 0.25)) 
                drop-shadow(0 0 12px rgba(238, 137, 104, 0.1));
    }
    25% { 
        transform: rotateY(8deg) rotateX(2deg) scale(1.02);
        filter: drop-shadow(0 6px 12px rgba(150, 15, 201, 0.3)) 
                drop-shadow(0 0 16px rgba(238, 137, 104, 0.15));
    }
    50% {
        transform: rotateY(0deg) rotateX(4deg) scale(1.03);
        filter: drop-shadow(0 8px 16px rgba(150, 15, 201, 0.35)) 
                drop-shadow(0 0 20px rgba(238, 137, 104, 0.2));
    }
    75% { 
        transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
        filter: drop-shadow(0 6px 12px rgba(150, 15, 201, 0.3)) 
                drop-shadow(0 0 16px rgba(238, 137, 104, 0.15));
    }
}

/* Professional hover states */
.enhanced-logo:hover {
    transform: translateY(-2px);
}

.enhanced-logo:hover .enhanced-logo-icon {
    animation: none; /* Pause 3D animation on hover */
    transform: rotate(360deg) scale(1.08) rotateY(0deg) rotateX(0deg);
    filter: drop-shadow(0 12px 24px rgba(150, 15, 201, 0.4)) 
            drop-shadow(0 0 30px rgba(238, 137, 104, 0.3)) 
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Enhanced Modern Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Inter', 'Helvetica Neue', sans-serif;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    font-variant-numeric: oldstyle-nums;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-feature-settings: "cv02", "cv03", "cv11";
    font-variant-numeric: lining-nums;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.025em;
}

/* Enhanced Visual Hierarchy */
.hero-text h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, 
        var(--white) 0%, 
        #f8fafc 20%, 
        #8B5CF6 40%, 
        #a855f7 60%, 
        #EE8968 80%, 
        #f97316 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: enhancedShimmer 12s ease-in-out infinite, fadeInUp 0.8s ease-out;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(150, 15, 201, 0.3);
    position: relative;
}

@keyframes enhancedShimmer {
    0%, 100% { 
        background-position: 0% center;
        filter: brightness(1.0) contrast(1.0);
    }
    25% {
        background-position: 50% center;
        filter: brightness(1.2) contrast(1.1);
    }
    50% { 
        background-position: 100% center;
        filter: brightness(1.4) contrast(1.2);
    }
    75% {
        background-position: 150% center;
        filter: brightness(1.2) contrast(1.1);
    }
}

.hero-text p {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 2.8rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 650px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced Section Headers */
.section-header h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--white) 0%, 
        #e2e8f0 30%, 
        var(--primary-light) 70%, 
        var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    animation: subtleTextShimmer 15s ease-in-out infinite;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--accent) 50%, 
        var(--primary) 80%, 
        transparent 100%);
    border-radius: 2px;
    opacity: 0.8;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scaleX(1.1);
    }
}

/* Enhanced Spacing and Modern Layout */
.hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(238, 137, 104, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 10, 10, 0.95) 100%);
}

/* Enhanced Button Styles */
.cta-button {
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--primary-light) 25%, 
        var(--accent) 75%, 
        #f97316 100%);
    background-size: 300% 300%;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(150, 15, 201, 0.3), 
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
    animation: enhancedGradientShift 8s ease infinite;
}

@keyframes enhancedGradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(150, 15, 201, 0.4), 
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.15) saturate(1.1);
    animation: enhancedGradientShift 4s ease infinite;
}

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

/* Enhanced focus states for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading skeleton animation */
@keyframes skeleton {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton 2s infinite;
}

/* Improved transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add subtle animations on scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Professional scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

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

/* Card entrance animations */
.service-card,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.visible,
.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing-card:nth-child(3) { transition-delay: 0.3s; }

/* Enhanced hero animations */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg) scale(1); }
    25% { transform: translateY(-10px) rotateX(2deg) scale(1.02); }
    50% { transform: translateY(-20px) rotateX(0deg) scale(1); }
    75% { transform: translateY(-10px) rotateX(-2deg) scale(1.02); }
}

.hero-visual {
    /* animation: heroFloat 6s ease-in-out infinite; */
    transform-style: preserve-3d;
}

/* Gradient animation for buttons */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }\n    100% { background-position: 0% 50%; }
}

.cta-button {
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

/* Text shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-text h1 {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced section animations */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Card Enhancements */
.service-card, .pricing-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    overflow: visible;
}

.service-card::after, .pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(150, 15, 201, 0.03),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.service-card:hover::after, .pricing-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(25%, 25%);
}

/* Enhanced Glassmorphism Effects */
.contact-form {
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

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

.contact-form:hover::before {
    left: 100%;
}

/* Professional Logo Context Menu Support */
.enhanced-logo {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .enhanced-logo-text {
        font-size: 0.95em;
        animation: none; /* Better performance on mobile */
    }
    
    .enhanced-logo-icon {
        animation: none; /* Disable 3D animation on mobile */
    }
    
    .hero-text h1 {
        animation: fadeInUp 0.8s ease-out; /* Simpler animation */
    }
    
    .section-header h2 {
        animation: none; /* Disable shimmer on mobile */
    }
}

/* Print-friendly styles */
@media print {
    .enhanced-logo-text {
        -webkit-text-fill-color: #333 !important;
        background: none !important;
        color: #333 !important;
    }
    
    .enhanced-logo-icon {
        filter: none !important;
        animation: none !important;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .enhanced-logo-text {
        animation: none !important;
    }
    
    .enhanced-logo-icon {
        animation: none !important;
    }
    
    .hero-text h1,
    .section-header h2 {
        animation: none !important;
    }
    
    .enhanced-logo:hover .enhanced-logo-icon {
        animation: none !important;
        transform: scale(1.05) !important;
    }
}

/* Legal Pages Styles */
.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    min-height: 100vh;
    background: #fafafa;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 120px; /* Ensure content starts below fixed header */
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.legal-date {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 500;
}

.legal-content {
    color: #333333;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 30px;
    padding: 35px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.legal-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: #d0d0d0;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    padding-left: 20px;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gradient);
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 12px;
    color: #4a4a4a;
    font-size: 1.05rem;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.legal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #960FC9;
    font-weight: bold;
}

.legal-section li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section a {
    color: #960FC9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.legal-section a:hover {
    border-bottom-color: #960FC9;
    opacity: 0.8;
}

/* Dark mode adjustments for legal pages */
@media (prefers-color-scheme: dark) {
    .legal-container {
        background: #0a0a0a;
    }
    
    .legal-header {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .legal-section {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    
    .legal-section:hover {
        box-shadow: 0 8px 25px rgba(150, 15, 201, 0.15);
        border-color: rgba(150, 15, 201, 0.3);
    }
    
    .legal-section h2,
    .legal-section h3 {
        color: var(--white);
    }
    
    .legal-section p,
    .legal-section li {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .legal-section li strong {
        color: var(--white);
    }
    
    .legal-section a {
        color: #8B5CF6;
    }
    
    .legal-section a:hover {
        color: #EE8968;
    }
}

/* Light mode explicit styles for legal pages */
@media (prefers-color-scheme: light) {
    .legal-container {
        background: #fafafa;
    }
    
    .legal-header {
        background: var(--white);
        border-color: #e5e5e5;
    }
    
    .legal-section {
        background: var(--white);
        border-color: #e5e5e5;
    }
    
    .legal-section h2,
    .legal-section h3 {
        color: #1a1a1a;
    }
    
    .legal-section p,
    .legal-section li {
        color: #4a4a4a;
    }
    
    .legal-section li strong {
        color: #1a1a1a;
    }
}

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 100px 15px 40px;
        padding-top: 100px; /* Ensure content starts below header on mobile */
    }
    
    .legal-header {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    .legal-section h2::before {
        height: 20px;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

