/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #030305;
    --bg-card: rgba(217, 70, 239, 0.04);
    --bg-card-hover: rgba(217, 70, 239, 0.08);
    --bg-glass: rgba(217, 70, 239, 0.05);
    --bg-glass-strong: rgba(217, 70, 239, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);

    /* Bright Magenta Gradient - From reference logo */
    --accent-primary: #d946ef;
    --accent-gradient: linear-gradient(135deg, #d946ef 0%, #a855f7 100%);
    --accent-gradient-animated: linear-gradient(270deg, #d946ef, #a855f7, #d946ef);
    --accent-gradient-soft: linear-gradient(135deg, rgba(217, 70, 239, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);

    /* Accent colors - Magenta family */
    --accent-magenta: #d946ef;
    --accent-purple: #a855f7;
    --accent-fuchsia: #e879f9;
    --accent-violet: #c084fc;

    --border-color: rgba(217, 70, 239, 0.25);
    --border-glow: rgba(217, 70, 239, 0.6);
    --border-radius: 24px;
    --border-radius-sm: 14px;
    --border-radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-glow: 0 0 40px rgba(217, 70, 239, 0.4),
        0 0 80px rgba(168, 85, 247, 0.25);
    --shadow-glow-strong: 0 0 60px rgba(217, 70, 239, 0.6),
        0 0 120px rgba(168, 85, 247, 0.4);
    --font-family: 'Poppins',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}



/* Inline Icons */
.icon-inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.35rem;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Premium Liquid Glass Effect - Magenta Tinted ===== */
.glass {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(168, 85, 247, 0.06) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(217, 70, 239, 0.25);
    box-shadow:
        inset 0 1px 1px 0 rgba(217, 70, 239, 0.12),
        inset 0 -1px 1px 0 rgba(168, 85, 247, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(217, 70, 239, 0.12);
}

.glass-strong {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.18) 0%, rgba(168, 85, 247, 0.1) 100%);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(217, 70, 239, 0.4);
    box-shadow:
        inset 0 2px 2px 0 rgba(217, 70, 239, 0.15),
        inset 0 -1px 1px 0 rgba(168, 85, 247, 0.08),
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(217, 70, 239, 0.2);
}

/* ===== Animated Background with Multiple Orbs ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: #000000;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.8) 0%, rgba(217, 70, 239, 0.3) 40%, transparent 70%);
    top: -250px;
    left: -200px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, rgba(168, 85, 247, 0.3) 40%, transparent 70%);
    top: 40%;
    right: -200px;
    animation: floatOrb2 30s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 121, 249, 0.7) 0%, rgba(232, 121, 249, 0.25) 40%, transparent 70%);
    bottom: -150px;
    left: 25%;
    animation: floatOrb3 28s ease-in-out infinite;
}

/* Individual orb animations for more organic movement */
@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    20% {
        transform: translate(80px, 60px) scale(1.15) rotate(5deg);
    }

    40% {
        transform: translate(40px, 120px) scale(1.05) rotate(-3deg);
    }

    60% {
        transform: translate(-60px, 80px) scale(1.2) rotate(8deg);
    }

    80% {
        transform: translate(-40px, 20px) scale(0.95) rotate(-5deg);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(-70px, 50px) scale(1.1) rotate(-8deg);
    }

    50% {
        transform: translate(-30px, -80px) scale(0.9) rotate(5deg);
    }

    75% {
        transform: translate(50px, -40px) scale(1.15) rotate(-3deg);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(60px, -60px) scale(1.2) rotate(10deg);
    }

    66% {
        transform: translate(-80px, -30px) scale(0.85) rotate(-8deg);
    }
}

/* Shimmer animation for buttons and highlights */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Glow pulse for accents */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(217, 70, 239, 0.3), 0 0 60px rgba(139, 92, 246, 0.2);
        filter: brightness(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(217, 70, 239, 0.5), 0 0 100px rgba(139, 92, 246, 0.35);
        filter: brightness(1.1);
    }
}

/* Border gradient animation */
@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(139, 92, 246, 0.3);
    }

    25% {
        border-color: rgba(217, 70, 239, 0.4);
    }

    50% {
        border-color: rgba(244, 114, 182, 0.35);
    }

    75% {
        border-color: rgba(251, 146, 60, 0.3);
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.85) 0%, rgba(20, 15, 30, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(217, 70, 239, 0.15);
    border-radius: 100px;
    width: auto;
    max-width: 90%;
    transition: var(--transition);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated gradient glow line under navbar */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(217, 70, 239, 0.6) 20%,
            rgba(168, 85, 247, 0.8) 50%,
            rgba(217, 70, 239, 0.6) 80%,
            transparent 100%);
    border-radius: 100px;
    opacity: 0.8;
    animation: navGlow 3s ease-in-out infinite;
}

@keyframes navGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.navbar:hover {
    border-color: rgba(217, 70, 239, 0.35);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(217, 70, 239, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar:hover::after {
    opacity: 1;
    animation: none;
    transform: scaleX(1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

/* Nav CTA Button */
.nav-cta-btn {
    padding: 0.6rem 1.5rem;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

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

.logo:hover {
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    overflow: hidden;
}

/* Background pill effect */
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.18) 0%, rgba(168, 85, 247, 0.12) 100%);
    border-radius: 100px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

/* Glowing underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

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

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active state styling */
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
    border: 1px solid rgba(192, 38, 211, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: clamp(2.25rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow:
        0 0 30px rgba(217, 70, 239, 0.25),
        0 0 60px rgba(139, 92, 246, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards, gradientShift 8s ease infinite;
    animation-delay: 0.6s, 0s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cta-button::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 100px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition);
}

.cta-button:hover::after {
    opacity: 0.6;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 60px rgba(217, 70, 239, 0.5),
        0 0 120px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 0.9rem;
}

/* Gradient shift animation for buttons */
@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero-features {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.feature-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-purple);
}

/* ===== Section Titles ===== */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
}

.stat-card:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: block;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 6px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--accent-purple);
}

/* ===== Customers Section ===== */
.customers {
    padding: 6rem 2rem;
    text-align: center;
}

.customer-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.logo-placeholder {
    width: 140px;
    height: 60px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.logo-placeholder:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-glow);
}

/* ===== Services Section ===== */
.services {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

/* Top highlight line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.5), transparent);
    opacity: 0.7;
}

/* Animated border glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(217, 70, 239, 0.45);
    box-shadow:
        0 0 40px rgba(217, 70, 239, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(217, 70, 239, 0.15));
    border-radius: 50%;
    border: 1px solid rgba(217, 70, 239, 0.25);
    transition: var(--transition-bounce);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    border-color: transparent;
}

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

.service-icon svg {
    color: var(--accent-magenta);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.25px;
}

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

/* ===== Portfolio Video Section ===== */
.portfolio-video {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-video::after {
    content: '▶';
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: rgba(20, 10, 25, 0.8);
    border-radius: 100px;
    padding: 0.35rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(217, 70, 239, 0.15);
}

.pricing-tab {
    padding: 0.75rem 2rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.pricing-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-tab.active {
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.4), transparent);
}

.pricing-card:hover {
    border-color: rgba(217, 70, 239, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.25), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 0 50px rgba(217, 70, 239, 0.3), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: -0.25px;
}

/* Pricing Amount Styling */
.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-amount .currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-amount .price {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.pricing-amount .period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.pricing-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.pricing-cta.featured-cta {
    background: var(--accent-gradient);
    border: none;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.pricing-cta.featured-cta:hover {
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.35);
    transform: translateY(-2px);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.pricing-features .check {
    color: #4ade80;
    font-weight: 700;
    font-size: 1rem;
}

.pricing-extras {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.pricing-extras h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.extras-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.extras-list span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== Pricing Categories ===== */
.pricing-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== Revisions Section ===== */
.revisions-section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.revisions-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(80, 20, 100, 0.05) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.revisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.revision-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.revisions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.revisions-list li {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.revisions-list.extra li {
    color: rgba(244, 114, 182, 0.8);
}

.revision-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.revisions-list li::before {
    content: '•';
    color: var(--accent-purple);
}

/* ===== Trust Badges Section ===== */
.trust-badges {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.badge-card {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.badge-card:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0);
}

.badge-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ===== Blog Section ===== */
.blog {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.blog-card {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3), rgba(249, 115, 22, 0.2));
    position: relative;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    font-size: 0.7rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.75rem 0;
    letter-spacing: -0.5px;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item.active {
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-purple);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

/* ===== CTA Section ===== */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

/* ===== Collaboration Section ===== */
.collaboration {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.collab-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-purple);
    margin-bottom: 2rem;
    display: block;
}

.collaboration h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.collaboration p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 450px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h5 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        max-width: calc(100% - 20px);
        border-radius: var(--border-radius);
        padding: 0.5rem 1rem;
    }

    .navbar::after {
        display: none;
        /* Hide glow line on mobile */
    }

    .nav-container {
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-container>a:not(.logo):not(.nav-cta-btn) {
        display: none;
    }

    .nav-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

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

    .hero {
        padding-top: 8rem;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-features {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* Services */
    .services {
        padding: 4rem 1rem;
    }

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

    /* Pricing */
    .pricing {
        padding: 4rem 1rem;
    }

    .pricing-tabs {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .pricing-tab {
        width: 100%;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    /* Portfolio */
    .portfolio {
        padding: 4rem 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Testimonials */
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Trust badges */
    .trust-badges {
        padding: 4rem 1rem;
    }

    .badge-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* FAQ */
    .faq {
        padding: 4rem 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 1rem 2rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

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

    /* Revisions & Extras */
    .extras-list {
        flex-direction: column;
        gap: 0.75rem;
    }

    .extras-list span {
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Selection ===== */
::selection {
    background: var(--accent-purple);
    color: white;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.2);
}

.portfolio-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-thumbnail {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15) 0%, rgba(30, 20, 40, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item.featured .portfolio-thumbnail {
    aspect-ratio: 1/1;
}

.portfolio-thumbnail.design {
    background: linear-gradient(135deg, #1a0a20 0%, #0d060f 100%);
}

.play-overlay {
    width: 60px;
    height: 60px;
    background: rgba(217, 70, 239, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .play-overlay {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: scale(1.1);
}

.portfolio-info {
    padding: 1rem 1.25rem;
}

.portfolio-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(217, 70, 239, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.15);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(217, 70, 239, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-info strong {
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive for Portfolio & Testimonials */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-circle {
    animation: loaderSpin 2s linear infinite;
    transform-origin: center;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

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

.loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children animations */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

/* ===== Why Brands Choose Section ===== */
.why-choose {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.skill-item {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.4s ease;
}

.skill-item:hover {
    border-color: rgba(217, 70, 239, 0.4);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.1);
}

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

.skill-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.skill-value {
    font-size: 1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    width: 0;
    background: var(--accent-gradient);
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    border-radius: 100px;
}

.skill-fill.animate {
    width: var(--target-width) !important;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.quick-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.quick-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.15);
}

.quick-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.quick-stat .stat-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive for Why Choose */
@media (max-width: 768px) {
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .quick-stat {
        padding: 1.5rem 1rem;
    }

    .quick-stat .stat-number {
        font-size: 2rem;
    }

    .skill-item {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .quick-stats {
        grid-template-columns: 1fr 1fr;
    }

    .quick-stat .stat-number {
        font-size: 1.75rem;
    }
}

/* =========================================
   AI Chat Widget Styles
   ========================================= */

.chat-widget {
    position: fixed;
    bottom: 90px;
    /* Above the FAB */
    right: 30px;
    width: 350px;
    height: 500px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;

    /* Hidden state */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.chat-widget.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Chat Header */
.chat-header {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    border: 2px solid var(--theme-color, #4ade80);
    transition: border-color 0.3s;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details h3 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.agent-details span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.close-chat {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-chat:hover {
    color: #fff;
}

/* Agent Switcher */
.agent-switcher {
    display: flex;
    padding: 0.5rem;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.switch-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.switch-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.switch-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: messageIn 0.3s ease forwards;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.agent {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.message.user {
    background: var(--theme-color, #a855f7);
    color: #fff;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.message .time {
    display: block;
    font-size: 0.65rem;
    margin-top: 4px;
    opacity: 0.6;
    text-align: right;
}

/* Chat Input */
.chat-input-area {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#chatInput {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.75rem 1rem;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

#chatInput:focus {
    border-color: var(--theme-color, #a855f7);
}

#sendMessage {
    background: var(--theme-color, #a855f7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

#sendMessage:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* FAB */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    color: #fff;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
}

.chat-fab.active {
    transform: rotate(45deg);
    background: #333;
    box-shadow: none;
}

/* Typing Indicator */
.typing-indicator {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    display: flex;
    gap: 4px;
    width: fit-content;
    margin-bottom: 1rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Themes */
body.theme-dot {
    --theme-color: #3b82f6;
    /* Blue for Dot */
}

body.theme-dot .chat-fab {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

body.theme-blade {
    --theme-color: #d946ef;
    /* Magenta for Blade */
}

body.theme-blade .chat-fab {
    background: linear-gradient(135deg, #d946ef, #a855f7);
    box-shadow: 0 4px 20px rgba(217, 70, 239, 0.4);
}

/* Council View */
.council-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-top: 20px;
}

.council-decision-card,
.council-transcript-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.decision-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    font-style: italic;
    margin-bottom: 10px;
}

.decision-topic {
    font-size: 0.9rem;
    color: #888;
}

.transcript-box {
    height: 400px;
    background: #0a0a0a;
    border-radius: 8px;
    padding: 15px;
    overflow-y: auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {

    /* Navbar Mobile Styles */
    .navbar {
        width: 100%;
        max-width: 100%;
        top: 0;
        left: 0;
        transform: none;
        padding: 0.8rem 1.25rem;
        justify-content: space-between;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(5, 5, 5, 0.95);
        /* Solid dark background */
        backdrop-filter: blur(20px);
    }

    .navbar::after {
        display: none;
        /* Hide desktop glow */
    }

    .nav-container {
        justify-content: space-between;
        width: 100%;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    /* Animate Hamburger to X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-cta-btn {
        display: none;
        /* Hide CTA in header on mobile to save space, or move into menu */
    }

    /* Hero Adjustments */
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 3rem;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    /* General Padding */
    .section-title {
        font-size: 2rem;
    }

    .services,
    .why-choose,
    .portfolio,
    .testimonials,
    .pricing {
        padding: 4rem 1.5rem;
    }

    .skills-container,
    .quick-stats,
    .customer-logos {
        flex-direction: column;
        gap: 2rem;
    }

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

/* ===== Agent Dashboard Styles ===== */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.agent-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agent-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(217, 70, 239, 0.3);
}

.agent-card.running {
    border-color: #4ade80;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.1);
}

.agent-card.error {
    border-color: #ef4444;
}

.agent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.agent-status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.status-running {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.status-idle {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

.status-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-offline {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

.agent-last-run {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.agent-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: auto;
    /* Push to bottom */
}