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

:root {
    --primary: #6C3CE1;
    --primary-light: #8B5CF6;
    --primary-dark: #4C1D95;
    --accent: #00E5A0;
    --accent-dark: #00C98A;
    --neon-blue: #00D4FF;
    --neon-pink: #FF006E;
    --dark: #0A0A0F;
    --dark-2: #12121A;
    --dark-3: #1A1A2E;
    --dark-4: #242438;
    --gray: #8888A0;
    --light: #F0F0FF;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #6C3CE1, #00E5A0);
    --gradient-2: linear-gradient(135deg, #FF006E, #6C3CE1);
    --gradient-3: linear-gradient(135deg, #00D4FF, #6C3CE1);
    --gradient-4: linear-gradient(135deg, #6C3CE1, #FF006E, #00D4FF);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.08s ease;
}

.cursor.hover {
    transform: scale(2.5);
    background: rgba(0, 229, 160, 0.1);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-3);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== FLOATING PARTICLES ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0.15;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(108, 60, 225, 0.15);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10001;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 10px rgba(108, 60, 225, 0.2));
}

.nav-logo .dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    padding: 12px 30px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(108, 60, 225, 0.4);
}

.nav-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;
}

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(108, 60, 225, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 60, 225, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    z-index: 0;
}

.hero-glow-1 {
    top: -200px;
    right: -100px;
    background: var(--primary);
}

.hero-glow-2 {
    bottom: -200px;
    left: -100px;
    background: var(--accent);
    opacity: 0.15;
}

.hero-glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--neon-pink);
    opacity: 0.08;
    width: 800px;
    height: 800px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

.hero-title .outline-text {
    -webkit-text-stroke: 2px var(--primary-light);
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--gradient-1);
    border: none;
    border-radius: 60px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(108, 60, 225, 0.5);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--dark-4);
    border-radius: 60px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

/* Hero Right Side - Floating Cards */
.hero-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 500px;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05) !important;
    border-color: var(--primary-light);
}

.fc-1 {
    top: 0;
    right: 0;
    width: 220px;
    animation: float-1 6s ease-in-out infinite;
}

.fc-2 {
    top: 150px;
    left: 0;
    width: 200px;
    animation: float-2 7s ease-in-out infinite;
}

.fc-3 {
    bottom: 50px;
    right: 50px;
    width: 240px;
    animation: float-3 5s ease-in-out infinite;
}

.fc-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.fc-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.fc-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-2deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

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

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

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 30px 0;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 50px;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray);
}

.marquee-item .sep {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 120px 60px;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(108, 60, 225, 0.1);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--gradient-1);
    padding: 3px;
}

.about-image-inner {
    background: var(--dark-3);
    border-radius: 28px;
    padding: 50px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-image-inner .big-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image-inner h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-image-inner p {
    color: var(--gray);
}

.about-floating-badge {
    position: absolute;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--dark-4);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-floating-badge.badge-1 {
    top: -20px;
    right: -20px;
    animation: float-1 4s ease-in-out infinite;
}

.about-floating-badge.badge-2 {
    bottom: -20px;
    left: -20px;
    animation: float-2 5s ease-in-out infinite;
}

.about-floating-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-floating-badge .badge-text {
    font-weight: 700;
    font-size: 0.9rem;
}

.about-floating-badge .badge-sub {
    font-size: 0.75rem;
    color: var(--gray);
}

.about-content .about-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--dark-3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: var(--dark-4);
    transform: translateX(5px);
}

.about-feature .check {
    width: 30px;
    height: 30px;
    background: rgba(0, 229, 160, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== ABOUT LOGO STYLES - NEW ===== */
.about-logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.about-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(108, 60, 225, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logo-float 4s ease-in-out infinite;
}

.about-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 50px rgba(108, 60, 225, 0.5));
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animated Rings Around Logo */
.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-ring.ring-1 {
    width: 170px;
    height: 170px;
    border-color: rgba(108, 60, 225, 0.2);
    border-top-color: var(--primary-light);
    animation: spin-ring-1 6s linear infinite;
}

.logo-ring.ring-2 {
    width: 195px;
    height: 195px;
    border-color: rgba(0, 229, 160, 0.1);
    border-right-color: var(--accent);
    border-bottom-color: var(--accent);
    animation: spin-ring-2 8s linear infinite reverse;
}

.logo-ring.ring-3 {
    width: 220px;
    height: 220px;
    border-style: dashed;
    border-color: rgba(108, 60, 225, 0.08);
    border-left-color: rgba(0, 212, 255, 0.3);
    animation: spin-ring-1 12s linear infinite;
}

@keyframes spin-ring-1 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

@keyframes spin-ring-2 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

/* Tagline under logo */
.about-logo-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tagline-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

/* Updated inner box for logo */
.about-image-inner {
    background: var(--dark-3);
    border-radius: 28px;
    padding: 50px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow behind logo */
.about-image-inner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 0;
}

.about-image-inner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
    bottom: 10%;
    right: 10%;
    z-index: 0;
}

.about-image-inner>* {
    position: relative;
    z-index: 1;
}

.about-image-inner h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.about-image-inner p {
    color: var(--gray);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-logo-wrapper {
        width: 160px;
        height: 160px;
    }

    .about-logo-img {
        width: 110px;
        height: 110px;
    }

    .logo-ring.ring-1 {
        width: 130px;
        height: 130px;
    }

    .logo-ring.ring-2 {
        width: 150px;
        height: 150px;
    }

    .logo-ring.ring-3 {
        width: 170px;
        height: 170px;
    }

    .about-image-inner {
        padding: 35px 25px;
        min-height: 380px;
    }
}

/* ===== VISION & MISSION ===== */
.vm-section {
    background: var(--dark);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.vm-card {
    padding: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card.vision {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.15), rgba(0, 229, 160, 0.05));
    border: 1px solid rgba(108, 60, 225, 0.2);
}

.vm-card.mission {
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.05), rgba(108, 60, 225, 0.15));
    border: 1px solid rgba(0, 229, 160, 0.2);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.vm-card.vision::before {
    background: var(--primary);
    opacity: 0.15;
}

.vm-card.mission::before {
    background: var(--accent);
    opacity: 0.1;
}

.vm-card-content {
    position: relative;
    z-index: 1;
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.vm-card.vision .vm-icon {
    background: rgba(108, 60, 225, 0.2);
    color: var(--primary-light);
}

.vm-card.mission .vm-icon {
    background: rgba(0, 229, 160, 0.2);
    color: var(--accent);
}

.vm-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--dark-2);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

/* Services Bento Grid */
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 25px;
}

.service-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.service-card.zoom {
    grid-column: span 2;
}

.service-card.zoom::before {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.15), rgba(108, 60, 225, 0.1));
}

.service-card.zoom:hover {
    border-color: rgba(0, 119, 182, 0.3);
    box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
}

.service-card.sms::before {
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.15), rgba(108, 60, 225, 0.1));
}

.service-card.sms:hover {
    border-color: rgba(0, 229, 160, 0.3);
    box-shadow: 0 20px 60px rgba(0, 229, 160, 0.15);
}

.service-card.ads {
    grid-column: span 2;
}

.service-card.ads::before {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(108, 60, 225, 0.1));
}

.service-card.ads:hover {
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.15);
}

.service-card.engagement::before {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.15), rgba(0, 212, 255, 0.1));
}

.service-card.engagement:hover {
    border-color: rgba(108, 60, 225, 0.3);
    box-shadow: 0 20px 60px rgba(108, 60, 225, 0.15);
}

.service-card.content {
    grid-column: span 2;
}

.service-card.content::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 229, 160, 0.1));
}

.service-card.content:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.service-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.07;
    position: absolute;
    top: -10px;
    right: 0;
    line-height: 1;
}

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-card.zoom .service-icon-wrapper {
    background: rgba(0, 119, 182, 0.2);
    color: #0077B6;
}

.service-card.sms .service-icon-wrapper {
    background: rgba(0, 229, 160, 0.2);
    color: var(--accent);
}

.service-card.ads .service-icon-wrapper {
    background: rgba(255, 0, 110, 0.2);
    color: var(--neon-pink);
}

.service-card.engagement .service-icon-wrapper {
    background: rgba(108, 60, 225, 0.2);
    color: var(--primary-light);
}

.service-card.content .service-icon-wrapper {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card>.service-card-inner>p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.service-feature-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-feature-tag i {
    font-size: 0.7rem;
    color: var(--accent);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
    gap: 15px;
}

/* ===== PRICING HIGHLIGHT ===== */
.pricing-highlight {
    background: var(--dark);
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    border-radius: 25px;
    padding: 45px 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(0, 229, 160, 0.05));
    border-color: var(--primary);
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.price-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    background: rgba(108, 60, 225, 0.15);
    color: var(--primary-light);
}

.price-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.price-card .price-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.price-card .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.price-card .price-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.price-card .price-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--dark-4);
}

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

.price-card .price-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.price-card .price-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--dark-4);
    background: transparent;
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.price-card .price-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
}

.price-card.featured .price-btn {
    background: var(--gradient-1);
    border-color: transparent;
}

.price-card.featured .price-btn:hover {
    box-shadow: 0 10px 40px rgba(108, 60, 225, 0.4);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--dark-2);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--dark-4);
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 0%;
    height: 2px;
    background: var(--gradient-1);
    animation: timeline-fill 3s ease forwards;
}

@keyframes timeline-fill {
    to {
        width: 80%;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 3px solid var(--dark-4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
    transition: all 0.4s ease;
}

.process-step:hover .process-step-number {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(108, 60, 225, 0.4);
}

.process-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.85rem;
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   TESTIMONIALS SECTION - 2 CARDS VIEW
   ============================================= */
.testimonials-section {
    background: var(--dark);
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

/* Slider Container */
.testimonials-slider {
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

/* Fade edges */
.testimonials-slider::before,
.testimonials-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.testimonials-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.testimonials-slider::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark) 0%, transparent 100%);
}

/* Track */
.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 15px 5px;
}

/* ===== CARD - REDESIGNED FOR READABILITY ===== */
.testimonial-card {
    min-width: calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    border-radius: 22px;
    padding: 35px 30px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 60, 225, 0.3);
    box-shadow: 0 20px 60px rgba(108, 60, 225, 0.12);
}

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

/* Card Top - Quote & Stars */
.testi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-card .quote-icon {
    font-size: 1.6rem;
    color: var(--primary);
    opacity: 0.25;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 0.75rem;
}

/* ===== READABLE TEXT ===== */
.testimonial-card p {
    color: #B8B8CC;
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
    letter-spacing: 0.2px;
    word-spacing: 1px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    padding-top: 18px;
    border-top: 1px solid var(--dark-4);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-author-info h5 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--white);
}

.testimonial-author-info span {
    color: var(--gray);
    font-size: 0.75rem;
}

/* Service Tag */
.testi-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(108, 60, 225, 0.1);
    border: 1px solid rgba(108, 60, 225, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-light);
    align-self: flex-start;
}

.testi-service-tag i {
    font-size: 0.65rem;
}

/* ===== NAVIGATION BUTTONS ===== */
.testi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testi-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
}

.testi-prev {
    left: -15px;
}

.testi-next {
    right: -15px;
}

/* ===== PROGRESS DOTS ===== */
.testi-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background: var(--primary);
    width: 35px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(108, 60, 225, 0.4);
}

.testi-dot:hover:not(.active) {
    background: var(--gray);
    transform: scale(1.2);
}

/* Counter */
.testi-counter {
    text-align: center;
    margin-top: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--gray);
}

.testi-counter #testiCurrent {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.05rem;
}

.testi-counter #testiTotal {
    font-weight: 600;
}

/* Auto scroll progress bar */
.testimonials-slider-wrapper .auto-progress {
    width: 100%;
    height: 2px;
    background: var(--dark-4);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.testimonials-slider-wrapper .auto-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width linear;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .testimonials-slider-wrapper {
        max-width: 800px;
        padding: 0 35px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .testimonials-slider-wrapper {
        padding: 0 30px;
    }

    .testi-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    .testi-prev {
        left: -8px;
    }

    .testi-next {
        right: -8px;
    }

    .testimonials-slider::before,
    .testimonials-slider::after {
        width: 20px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-wrapper {
        padding: 0 25px;
    }

    .testi-prev {
        left: -5px;
    }

    .testi-next {
        right: -5px;
    }

    .testi-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .testimonial-card p {
        font-size: 0.88rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.cta-container {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.3), rgba(0, 229, 160, 0.1));
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.15;
}

.cta-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-container p {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-whatsapp {
    padding: 18px 45px;
    background: #25D366;
    border: none;
    border-radius: 60px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    padding: 80px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

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

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

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.zoom,
    .service-card.ads,
    .service-card.content {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 80px 40px;
    }

    .hero {
        padding: 120px 40px 80px;
    }

    .navbar {
        padding: 20px 30px;
    }

    .navbar.scrolled {
        padding: 15px 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 120px 25px 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 30px;
    }

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

    .section {
        padding: 60px 25px;
    }

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

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

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

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

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }

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

    .cta-container {
        padding: 50px 30px;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer {
        padding: 60px 25px 30px;
    }

    .cta-section {
        padding: 60px 25px;
    }

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

    .cursor,
    .cursor-dot {
        display: none;
    }

    .marquee-item {
        font-size: 1rem;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

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

    .service-card {
        padding: 30px;
    }

    .price-card {
        padding: 30px 25px;
    }
}

/* ===== SMOOTH SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-1);
    z-index: 100001;
    transition: width 0.1s ease;
}

/* ===== TILT EFFECT ===== */
.tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
}