:root {
    --bg-dark: #0a0e17;
    --primary-blue: #1e3c72;
    --primary-indigo: #2a5298;
    --accent-glow: #00d2ff;
    --accent-purple: #9d50bb;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background: radial-gradient(circle at top left, #1a2a6c, #b21f1f00),
        radial-gradient(circle at bottom right, #fdbb2d00, #1a2a6c),
        linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    /* Fallback and complex gradient mix */
    background: linear-gradient(135deg, #050A10 0%, #0A1525 50%, #110F20 100%);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(42, 82, 152, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    animation: pulseGlow 10s infinite alternate;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Header & Nav */
header {
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.dot {
    color: var(--accent-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-glow);
}

.lang-toggle {
    color: var(--text-white);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.lang-toggle:hover {
    color: var(--accent-glow);
    border-color: var(--accent-glow);
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-indigo), var(--accent-purple));
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: white !important;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 80, 187, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    flex-direction: column;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(to right, #fff, var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-secondary {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Anti-Gravity Floating Elements */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.orb-1 {
    top: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: rgba(157, 80, 187, 0.3);
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    bottom: 20%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: rgba(0, 210, 255, 0.2);
    animation: float 10s ease-in-out infinite reverse;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    min-height: 80vh;
    /* Allow it to take height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 20px;
    padding: 2.5rem;
    width: 350px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Hover glow effect from top */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.glass-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-link {
    color: var(--accent-glow);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link i {
    transition: transform 0.3s;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Specific Anti-Gravity offsets for cards to look floating */
.card-1 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.card-2 {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for mobile demo */
    .hero {
        height: auto;
        padding: 6rem 1rem 4rem;
    }

    .glass-card {
        width: 100%;
    }
}

/* Section Utilities */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

/* Advantages Section */
.advantages {
    padding: 5rem 5%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
    padding: 3rem 2rem;
}

.icon-glow {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(157, 80, 187, 0.5);
}

/* Process Section */
.process {
    padding: 5rem 5%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    z-index: 0;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    width: 100%;
    padding: 0 !important;
    /* Force override glass-card padding for accordion */
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-white);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-glow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .step-number {
        margin-bottom: 1rem;
    }
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: var(--accent-glow);
    margin-left: 5px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* Removed flex-wrap to force side-by-side on larger screens */
    align-items: flex-end;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    min-height: 500px;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    /* Allow cards to share space equally */
    min-width: 250px;
    /* Prevent them from getting too squished */
}

.pricing-card.featured {
    border: 1px solid var(--accent-glow);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

/* ... existing code ... */

.popular-tag {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-glow);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.start-from {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: -5px;
    display: block;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.description {
    color: var(--text-gray);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-glow);
}

.full-width {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
    text-decoration: none;
    /* Ensure no underline */
}

.glow-btn {
    box-shadow: 0 0 20px rgba(157, 80, 187, 0.4);
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .pricing-card {
        width: 100%;
        min-width: auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}