/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc0000;
    --primary-dark: #000000;
    --secondary-color: #0a0a0a;
    --accent-color: #dc0000;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #aaaaaa;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-dark: #050505;
    --border-color: #333333;
    --shadow-sm: 0 2px 4px rgba(220, 0, 0, 0.3);
    --shadow-md: 0 8px 16px rgba(220, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(220, 0, 0, 0.5);
    --shadow-xl: 0 40px 80px rgba(220, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-secondary: linear-gradient(135deg, #0a0a0a 0%, #dc0000 100%);
    --gradient-accent: linear-gradient(135deg, #dc0000 0%, #8b0000 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-bg: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    /* Fonts */
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-bg);
    overflow-x: hidden;
}

/* Headings use display font */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: none !important;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--primary-color);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(220, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(220, 0, 0, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(220, 0, 0, 0.8);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(220, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 0, 0, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(220, 0, 0, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(220, 0, 0, 0.02) 50%, transparent 51%);
    background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(220, 0, 0, 0.3);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(220, 0, 0, 0.5);
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(220, 0, 0, 0.5);
}

.stat p {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(220, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(220, 0, 0, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.card-dots {
    display: flex;
    gap: 5px;
}

.card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    box-shadow: 0 0 10px rgba(220, 0, 0, 0.8);
}

.card-content {
    color: var(--text-primary);
}

.ai-response {
    background: rgba(220, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.response-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric {
    background: rgba(220, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(220, 0, 0, 0.2);
    transform: translateY(-2px);
}

.metric span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.metric strong {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 900;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(220, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(220, 0, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 60px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(220, 0, 0, 0.5);
    letter-spacing: -2px;
}

.section-header p {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
        right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(220, 0, 0, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220, 0, 0, 0.5);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(220, 0, 0, 0.03) 0%, transparent 70%);
    z-index: 1;
}

    .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(220, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
        align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(220, 0, 0, 0.3);
}

.author-avatar i {
    color: white;
    font-size: 24px;
}

.author-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 16px;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(220, 0, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 30px rgba(220, 0, 0, 0.5);
    letter-spacing: -2px;
}

.cta-content p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 800;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.2);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 0, 0, 0.4);
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.cta-feature i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(220, 0, 0, 0.5);
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(220, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 0, 0, 0.4);
}

.footer-section h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 15px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(220, 0, 0, 0.5);
}

.footer-bottom {
    border-top: 2px solid rgba(220, 0, 0, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Magnetic Cursor Styles */
.magnetic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), rgba(220, 0, 0, 0.4));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.magnetic-cursor.magnetic-active {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 1), rgba(220, 0, 0, 0.6));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

/* Enhanced Liquid Button Effects */
.btn-primary {
    background: linear-gradient(135deg, #dc0000, #ff1a1a, #dc0000);
    background-size: 200% 200%;
    animation: liquid-flow 3s ease infinite;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes liquid-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    animation: gold-shimmer 4s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gold-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Premium Hero Card 3D Effects */
.hero-card {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #dc0000, #FFD700);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover::before {
    opacity: 1;
    animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Advanced Feature Card Animations */
.feature-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
}

/* Premium Typography Effects */
.hero-title {
    background: linear-gradient(135deg, #FFD700, #FFA500, #dc0000, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premium-gradient 4s ease infinite;
    position: relative;
}

@keyframes premium-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Royal Glow Effects */
.royal-glow {
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.1),
        0 0 60px rgba(220, 0, 0, 0.2);
    animation: royal-pulse 2s ease-in-out infinite alternate;
}

@keyframes royal-pulse {
    0% { 
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.4),
            inset 0 0 30px rgba(255, 215, 0, 0.1),
            0 0 60px rgba(220, 0, 0, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.6),
            inset 0 0 50px rgba(255, 215, 0, 0.2),
            0 0 100px rgba(220, 0, 0, 0.3);
    }
}

/* Enhanced Navigation Effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #dc0000);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* Premium Loading States */
.loading-state {
    position: relative;
    overflow: hidden;
}

.loading-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: loading-sweep 1.5s infinite;
}

@keyframes loading-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .magnetic-cursor {
        display: none;
    }
    
    .hero-card {
        transform: none !important;
    }
    
    .feature-card {
        transform: none !important;
    }
}

/* Premium Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .feature-card {
    animation: premium-stagger 0.6s ease forwards;
}

@keyframes premium-stagger {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Advanced Glass Morphism */
.glass-morphism {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

/* Premium Particle Canvas */
.premium-particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

/* Final Premium Touches */
.section-header h2 {
    background: linear-gradient(135deg, #FFD700, #FFA500, #dc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc0000, #FFD700, #dc0000);
    border-radius: 2px;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 215, 0, 0.1);
    font-family: serif;
    line-height: 1;
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 0, 0, 0.1), transparent 50%);
    pointer-events: none;
}