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

:root {
    /* Colors based on the provided images */
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #3185fc 100%);
    --secondary-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --dark-bg: #0a0b1e;
    --dark-card: #1a1b3e;
    --dark-border: #2a2b5e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606080;
    --accent-purple: #8b5cf6;
    --accent-blue: #3185fc;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 30, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-border);
    height: 80px;
    overflow: visible;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    overflow: visible; /* Ensure dropdowns aren't clipped */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 999;
    max-height: 100%;
    overflow: hidden;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    max-height: 100%;
    gap: 0.75rem;
}

.nav-logo-link:hover {
    opacity: 0.8;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-brand-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    opacity: 1;
    transform: none;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    z-index: 1001;
    padding: 10px;
    background: rgba(10, 11, 30, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 1001;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 27, 62, 0.8);
    border: 1px solid rgba(42, 43, 94, 0.6);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    min-width: 80px;
    justify-content: center;
}

.language-button:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.language-button .arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-button .arrow {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 27, 62, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 43, 94, 0.8);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 120px;
    z-index: 9999;
    margin-top: 0.5rem;
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(42, 43, 94, 0.3);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.language-option.active {
    background: rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(ellipse at top, #080e21 0%, #1b2735 95%);
}

/* Star background for hero */
.hero .star {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
        123px 456px #8b5cf6, 789px 234px #a855f7, 567px 890px #6366f1, 1234px 123px #8b5cf6, 456px 567px #a855f7,
        890px 234px #6366f1, 123px 789px #8b5cf6, 567px 456px #a855f7, 1234px 890px #6366f1, 789px 123px #8b5cf6,
        456px 567px #a855f7, 234px 890px #6366f1, 1567px 234px #8b5cf6, 789px 456px #a855f7, 123px 890px #6366f1,
        567px 234px #8b5cf6, 1234px 789px #a855f7, 890px 456px #6366f1, 234px 123px #8b5cf6, 1456px 567px #a855f7,
        678px 890px #6366f1, 123px 234px #8b5cf6, 1234px 456px #a855f7, 567px 789px #6366f1, 890px 123px #8b5cf6,
        456px 567px #a855f7, 1567px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7, 789px 789px #6366f1,
        123px 123px #8b5cf6, 1456px 567px #a855f7, 678px 890px #6366f1, 567px 234px #8b5cf6, 1234px 456px #a855f7,
        890px 789px #6366f1, 234px 123px #8b5cf6, 1567px 567px #a855f7, 456px 890px #6366f1, 1234px 234px #8b5cf6,
        789px 456px #a855f7, 123px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7, 678px 890px #6366f1,
        234px 234px #8b5cf6, 1234px 456px #a855f7, 890px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7,
        123px 890px #6366f1, 1234px 234px #8b5cf6, 789px 456px #a855f7, 456px 789px #6366f1, 890px 123px #8b5cf6,
        1567px 567px #a855f7, 234px 890px #6366f1, 1234px 234px #8b5cf6, 678px 456px #a855f7, 123px 789px #6366f1,
        567px 123px #8b5cf6, 1456px 567px #a855f7, 890px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7,
        789px 789px #6366f1, 456px 123px #8b5cf6, 1567px 567px #a855f7, 123px 890px #6366f1, 1234px 234px #8b5cf6,
        678px 456px #a855f7, 567px 789px #6366f1, 890px 123px #8b5cf6, 1456px 567px #a855f7, 234px 890px #6366f1,
        1234px 234px #8b5cf6, 789px 456px #a855f7, 123px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7,
        890px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7, 678px 789px #6366f1, 456px 123px #8b5cf6,
        1567px 567px #a855f7, 123px 890px #6366f1, 1234px 234px #8b5cf6, 789px 456px #a855f7, 567px 789px #6366f1,
        890px 123px #8b5cf6, 1456px 567px #a855f7, 234px 890px #6366f1, 1234px 234px #8b5cf6, 678px 456px #a855f7,
        123px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7, 890px 890px #6366f1, 234px 234px #8b5cf6,
        1234px 456px #a855f7, 789px 789px #6366f1, 456px 123px #8b5cf6, 1567px 567px #a855f7, 123px 890px #6366f1,
        1234px 234px #8b5cf6, 678px 456px #a855f7, 567px 789px #6366f1, 890px 123px #8b5cf6, 1456px 567px #a855f7,
        234px 890px #6366f1, 1234px 234px #8b5cf6, 789px 456px #a855f7, 123px 789px #6366f1, 567px 123px #8b5cf6,
        1456px 567px #a855f7, 890px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7, 678px 789px #6366f1,
        456px 123px #8b5cf6, 1567px 567px #a855f7, 123px 890px #6366f1, 1234px 234px #8b5cf6, 789px 456px #a855f7,
        567px 789px #6366f1, 890px 123px #8b5cf6, 1456px 567px #a855f7, 234px 890px #6366f1, 1234px 234px #8b5cf6,
        678px 456px #a855f7, 123px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7, 890px 890px #6366f1,
        234px 234px #8b5cf6, 1234px 456px #a855f7, 789px 789px #6366f1, 456px 123px #8b5cf6, 1567px 567px #a855f7,
        123px 890px #6366f1, 1234px 234px #8b5cf6, 678px 456px #a855f7, 567px 789px #6366f1, 890px 123px #8b5cf6,
        1456px 567px #a855f7, 234px 890px #6366f1, 1234px 234px #8b5cf6, 789px 456px #a855f7, 123px 789px #6366f1,
        567px 123px #8b5cf6, 1456px 567px #a855f7, 890px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7,
        678px 789px #6366f1, 456px 123px #8b5cf6, 1567px 567px #a855f7, 123px 890px #6366f1, 1234px 234px #8b5cf6,
        789px 456px #a855f7, 567px 789px #6366f1, 890px 123px #8b5cf6, 1456px 567px #a855f7, 234px 890px #6366f1,
        1234px 234px #8b5cf6, 678px 456px #a855f7, 123px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7,
        890px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7, 789px 789px #6366f1, 456px 123px #8b5cf6,
        1567px 567px #a855f7, 123px 890px #6366f1, 1234px 234px #8b5cf6, 678px 456px #a855f7, 567px 789px #6366f1,
        890px 123px #8b5cf6, 1456px 567px #a855f7, 234px 890px #6366f1, 1234px 234px #8b5cf6, 789px 456px #a855f7,
        123px 789px #6366f1, 567px 123px #8b5cf6, 1456px 567px #a855f7, 890px 890px #6366f1, 234px 234px #8b5cf6,
        1234px 456px #a855f7, 678px 789px #6366f1, 456px 123px #8b5cf6, 1567px 567px #a855f7, 123px 890px #6366f1,
        1234px 234px #8b5cf6, 789px 456px #a855f7, 567px 789px #6366f1, 890px 123px #8b5cf6, 1456px 567px #a855f7,
        234px 890px #6366f1, 1234px 234px #8b5cf6, 678px 456px #a855f7, 123px 789px #6366f1, 567px 123px #8b5cf6,
        1456px 567px #a855f7, 890px 890px #6366f1, 234px 234px #8b5cf6, 1234px 456px #a855f7, 789px 789px #6366f1,
        456px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1,
        1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6,
        345px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7,
        1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7, 234px 123px #8b5cf6, 1678px 456px #6366f1,
        567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7, 345px 123px #8b5cf6,
        1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Meteor animations for hero */
.hero .meteor-1 {
    position: absolute;
    top: 51px;
    left: 54%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 6s linear infinite;
}

.hero .meteor-1::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-2 {
    position: absolute;
    top: 125px;
    left: 23%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 8.5s linear infinite;
}

.hero .meteor-2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-3 {
    position: absolute;
    top: 89px;
    left: 67%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 4.2s linear infinite;
}

.hero .meteor-3::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-4 {
    position: absolute;
    top: 178px;
    left: 12%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 7.8s linear infinite;
}

.hero .meteor-4::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-5 {
    position: absolute;
    top: 98px;
    left: 34%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 5.6s linear infinite;
}

.hero .meteor-5::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-6 {
    position: absolute;
    top: 167px;
    left: 78%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 9.3s linear infinite;
}

.hero .meteor-6::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-7 {
    position: absolute;
    top: 76px;
    left: 45%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 6.1s linear infinite;
}

.hero .meteor-7::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-8 {
    position: absolute;
    top: 143px;
    left: 19%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 7.4s linear infinite;
}

.hero .meteor-8::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-9 {
    position: absolute;
    top: 112px;
    left: 81%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 5.9s linear infinite;
}

.hero .meteor-9::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-10 {
    position: absolute;
    top: 189px;
    left: 43%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 8.7s linear infinite;
}

.hero .meteor-10::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-11 {
    position: absolute;
    top: 67px;
    left: 28%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 4.8s linear infinite;
}

.hero .meteor-11::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-12 {
    position: absolute;
    top: 156px;
    left: 72%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 7.2s linear infinite;
}

.hero .meteor-12::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-13 {
    position: absolute;
    top: 134px;
    left: 62%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 3.9s linear infinite;
}

.hero .meteor-13::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-14 {
    position: absolute;
    top: 201px;
    left: 15%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 6.7s linear infinite;
}

.hero .meteor-14::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero .meteor-15 {
    position: absolute;
    top: 145px;
    left: 37%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 8.8s linear infinite;
}

.hero .meteor-15::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

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

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Services Section */
.services {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 27, 62, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 82, 0.8) 0%, rgba(26, 35, 76, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    min-height: 400px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

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

.service-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card.primary {
    background: linear-gradient(135deg, rgba(30, 41, 82, 0.9) 0%, rgba(26, 35, 76, 0.95) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 
        0 4px 16px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    margin-top: auto;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.925rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: rgba(16, 185, 129, 0.9);
    font-weight: bold;
    font-size: 1rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive design for service cards */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Services Background Animations */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

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

.shape {
    position: absolute;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* 5-Pointed Star - Large */
.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 12s;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* 6-Pointed Star - Medium */
.shape-2 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(49, 133, 252, 0.35), rgba(6, 182, 212, 0.35));
    top: 60%;
    right: 8%;
    animation-delay: -2s;
    animation-duration: 15s;
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

/* 4-Pointed Star - Small */
.shape-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(99, 102, 241, 0.5));
    top: 80%;
    left: 15%;
    animation-delay: -4s;
    animation-duration: 10s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
}

/* 8-Pointed Star - Large */
.shape-4 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(49, 133, 252, 0.3));
    top: 20%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 18s;
    clip-path: polygon(50% 0%, 60% 35%, 98% 35%, 68% 50%, 98% 65%, 60% 65%, 50% 100%, 40% 65%, 2% 65%, 32% 50%, 2% 35%, 40% 35%);
}

/* Sparkle Star - Tiny */
.shape-5 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(6, 182, 212, 0.6));
    top: 45%;
    left: 2%;
    animation-delay: -8s;
    animation-duration: 14s;
    clip-path: polygon(50% 0%, 59% 38%, 98% 38%, 67% 59%, 82% 98%, 50% 75%, 18% 98%, 33% 59%, 2% 38%, 41% 38%);
}

/* Multi-Point Star */
.shape-6 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(49, 133, 252, 0.4));
    top: 5%;
    right: 45%;
    animation-delay: -10s;
    animation-duration: 16s;
    clip-path: polygon(50% 0%, 54% 25%, 75% 25%, 59% 38%, 69% 63%, 50% 50%, 31% 63%, 41% 38%, 25% 25%, 46% 25%);
}

/* Add star twinkling effect */
.shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: twinkle 2s ease-in-out infinite alternate;
}

.shape-1::before { animation-delay: 0s; }
.shape-2::before { animation-delay: 0.3s; }
.shape-3::before { animation-delay: 0.6s; }
.shape-4::before { animation-delay: 0.9s; }
.shape-5::before { animation-delay: 1.2s; }
.shape-6::before { animation-delay: 1.5s; }

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 100%);
    top: 50%;
    right: 5%;
    animation-delay: -2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
    bottom: 10%;
    left: 30%;
    animation-delay: -4s;
}

.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(99, 102, 241, 0.7);
    animation: particleFloat 20s linear infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.5));
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: -3s; animation-duration: 22s; }
.particle:nth-child(3) { left: 30%; animation-delay: -6s; animation-duration: 28s; }
.particle:nth-child(4) { left: 40%; animation-delay: -9s; animation-duration: 24s; }
.particle:nth-child(5) { left: 50%; animation-delay: -12s; animation-duration: 26s; }
.particle:nth-child(6) { left: 60%; animation-delay: -15s; animation-duration: 23s; }
.particle:nth-child(7) { left: 70%; animation-delay: -18s; animation-duration: 27s; }
.particle:nth-child(8) { left: 80%; animation-delay: -21s; animation-duration: 25s; }

.particle:nth-child(odd) {
    background: rgba(139, 92, 246, 0.7);
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.5));
}

.particle:nth-child(3n) {
    background: rgba(6, 182, 212, 0.7);
    width: 6px;
    height: 6px;
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.5));
}

.particle:nth-child(4n) {
    width: 10px;
    height: 10px;
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-15px) translateX(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) translateX(5px) rotate(270deg);
    }
}

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

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

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

/* Ensure content stays above background */
.services .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 350px;
        padding: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        align-self: center;
    }
    
    /* Reduce background animation intensity on mobile */
    .shape {
        opacity: 0.2;
    }
    
    .orb {
        filter: blur(30px);
    }
    
    .particle {
        display: none;
    }
    
    /* Optimize meteor shower for mobile */
    .why-choose {
        padding: 4rem 0;
    }
    
    /* Reduce meteor animations on mobile for performance */
    .why-choose .meteor-1,
    .why-choose .meteor-2,
    .why-choose .meteor-3,
    .why-choose .meteor-4,
    .why-choose .meteor-5,
    .why-choose .meteor-6,
    .why-choose .meteor-7,
    .why-choose .meteor-8,
    .why-choose .meteor-9,
    .why-choose .meteor-10,
    .why-choose .meteor-11,
    .why-choose .meteor-12,
    .why-choose .meteor-13,
    .why-choose .meteor-14,
    .why-choose .meteor-15 {
        animation-duration: 12s;
        opacity: 0.7;
    }
    
    /* Reduce star count on mobile */
    .why-choose .star {
        opacity: 0.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
        backdrop-filter: blur(5px);
    }
}

/* Why Choose Section */
.why-choose {
    background-image: radial-gradient(ellipse at top, #080e21 0%, #1b2735 95%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Fade-in effect from Services section */
.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(26, 27, 62, 0.3) 0%, 
        rgba(26, 27, 62, 0.15) 30%, 
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Fade-out effect to Pricing section */
.why-choose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(139, 92, 246, 0.05) 70%, 
        rgba(139, 92, 246, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Star background */
.why-choose .star {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
        1423px 234px #8b5cf6, 1637px 456px #6366f1, 987px 789px #a855f7, 1245px 123px #8b5cf6, 567px 890px #6366f1,
        890px 345px #a855f7, 1678px 234px #8b5cf6, 1234px 567px #6366f1, 678px 890px #a855f7, 1456px 123px #8b5cf6,
        234px 567px #6366f1, 1567px 890px #a855f7, 890px 234px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7,
        1456px 234px #8b5cf6, 678px 567px #6366f1, 1234px 890px #a855f7, 567px 123px #8b5cf6, 1678px 456px #6366f1,
        890px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1567px 890px #a855f7, 789px 123px #8b5cf6,
        1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6, 678px 567px #6366f1, 1234px 890px #a855f7,
        345px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1,
        1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6,
        234px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7,
        1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7, 345px 123px #8b5cf6, 1678px 456px #6366f1,
        567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7, 234px 123px #8b5cf6,
        1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7,
        567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6, 345px 567px #6366f1,
        1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6,
        890px 567px #6366f1, 1234px 890px #a855f7, 234px 123px #8b5cf6, 1678px 456px #6366f1, 567px 789px #a855f7,
        1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7, 345px 123px #8b5cf6, 1567px 456px #6366f1,
        789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7, 567px 123px #8b5cf6,
        1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6, 234px 567px #6366f1, 1567px 890px #a855f7,
        678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6, 890px 567px #6366f1,
        1234px 890px #a855f7, 345px 123px #8b5cf6, 1678px 456px #6366f1, 567px 789px #a855f7, 1234px 234px #8b5cf6,
        678px 567px #6366f1, 1456px 890px #a855f7, 234px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7,
        1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1,
        789px 789px #a855f7, 1456px 234px #8b5cf6, 345px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6,
        1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7,
        234px 123px #8b5cf6, 1678px 456px #6366f1, 567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1,
        1456px 890px #a855f7, 345px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6,
        456px 567px #6366f1, 1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7,
        1456px 234px #8b5cf6, 234px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1,
        567px 789px #a855f7, 1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7, 345px 123px #8b5cf6,
        1678px 456px #6366f1, 567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7,
        234px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1,
        1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6,
        345px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7,
        1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7, 234px 123px #8b5cf6, 1678px 456px #6366f1,
        567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7, 345px 123px #8b5cf6,
        1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7,
        567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6, 234px 567px #6366f1,
        1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6,
        890px 567px #6366f1, 1234px 890px #a855f7, 345px 123px #8b5cf6, 1678px 456px #6366f1, 567px 789px #a855f7,
        1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7, 234px 123px #8b5cf6, 1567px 456px #6366f1,
        789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7, 567px 123px #8b5cf6,
        1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6, 345px 567px #6366f1, 1567px 890px #a855f7,
        678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6, 890px 567px #6366f1,
        1234px 890px #a855f7, 234px 123px #8b5cf6, 1678px 456px #6366f1, 567px 789px #a855f7, 1234px 234px #8b5cf6,
        678px 567px #6366f1, 1456px 890px #a855f7, 345px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7,
        1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1,
        789px 789px #a855f7, 1456px 234px #8b5cf6, 234px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6,
        1234px 456px #6366f1, 567px 789px #a855f7, 1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7,
        345px 123px #8b5cf6, 1678px 456px #6366f1, 567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1,
        1456px 890px #a855f7, 234px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6,
        456px 567px #6366f1, 1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7,
        1456px 234px #8b5cf6, 345px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1,
        567px 789px #a855f7, 1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7, 234px 123px #8b5cf6,
        1678px 456px #6366f1, 567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7,
        345px 123px #8b5cf6, 1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1,
        1678px 890px #a855f7, 567px 123px #8b5cf6, 1234px 456px #6366f1, 789px 789px #a855f7, 1456px 234px #8b5cf6,
        234px 567px #6366f1, 1567px 890px #a855f7, 678px 123px #8b5cf6, 1234px 456px #6366f1, 567px 789px #a855f7,
        1456px 234px #8b5cf6, 890px 567px #6366f1, 1234px 890px #a855f7, 345px 123px #8b5cf6, 1678px 456px #6366f1,
        567px 789px #a855f7, 1234px 234px #8b5cf6, 678px 567px #6366f1, 1456px 890px #a855f7, 234px 123px #8b5cf6,
        1567px 456px #6366f1, 789px 789px #a855f7, 1234px 234px #8b5cf6, 456px 567px #6366f1, 1678px 890px #a855f7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Meteor animations */
.why-choose .meteor-1 {
    position: absolute;
    top: 51px;
    left: 54%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 6s linear infinite;
}

.why-choose .meteor-1::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-2 {
    position: absolute;
    top: 125px;
    left: 23%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 8.5s linear infinite;
}

.why-choose .meteor-2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-3 {
    position: absolute;
    top: 89px;
    left: 67%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 4.2s linear infinite;
}

.why-choose .meteor-3::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-4 {
    position: absolute;
    top: 178px;
    left: 12%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 7.8s linear infinite;
}

.why-choose .meteor-4::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-5 {
    position: absolute;
    top: 98px;
    left: 34%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 5.6s linear infinite;
}

.why-choose .meteor-5::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-6 {
    position: absolute;
    top: 156px;
    left: 78%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 9.1s linear infinite;
}

.why-choose .meteor-6::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-7 {
    position: absolute;
    top: 67px;
    left: 45%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 3.7s linear infinite;
}

.why-choose .meteor-7::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-8 {
    position: absolute;
    top: 234px;
    left: 19%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 6.9s linear infinite;
}

.why-choose .meteor-8::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-9 {
    position: absolute;
    top: 112px;
    left: 56%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 4.8s linear infinite;
}

.why-choose .meteor-9::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-10 {
    position: absolute;
    top: 189px;
    left: 83%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 8.3s linear infinite;
}

.why-choose .meteor-10::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-11 {
    position: absolute;
    top: 78px;
    left: 29%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 5.4s linear infinite;
}

.why-choose .meteor-11::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-12 {
    position: absolute;
    top: 167px;
    left: 91%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 7.2s linear infinite;
}

.why-choose .meteor-12::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-13 {
    position: absolute;
    top: 134px;
    left: 62%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 3.9s linear infinite;
}

.why-choose .meteor-13::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-14 {
    position: absolute;
    top: 201px;
    left: 15%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 6.7s linear infinite;
}

.why-choose .meteor-14::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

.why-choose .meteor-15 {
    position: absolute;
    top: 145px;
    left: 37%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #8b5cf6, rgba(139,92,246,0));
    animation: meteor 8.8s linear infinite;
}

.why-choose .meteor-15::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 15px 3px #8b5cf6;
}

@keyframes meteor {
    0% {
        opacity: 1;
        margin-top: -300px;
        margin-right: -300px;
    }
    12% {
        opacity: 0;
    }
    15% {
        margin-top: 300px;
        margin-left: -600px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

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

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose .section-header {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.why-choose .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: white;
    position: relative;
    z-index: 4;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Pricing Section - Optimized for mobile performance */
/* Mobile optimizations include:
   - Simplified background gradients (linear instead of complex conic)
   - Reduced animation complexity and duration
   - GPU acceleration hints with translateZ(0)
   - Disabled heavy animations on mobile devices
   - Reduced blur effects and shadow complexity
   - Accessibility support for reduced motion preference
*/
.pricing {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
}

/* Simplified background for better performance */
.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at center, 
            transparent 0%, 
            rgba(99, 102, 241, 0.03) 30%, 
            rgba(99, 102, 241, 0.01) 60%, 
            transparent 100%
        ),
        linear-gradient(45deg, 
            transparent 0%,
            rgba(99, 102, 241, 0.01) 25%,
            rgba(139, 92, 246, 0.015) 50%,
            rgba(99, 102, 241, 0.01) 75%,
            transparent 100%
        );
    animation: lightFlickerOptimized 15s ease-in-out infinite;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}

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

/* Optimized animations for better performance */
@keyframes lightFlickerOptimized {
    0% { 
        opacity: 0.6;
        transform: translateZ(0) rotate(0deg) scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: translateZ(0) rotate(180deg) scale(1.02);
    }
    100% { 
        opacity: 0.6;
        transform: translateZ(0) rotate(360deg) scale(1);
    }
}

@keyframes lightFlickerSlowOptimized {
    0% { 
        opacity: 0.4;
        transform: translateZ(0) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translateZ(0) scale(1.05);
    }
    100% { 
        opacity: 0.4;
        transform: translateZ(0) scale(1);
    }
}

/* Simplified secondary background layer */
.pricing::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: 
        radial-gradient(ellipse at center, 
            transparent 0%, 
            rgba(139, 92, 246, 0.02) 40%, 
            rgba(139, 92, 246, 0.005) 70%, 
            transparent 100%
        ),
        linear-gradient(-45deg, 
            transparent 0%,
            rgba(139, 92, 246, 0.008) 30%,
            rgba(99, 102, 241, 0.012) 50%,
            rgba(139, 92, 246, 0.008) 70%,
            transparent 100%
        );
    animation: lightFlickerSlowOptimized 25s ease-in-out infinite;
    animation-delay: -10s;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}



.pricing .container {
    position: relative;
    z-index: 1;
    max-width: 1400px; /* Increase container width for pricing section */
}

/* Pricing Grid for 3 cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    width: 100%;
}

/* Very large screens - limit maximum card width for readability */
@media (min-width: 1600px) {
    .pricing .container {
        max-width: 1500px;
    }
    
    .pricing-grid {
        gap: 3rem;
    }
}

.pricing-card-wrapper {
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7, #6366f1);
    background-size: 300% 300%; /* Reduced for better performance */
    border-radius: 24px;
    animation: gradientShiftOptimized 8s ease infinite; /* Slower for smoother performance */
    filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    will-change: transform; /* GPU acceleration hint */
    transform: translateZ(0); /* Force hardware acceleration */
    height: 100%; /* Ensure equal height cards */
}

.pricing-card-wrapper:hover {
    transform: translateY(-4px) translateZ(0);
    filter: drop-shadow(0 12px 30px rgba(99, 102, 241, 0.3));
}

/* Optimized gradient animation */
@keyframes gradientShiftOptimized {
    0%, 100% { 
        background-position: 0% 50%; 
        transform: translateZ(0) scale(1);
    }
    50% { 
        background-position: 100% 50%; 
        transform: translateZ(0) scale(1.01);
    }
}

.pricing-card-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7, #6366f1);
    background-size: 300% 300%; /* Reduced for better performance */
    border-radius: 26px;
    z-index: -1;
    animation: gradientShiftOptimized 8s ease infinite;
    filter: blur(3px); /* Reduced blur for better performance */
    opacity: 0.3; /* Slightly reduced for better performance */
    will-change: transform, opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}

.pricing-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border-radius: 21px;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Allow the top badge to render outside the card boundary on mobile */
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
}

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

.pricing-header {
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    flex-wrap: wrap;
    flex-direction: column;
}

.price-original {
    font-size: 1.4rem;
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
    position: relative;
    line-height: 1;
    display: inline-block;
}

/* Style adjustment for single pricing display */
.pricing-amount .price-current:only-child {
    font-size: 2.5rem;
}

.pricing-starts-at {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}



.price-current::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 1px;
    opacity: 0.6;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    text-align: left;
    background: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    flex-grow: 1;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.feature-check:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
}

.feature-check svg {
    color: #10b981;
    flex-shrink: 0;
    padding: 4px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.2);
}

.feature-check span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pricing-cta {
    margin-bottom: 1.5rem !important;
    position: relative;
    overflow: hidden;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3) !important;
    transition: all 0.3s ease !important;
}

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

.pricing-cta:hover::before {
    left: 100%;
}

.pricing-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5) !important;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive Pricing Grid */
@media (max-width: 1200px) {
    .pricing .container {
        max-width: 1200px; /* Slightly smaller container for medium screens */
    }
    
    .pricing-grid {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .pricing .container {
        max-width: var(--container-max-width); /* Back to default container width */
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Performance Optimizations for Pricing Section */
@media (max-width: 768px) {
    /* Disable complex background animations on mobile */
    .pricing::before,
    .pricing::after {
        animation: none;
        opacity: 0.2;
        filter: none; /* Remove blur for better performance */
        transform: none; /* Remove translateZ to avoid GPU layer issues */
        will-change: auto; /* Remove will-change for better performance */
    }
    
    /* Simplify pricing card animations - Critical fix for mobile scrolling */
    .pricing-card-wrapper {
        animation: none !important; /* Disable gradient animation on mobile */
        background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
        background-size: 100% 100% !important;
        will-change: auto !important; /* Remove GPU hints when not animating */
        transform: none !important; /* Remove translateZ to prevent GPU layer switching */
        transition: none !important; /* Disable transitions for smoother scrolling */
        filter: none !important; /* Remove drop-shadow that causes repaints */
    }
    
    .pricing-card-wrapper::before {
        display: none !important; /* Completely remove glow effect on mobile for performance */
    }
    
    /* Completely disable hover effects on mobile to prevent scroll interference */
    .pricing-card-wrapper:hover {
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
    
    /* Critical: Remove backdrop-filter which causes severe mobile performance issues */
    .pricing-card {
        padding: 2rem 1.5rem;
        backdrop-filter: none !important; /* This is the main culprit for mobile scroll lag */
        background: rgba(30, 41, 59, 0.95) !important; /* Solid background instead of backdrop-filter */
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Remove pseudo-element backgrounds that cause repaints */
    .pricing-card::before {
        display: none !important;
    }
    
    /* Optimize feature check animations */
    .feature-check:hover {
        transform: none; /* Disable slide animation on mobile */
        background: rgba(99, 102, 241, 0.05);
    }
    
    .pricing-grid {
        gap: 2rem;
    }
    
    /* Force hardware acceleration on the container only, not individual cards */
    .pricing {
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
    }
}

/* Extra performance optimizations for older/slower mobile devices */
@media (max-width: 480px) and (max-device-pixel-ratio: 2) {
    .pricing::before,
    .pricing::after {
        display: none !important; /* Completely remove background animations on low-end devices */
    }
    
    .pricing-card-wrapper::before {
        display: none !important; /* Remove glow effect */
    }
    
    .pricing-card-wrapper {
        background: #6366f1 !important; /* Solid color fallback */
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2) !important; /* Minimal shadow */
        filter: none !important;
        border-radius: 16px !important; /* Simpler border radius */
    }
    
    .pricing-card {
        border-radius: 14px !important;
        background: rgba(30, 41, 59, 0.98) !important; /* More opaque for better readability */
    }
}

/* Additional mobile scroll optimizations */
@media (max-width: 768px) {
    /* Optimize scroll container */
    .pricing .container {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain; /* Prevent scroll chaining */
    }
    
    /* Reduce complexity of gradients on mobile */
    /* Allow elements like the promo badge to overflow their cards without being clipped */
    .pricing-grid {
        contain: layout style; /* remove paint containment to avoid clipping on mobile */
    }
}

/* High refresh rate mobile devices optimization */
@media (max-width: 768px) and (min-resolution: 120dpi) {
    .pricing-card-wrapper {
        -webkit-backface-visibility: hidden !important; /* Prevent flicker on high refresh displays */
        backface-visibility: hidden !important;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .pricing::before,
    .pricing::after,
    .pricing-card-wrapper,
    .pricing-card-wrapper::before {
        animation: none !important;
    }
    
    /* Pause video for users who prefer reduced motion */
    .hero-video {
        animation-play-state: paused;
    }
    
    /* Provide static background fallback */
    .hero {
        background: linear-gradient(rgba(10, 11, 30, 0.8), rgba(10, 11, 30, 0.6)),
                    radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    }
}

/* Contact Section */
.contact {
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

/* Contact Background Animations */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Contact Section Stars - Different Random Positions */
/* 5-Pointed Star - Large */
.contact-shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    top: 25%;
    right: 12%;
    animation: float 12s ease-in-out infinite;
    animation-delay: -1s;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* 6-Pointed Star - Medium */
.contact-shape-2 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(49, 133, 252, 0.35), rgba(6, 182, 212, 0.35));
    top: 70%;
    left: 18%;
    animation: float 15s ease-in-out infinite;
    animation-delay: -3s;
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* 4-Pointed Star - Small */
.contact-shape-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(99, 102, 241, 0.5));
    top: 15%;
    left: 75%;
    animation: float 10s ease-in-out infinite;
    animation-delay: -5s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* 8-Pointed Star - Large */
.contact-shape-4 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(49, 133, 252, 0.3));
    top: 55%;
    right: 35%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -7s;
    clip-path: polygon(50% 0%, 60% 35%, 98% 35%, 68% 50%, 98% 65%, 60% 65%, 50% 100%, 40% 65%, 2% 65%, 32% 50%, 2% 35%, 40% 35%);
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* Sparkle Star - Tiny */
.contact-shape-5 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(6, 182, 212, 0.6));
    top: 35%;
    right: 88%;
    animation: float 14s ease-in-out infinite;
    animation-delay: -9s;
    clip-path: polygon(50% 0%, 59% 38%, 98% 38%, 67% 59%, 82% 98%, 50% 75%, 18% 98%, 33% 59%, 2% 38%, 41% 38%);
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* Multi-Point Star */
.contact-shape-6 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(49, 133, 252, 0.4));
    top: 85%;
    right: 65%;
    animation: float 16s ease-in-out infinite;
    animation-delay: -11s;
    clip-path: polygon(50% 0%, 54% 25%, 75% 25%, 59% 38%, 69% 63%, 50% 50%, 31% 63%, 41% 38%, 25% 25%, 46% 25%);
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

/* Add star twinkling effect for contact shapes */
.contact-shape-1::before,
.contact-shape-2::before,
.contact-shape-3::before,
.contact-shape-4::before,
.contact-shape-5::before,
.contact-shape-6::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: twinkle 2s ease-in-out infinite alternate;
}

.contact-shape-1::before { animation-delay: 0s; }
.contact-shape-2::before { animation-delay: 0.3s; }
.contact-shape-3::before { animation-delay: 0.6s; }
.contact-shape-4::before { animation-delay: 0.9s; }
.contact-shape-5::before { animation-delay: 1.2s; }
.contact-shape-6::before { animation-delay: 1.5s; }

/* Contact Section Orbs - Different Positions */
.contact-orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
    top: 25%;
    right: 15%;
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: -1s;
}

.contact-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 100%);
    top: 60%;
    left: 10%;
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: -3s;
}

.contact-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
    bottom: 20%;
    right: 40%;
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: -5s;
}

/* Ensure content stays above background */
.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.contact-method svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: var(--dark-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    gap: 1rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.footer-brand-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Video Background Mobile Optimizations */
@media (max-width: 768px) {
    /* Ensure video fully covers hero section on mobile */
    .hero-video {
        object-position: center;
        min-height: 100%;
        min-width: 100%;
        width: 100vw;
        height: 100vh;
        transform: scale(1.02); /* Slight scale to eliminate gaps */
    }
    
    /* Darker overlay on mobile for better text readability */
    .hero::before {
        background: 
            linear-gradient(rgba(10, 11, 30, 0.8), rgba(10, 11, 30, 0.6)),
            radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(49, 133, 252, 0.1) 0%, transparent 50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        background: rgba(10, 11, 30, 0.98) !important;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(42, 43, 94, 0.8) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        z-index: 9999 !important;
        display: flex !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    


    .nav-menu.active {
        max-height: 500px !important;
        min-height: 300px !important;
        padding: 2rem 1rem !important;
        gap: 1.5rem !important;
        overflow: visible !important;
        background: rgba(10, 11, 30, 0.98) !important;
        border-bottom: 1px solid rgba(42, 43, 94, 0.8) !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .nav-menu .nav-link {
        opacity: 1 !important;
        transform: none !important;
        color: #ffffff !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0 !important;
        border-radius: 12px !important;
        background: rgba(26, 27, 62, 0.8) !important;
        border: 1px solid rgba(42, 43, 94, 0.6) !important;
        width: 220px !important;
        max-width: 280px !important;
        display: block !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        z-index: 10000 !important;
        visibility: visible !important;
        overflow: hidden !important;
    }

    .nav-menu.active .nav-link {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(26, 27, 62, 0.8) !important;
        color: #ffffff !important;
    }

    .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(49, 133, 252, 0.3) 100%) !important;
        border-color: rgba(99, 102, 241, 0.8) !important;
        color: var(--text-primary) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4) !important;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .nav-menu .nav-link:hover::before {
        left: 100%;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        margin-left: auto;
    }

    /* Prevent logo from blocking hamburger menu clicks on mobile */
    .nav-logo {
        max-width: calc(100vw - 120px); /* Leave space for hamburger menu */
        z-index: 998;
        position: relative;
    }

    .nav-logo-link {
        pointer-events: auto; /* Re-enable clicks on logo itself */
        max-width: 100%;
    }

    .nav-logo-img {
        max-width: 200px; /* Constrain logo width on mobile */
    }

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

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

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

    /* Mobile Language Switcher */
    .language-switcher {
        display: none !important; /* Hide desktop language switcher on mobile */
    }

    .mobile-language-separator {
        width: 220px;
        height: 1px;
        background: rgba(42, 43, 94, 0.6);
        margin: 1rem 0;
    }

    .mobile-language-option {
        color: #ffffff !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0 !important;
        border-radius: 12px !important;
        background: rgba(26, 27, 62, 0.8) !important;
        border: 1px solid rgba(42, 43, 94, 0.6) !important;
        width: 220px !important;
        display: block !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .mobile-language-option:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(49, 133, 252, 0.3) 100%) !important;
        border-color: rgba(99, 102, 241, 0.8) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4) !important;
    }

    .mobile-language-option.active {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(49, 133, 252, 0.4) 100%) !important;
        border-color: rgba(99, 102, 241, 1) !important;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5) !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact background animations on mobile - keep them visible but optimized */
    .contact-shape-1,
    .contact-shape-2,
    .contact-shape-3,
    .contact-shape-4,
    .contact-shape-5,
    .contact-shape-6 {
        opacity: 0.4; /* Visible but subtle for mobile */
    }
    
    .contact-orb-1,
    .contact-orb-2,
    .contact-orb-3 {
        filter: blur(25px); /* Slightly less blur for visibility */
    }
    
    .contact-background .particle {
        opacity: 0.7; /* Keep particles visible on mobile */
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: 100vh; /* Ensure hero takes full viewport height */
    }
    
    /* Additional mobile video fixes for smaller screens */
    .hero-video {
        transform: scale(1.1) !important; /* Larger scale for smaller devices */
        object-fit: cover !important;
        position: absolute !important;
        top: -5% !important; /* Slight negative top to ensure full coverage */
        left: -5% !important;
        width: 110% !important;
        height: 110% !important;
        z-index: 0 !important;
    }

    .section-padding {
        --section-padding: 3rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hero-image-container {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-image {
        border-radius: var(--border-radius);
    }
}

/* Animation classes removed - elements display directly without fade-in effects */

/* Loading Animation - keeping for form functionality */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

/* Success Message */
.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

/* Success Page Styles */
.success-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding);
    background: var(--dark-bg);
}

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

.success-icon {
    margin-bottom: 2rem;
}

.success-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.success-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.success-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.success-next-steps {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.success-next-steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
}

.success-next-steps li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--dark-border);
}

.success-next-steps li:last-child {
    border-bottom: none;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success page animations removed - elements display directly */

/* Questionnaire Styles */
.questionnaire-section {
    padding: 8rem 0 5rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

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

.questionnaire-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.questionnaire-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.questionnaire-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.form-row:last-child {
    margin-bottom: 0;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(99, 102, 241, 0.1);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-purple);
}

.form-actions {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.form-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Responsive design for success page */
@media (max-width: 768px) {
    .success-title {
        font-size: 2.5rem;
    }
    
    .success-subtitle {
        font-size: 1.25rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .success-next-steps {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Questionnaire responsive styles */
    .questionnaire-section {
        padding: 6rem 0 3rem;
    }
    
    .questionnaire-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .questionnaire-title {
        font-size: 2.5rem;
    }
    
    .questionnaire-subtitle {
        font-size: 1.125rem;
    }
}