@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 15px rgba(99,102,241,0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.logo:hover { transform: scale(1.04); }

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
}

.nav-menu li { position: relative; }

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    display: block;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(99,102,241,0.1);
}
.nav-link:hover::after { width: 55%; }

.nav-link.active-nav {
    color: #a5b4fc;
    background: rgba(99,102,241,0.12);
}
.nav-link.active-nav::after { width: 55%; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.3s;
}
.hamburger:hover { background: rgba(99,102,241,0.1); }

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    display: block;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 520px;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border: 2px solid rgba(99, 102, 241, 0.2);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.floating-card {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.card-4 {
    top: 30%;
    left: 10%;
    animation-delay: 0.5s;
    font-size: 3rem;
}

.card-5 {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
    font-size: 3.5rem;
}

.card-6 {
    top: 15%;
    right: 30%;
    animation-delay: 2.5s;
    font-size: 2.5rem;
}

.card-7 {
    bottom: 40%;
    left: 5%;
    animation-delay: 3s;
    font-size: 3rem;
}

.card-8 {
    bottom: 10%;
    right: 15%;
    animation-delay: 1.8s;
    font-size: 3.5rem;
}

.card-9 {
    top: 40%;
    left: 40%;
    animation-delay: 2.2s;
    font-size: 2.8rem;
}

.card-10 {
    bottom: 30%;
    right: 5%;
    animation-delay: 0.8s;
    font-size: 3.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background: var(--dark-light);
}

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

.service-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.service-card:hover::before {
    animation: scanLine 1.5s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.04);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.step-number::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dataStream 2s linear infinite;
    opacity: 0.3;
}

@keyframes dataStream {
    0% { transform: translateY(0); opacity: 0.3; }
    50% { opacity: 0.1; }
    100% { transform: translateY(-20px); opacity: 0; }
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-dim);
}

/* Portfolio Section */
.portfolio {
    background: var(--dark-light);
}

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

.portfolio-item {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-placeholder {
    font-size: 5rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Why Choose Us — full styles defined later in file */

/* About Section */
.about {
    background: var(--dark-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-dim);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.about-placeholder {
    font-size: 15rem;
    animation: float 3s ease-in-out infinite;
}

/* Contact Section */
/* Contact old block — full styles defined later in file */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}
.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.example-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: bounce 2s ease-in-out infinite;
}

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

.example-btn:hover::before {
    left: 100%;
}

.example-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    animation: none;
}

.example-btn span {
    animation: rotate 3s linear infinite;
    display: inline-block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: bounce 2s ease-in-out infinite;
}

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

.game-btn:hover::before {
    left: 100%;
}

.game-btn:hover {
    transform: translateY(-3px) scale(1.05) rotate(-2deg);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
    animation: none;
}

.game-btn span {
    animation: wiggle 1s ease-in-out infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Pricing Section */
.pricing {
    background: var(--dark-light);
}

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

.pricing-card {
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.ultimate {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    background: rgba(99, 102, 241, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.price-item.featured {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary);
}

.price-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

.price-large {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-save {
    text-align: center;
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-item ul {
    list-style: none;
    padding: 0;
}

.price-item ul li {
    padding: 0.5rem 0;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.price-item ul li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

/* FAQ Section */
.faq {
    background: var(--dark);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-light);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-dim);
    line-height: 1.8;
}

/* Technologies Section */
.technologies {
    background: var(--dark-light);
}

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

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tech-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Stats Counter Section */
.stats-counter {
    background: var(--gradient);
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Industries Section */
.industries {
    background: var(--dark);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark-light);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-card h4 {
    font-size: 1rem;
    color: var(--text);
}

/* CTA Section */
.cta-section {
    background: var(--dark-light);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cta-btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Team Section */
.team {
    background: var(--dark-light);
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover .team-img {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison {
    background: var(--dark);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
    background: rgba(99, 102, 241, 0.1);
}

.comparison-header {
    background: var(--gradient);
}

.comparison-cell {
    padding: 1.5rem;
    background: var(--dark-light);
    text-align: center;
    font-weight: 600;
}

.comparison-header .comparison-cell {
    background: transparent;
    color: white;
    font-size: 1.1rem;
}

.comparison-header .comparison-cell.highlight {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-cell.highlight {
    background: rgba(99, 102, 241, 0.15);
    color: #fff;
    font-weight: 600;
}

/* Success Stories Section */
.success-stories {
    background: var(--dark-light);
}

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

.story-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.story-card:hover .story-img {
    transform: scale(1.03);
}

.story-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.story-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.story-business {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-desc {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Guarantee Section */
.guarantee {
    background: var(--dark);
}

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

.guarantee-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.guarantee-card p {
    color: var(--text-dim);
}

/* Reviews Section — full styles below */

.reviews { background: var(--dark); }

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

.review-card {
    background: var(--dark-light);
    padding: 1.8rem;
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-avatar {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.reviewer-business {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.review-rating .stars {
    font-size: 1rem;
}

.review-text {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.6;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

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

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.stars-large {
    font-size: 1.5rem;
}

/* Contact full styles */
.contact {
    background: var(--dark-light);
}

.contact-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content-center .contact-info {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--dark);
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(99,102,241,0.35);
}
.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99,102,241,0.55);
}

.whatsapp-btn,
.example-btn,
.game-btn,
.demo-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

#chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
    position: relative;
}

#chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.chat-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.5);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

#chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

#chatbot-window.chatbot-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.chatbot-header {
    background: var(--gradient);
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chatbot-avatar {
    font-size: 2rem;
}

.chatbot-info h3 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

.chatbot-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

#chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

#chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

#chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#chatbot-messages::-webkit-scrollbar {
    width: 5px;
}

#chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
}

.bot-message, .user-message {
    display: flex;
    gap: 0.8rem;
    animation: fadeIn 0.3s ease;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.message-content {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    max-width: 80%;
}

.user-message .message-content {
    background: var(--gradient);
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    white-space: pre-line;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.quick-reply {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.quick-reply:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    gap: 0.5rem;
}

#chatbot-input {
    flex: 1;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.2rem;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    outline: none;
}

#chatbot-input:focus {
    border-color: var(--primary);
}

#chatbot-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-light);
    padding: 3rem 20px 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h3 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-link {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 50px;
    }

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

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

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

    .hero-image {
        margin-top: 2rem;
        height: 200px;
    }

    .floating-card {
        font-size: 2.5rem;
    }

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

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

    .about-placeholder {
        font-size: 6rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    section {
        padding: 60px 15px;
    }

    .services-grid,
    .portfolio-grid,
    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .portfolio-item,
    .feature-card,
    .process-step {
        padding: 1.5rem;
    }

    .contact-content-center {
        padding: 0 15px;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .whatsapp-btn,
    .example-btn,
    .game-btn,
    .demo-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

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

    .footer-section ul {
        padding: 0;
    }

    .social-links {
        justify-content: center;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-placeholder {
        font-size: 3.5rem;
    }

    /* Disable heavy animations on mobile for performance */
    body::before {
        animation: none;
        background-size: 30px 30px;
    }

    .service-card::before {
        display: none;
    }

    .hero::before {
        animation: none;
    }

    .service-icon {
        animation: none;
    }

    .floating-card {
        animation: none;
        position: static;
        display: inline-block;
        margin: 0 10px;
    }

    .step-number::before {
        display: none;
    }

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

    .review-stats {
        grid-template-columns: 1fr;
    }

    #chatbot-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

    #chatbot-button {
        width: 55px;
        height: 55px;
    }

    .tech-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

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

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .team-grid,
    .stories-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison table — responsive card layout */
    .comparison-table {
        border-radius: 16px;
        overflow: hidden;
    }
    .comparison-header {
        display: none;
    }
    .comparison-row {
        display: flex;
        flex-direction: column;
        background: var(--dark-light);
        border-radius: 14px;
        margin-bottom: 0.8rem;
        border: 1px solid rgba(99,102,241,0.12);
        overflow: hidden;
        gap: 0;
    }
    .comparison-row .comparison-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
        border-bottom: 1px solid rgba(99,102,241,0.08);
        background: var(--dark-light);
    }
    .comparison-row .comparison-cell:last-child {
        border-bottom: none;
    }
    .comparison-row .comparison-cell::before {
        content: attr(data-label);
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
        margin-right: 0.5rem;
    }
    .comparison-row .comparison-cell.highlight {
        background: rgba(99,102,241,0.08);
        color: var(--text);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }
}

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

    .logo {
        font-size: 1.4rem;
    }

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

    .service-icon,
    .feature-icon {
        font-size: 2.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

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

    .about-placeholder {
        font-size: 4rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .whatsapp-btn,
    .example-btn,
    .game-btn,
    .demo-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Falling Robot Animation */
.falling-robot {
    position: fixed;
    width: 120px;
    height: 180px;
    z-index: 9999;
    pointer-events: none;
    animation: robotFall 2.5s ease-in forwards;
}

.falling-robot svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.8));
}

@keyframes robotFall {
    0% {
        transform: translateY(-150px) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(0.9);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .falling-robot {
        width: 80px;
        height: 120px;
    }
}

/* ============================================
   MISSING CSS - ALL ELEMENTS
   ============================================ */

/* Hero Badge, Trust, CTA Group */
.hero-badge {
    display: inline-block;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(99,102,241,0.5);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.cta-btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(99,102,241,0.08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.cta-btn-outline:hover::before { transform: scaleX(1); }
.cta-btn-outline:hover {
    border-color: var(--primary);
    color: #a5b4fc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99,102,241,0.2);
}
.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.trust-item {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}
.trust-item:hover {
    color: #a5b4fc;
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose { background: var(--dark); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99,102,241,0.15);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(-5deg); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--text); }
.feature-card p { color: var(--text-dim); line-height: 1.7; font-size: 0.95rem; }

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-layout .contact-info { text-align: left; }
.contact-layout .contact-item { justify-content: flex-start; text-align: left; }

/* Contact Form */
.contact-form {
    background: var(--dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(99,102,241,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(99,102,241,0.05);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(99,102,241,0.08);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-group select option { background: var(--dark-light); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(99,102,241,0.35);
    margin-top: 0.5rem;
    background-size: 200% auto;
    animation: shimmer4d 2.5s linear infinite;
}
.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(99,102,241,0.55);
}
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 0.8rem;
}
@keyframes shimmer4d {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Review Submit Section */
.review-submit-section {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--dark-light);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(99,102,241,0.15);
}
.review-submit-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.review-submit-section > p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.star-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 2rem;
    cursor: pointer;
    color: rgba(148,163,184,0.3);
    transition: color 0.2s, transform 0.2s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #fbbf24;
    transform: scale(1.2);
}
.review-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(99,102,241,0.3);
}
.review-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99,102,241,0.5);
}
@keyframes reviewSlideIn {
    from { opacity:0; transform: perspective(900px) rotateX(20deg) translateY(40px) scale(0.95); }
    to   { opacity:1; transform: perspective(900px) rotateX(0deg) translateY(0) scale(1); }
}
.review-card.new-review {
    animation: reviewSlideIn 0.6s cubic-bezier(0.23,1,0.32,1) forwards;
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 0 20px rgba(99,102,241,0.2);
}

/* Footer Trust */
.footer-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(99,102,241,0.1);
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .cta-btn-outline { text-align: center; width: 100%; justify-content: center; }
    .hero-trust { justify-content: center; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .contact-layout .contact-info { text-align: center; }
    .contact-layout .contact-item { justify-content: center; }
    .review-form-grid { grid-template-columns: 1fr; }
    .review-submit-section { padding: 1.5rem; }
    .footer-trust { gap: 1rem; font-size: 0.75rem; }
    .hero-image { margin-top: 2rem; width: 100%; }
    .hero-img { max-width: 100%; height: 260px; }
}

/* ============================================
   NEW FEATURES CSS
   ============================================ */

/* Dark / Light Mode */
body.light-mode {
    --dark: #f1f5f9;
    --dark-light: #e2e8f0;
    --text: #0f172a;
    --text-dim: #475569;
    background: var(--dark);
    color: var(--text);
}
body.light-mode .navbar {
    background: rgba(241,245,249,0.92);
    border-bottom-color: rgba(99,102,241,0.15);
}
body.light-mode .service-card,
body.light-mode .portfolio-item,
body.light-mode .feature-card,
body.light-mode .process-step,
body.light-mode .faq-item,
body.light-mode .tech-item,
body.light-mode .team-member,
body.light-mode .story-card,
body.light-mode .guarantee-card,
body.light-mode .review-card,
body.light-mode .blog-card,
body.light-mode .calc-services,
body.light-mode .contact-form,
body.light-mode .pricing-card,
body.light-mode .industry-card {
    background: #fff;
    border-color: rgba(99,102,241,0.15);
}
body.light-mode .contact-item { background: #fff; }
body.light-mode .faq-item,
body.light-mode .comparison-table { background: #fff; }
body.light-mode .comparison-cell { background: #fff; }
body.light-mode .footer { background: #e2e8f0; }
body.light-mode body::before { opacity: 0.5; }

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}
.theme-toggle:hover {
    background: rgba(99,102,241,0.2);
    transform: rotate(20deg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-light);
    border-top: 1px solid rgba(99,102,241,0.2);
    padding: 1rem 1.5rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-content span { font-size: 0.9rem; color: var(--text-dim); }
.cookie-link { color: var(--primary); text-decoration: none; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-accept { background: var(--gradient); color: white; }
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(99,102,241,0.4); }
.cookie-decline { background: transparent; color: var(--text-dim); border: 1px solid rgba(99,102,241,0.2); }
.cookie-decline:hover { background: rgba(99,102,241,0.1); }

/* Client Logo Strip */
.clients-strip {
    padding: 30px 0;
    background: var(--dark-light);
    border-bottom: 1px solid rgba(99,102,241,0.08);
    overflow: hidden;
    width: 100%;
}
.clients-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.clients-track {
    overflow: hidden;
    width: 100%;
}
.clients-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}
.clients-logos:hover { animation-play-state: paused; }
.client-logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dim);
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
    opacity: 0.6;
}
.client-logo:hover { color: var(--primary); opacity: 1; }
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(99,102,241,0.25);
    background: transparent;
    color: var(--text-dim);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--text); }
.filter-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99,102,241,0.35);
}
.service-card.hidden,
.portfolio-item.hidden {
    display: none;
}

/* Quote Calculator */
.quote-calculator { background: var(--dark); }
.calculator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-light);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(99,102,241,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.calc-services { display: flex; flex-direction: column; gap: 0.7rem; }
.calc-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(99,102,241,0.1);
    background: var(--dark);
    transition: all 0.25s;
}
.calc-item:hover { border-color: var(--primary); background: rgba(99,102,241,0.05); }
.calc-item input[type="checkbox"] { display: none; }
.calc-item input:checked + .calc-label {
    color: var(--text);
}
.calc-item:has(input:checked) {
    border-color: var(--primary);
    background: rgba(99,102,241,0.1);
}
.calc-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    width: 100%;
    justify-content: space-between;
    transition: color 0.2s;
}
.calc-icon { font-size: 1.1rem; }
.calc-price-tag {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}
.calc-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.calc-total-box {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    border-radius: 20px;
    border: 2px solid rgba(99,102,241,0.2);
    width: 100%;
}
.calc-total-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.calc-total {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}
.calc-selected {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.calc-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.calc-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }

/* Blog Section */
.blog { background: var(--dark-light); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.3s;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99,102,241,0.2);
}
.blog-img-wrap { position: relative; height: 200px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-body { padding: 1.5rem; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.7rem; color: var(--text); line-height: 1.5; }
.blog-body p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-dim); opacity: 0.7; }

/* Newsletter Section */
.newsletter {
    background: var(--dark);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.12) 0%, transparent 70%);
}
.newsletter-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.newsletter-text h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.newsletter-text p { color: var(--text-dim); font-size: 1rem; }
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 280px;
}
.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 50px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}
.newsletter-input:focus { border-color: var(--primary); background: rgba(99,102,241,0.12); }
.newsletter-input::placeholder { color: rgba(148,163,184,0.5); }
.newsletter-btn {
    padding: 0.9rem 1.8rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(99,102,241,0.35);
}
.newsletter-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(99,102,241,0.55); }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 9997;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}
.wa-tooltip {
    position: absolute;
    right: 65px;
    background: #25D366;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: 'Poppins', sans-serif;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Responsive for new features */
@media (max-width: 768px) {
    .calculator-card { grid-template-columns: 1fr; }
    .calc-result { width: 100%; }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; flex-direction: column; }
    .newsletter-input, .newsletter-btn { width: 100%; border-radius: 12px; }
    .newsletter-text h2 { font-size: 1.6rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
    .whatsapp-float { bottom: 85px; right: 15px; width: 50px; height: 50px; font-size: 1.4rem; }
    .theme-toggle { width: 34px; height: 34px; font-size: 1rem; }
}

/* ============================================
   HERO SECTION UPGRADE
   ============================================ */

/* Typing cursor */
.hero-cursor {
    display: inline-block;
    color: #a5b4fc;
    animation: cursorBlink 0.75s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Trust divider dot */
.trust-divider {
    color: rgba(99,102,241,0.4);
    font-size: 0.7rem;
}

/* Floating service cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 14px;
    padding: 0.65rem 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(99,102,241,0.1);
    z-index: 2;
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: 0.5s; }
.hero-float-card:nth-child(3) { animation-delay: 1s; }
.hero-float-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hfc-icon { font-size: 1.5rem; flex-shrink: 0; }
.hfc-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}
.hfc-price {
    font-size: 0.7rem;
    color: #a5b4fc;
    margin: 0;
    font-weight: 600;
}

/* Card positions */
.hero-float-1 { top: 8%;  left: -10%; }
.hero-float-2 { top: 30%; right: -8%; }
.hero-float-3 { bottom: 22%; left: -12%; }
.hero-float-4 { bottom: 8%; right: -5%; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.2s backwards;
    z-index: 2;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(99,102,241,0.6);
    border-bottom: 2px solid rgba(99,102,241,0.6);
    transform: rotate(45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50%       { transform: rotate(45deg) translateY(5px); opacity: 0.4; }
}

/* Hero image wrapper needs relative positioning */
.hero-image { position: relative; }

/* Responsive */
@media (max-width: 768px) {
    .hero-float-card { display: none; }
    .hero-scroll-hint { display: none; }
    .trust-divider { display: none; }
    .hero-trust {
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .cta-btn-outline { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================
   NEW SECTIONS CSS
   ============================================ */

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #8b5cf6, #6366f1);
    background-size: 300% auto;
    animation: promoBg 4s linear infinite;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 999;
}
@keyframes promoBg {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}
.promo-inner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-fire { font-size: 1.2rem; animation: wiggle 1s ease-in-out infinite; display: inline-block; }
.promo-text { font-size: 0.88rem; color: white; font-weight: 500; }
.promo-cta {
    background: white;
    color: #6366f1;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.promo-cta:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.promo-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: color 0.2s;
}
.promo-close:hover { color: white; }

/* Before / After */
.before-after { background: var(--dark); }
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2.5rem;
}
.ba-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99,102,241,0.15);
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ba-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(99,102,241,0.2); border-color: var(--primary); }
.ba-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    height: 220px;
}
.ba-side { position: relative; overflow: hidden; }
.ba-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ba-card:hover .ba-side img { transform: scale(1.05); }
.ba-label {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: rgba(239,68,68,0.9);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.ba-label-after { background: rgba(34,197,94,0.9); }
.ba-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(239,68,68,0.85));
    color: white;
    font-size: 0.7rem;
    line-height: 1.6;
    padding: 1rem 0.8rem 0.6rem;
    z-index: 2;
}
.ba-overlay-after { background: linear-gradient(transparent, rgba(34,197,94,0.85)); }
.ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    padding: 0 0.5rem;
    z-index: 3;
}
.ba-arrow {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99,102,241,0.5);
}
.ba-result {
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(99,102,241,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ba-result strong { color: var(--text); }
.ba-result-icon { font-size: 1.2rem; }

/* Video Reel */
.video-reel { background: var(--dark-light); }
.video-wrapper { max-width: 900px; margin: 0 auto; }
.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(99,102,241,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
}
.video-thumb-img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.5s; }
.video-thumbnail:hover .video-thumb-img { transform: scale(1.03); }
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(99,102,241,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}
.video-thumbnail:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--primary); }
.play-icon { color: white; font-size: 1.8rem; margin-left: 4px; }
.play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(99,102,241,0.4);
    animation: pulse 2s ease-out infinite;
}
.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15,23,42,0.95));
    padding: 3rem 2rem 1.5rem;
    z-index: 2;
}
.video-overlay-text h3 { font-size: 1.3rem; color: white; margin-bottom: 0.3rem; }
.video-overlay-text p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.video-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.vstat {
    text-align: center;
    padding: 1.2rem;
    background: var(--dark);
    border-radius: 14px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.3s;
}
.vstat:hover { border-color: var(--primary); transform: translateY(-4px); }
.vstat h4 {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}
.vstat p { font-size: 0.8rem; color: var(--text-dim); }

/* Awards */
.awards { background: var(--dark); }
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.award-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark-light);
    border-radius: 18px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    position: relative;
    overflow: hidden;
}
.award-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}
.award-card:hover::before { opacity: 0.06; }
.award-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(99,102,241,0.2); }
.award-icon { font-size: 2.8rem; margin-bottom: 0.8rem; display: block; }
.award-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.award-card p { font-size: 0.78rem; color: var(--text-dim); }

/* Social Proof Ticker (toast notifications) */
.social-proof-ticker {
    position: fixed;
    bottom: 160px;
    left: 20px;
    z-index: 9996;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}
.sp-toast {
    background: var(--dark-light);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: toastIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
    max-width: 260px;
    pointer-events: none;
}
.sp-toast.hiding { animation: toastOut 0.4s ease forwards; }
.sp-avatar { font-size: 1.4rem; flex-shrink: 0; }
.sp-msg strong { color: #a5b4fc; }
.sp-time { font-size: 0.7rem; color: var(--text-dim); display: block; margin-top: 0.1rem; }
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-30px) scale(0.9); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to   { opacity: 0; transform: translateX(-30px) scale(0.9); }
}

/* Special Offer Popup */
.offer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    display: none;
    backdrop-filter: blur(4px);
}
.offer-overlay.show { display: block; }
.offer-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    background: var(--dark-light);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    z-index: 10002;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.2);
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.offer-popup.show { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }
.offer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(99,102,241,0.1);
    border: none;
    color: var(--text-dim);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.offer-close:hover { background: rgba(99,102,241,0.2); color: var(--text); }
.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.offer-popup h3 { font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; }
.offer-popup p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.offer-countdown {
    background: var(--dark);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(99,102,241,0.15);
}
.offer-countdown strong { color: #f97316; font-size: 1.1rem; }
.offer-btn {
    display: block;
    padding: 1rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    margin-bottom: 0.8rem;
}
.offer-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.6); }
.offer-note { font-size: 0.75rem; color: var(--text-dim); opacity: 0.7; margin: 0; }

/* Footer Newsletter */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid rgba(99,102,241,0.15);
    margin-bottom: 3rem;
}
.fn-text h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.fn-text p { font-size: 0.85rem; color: var(--text-dim); }
.fn-form { display: flex; gap: 0.5rem; flex: 1; min-width: 260px; }
.fn-input {
    flex: 1;
    padding: 0.75rem 1.1rem;
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: all 0.3s;
}
.fn-input:focus { border-color: var(--primary); background: rgba(99,102,241,0.12); }
.fn-input::placeholder { color: rgba(148,163,184,0.5); }
.fn-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.fn-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99,102,241,0.4); }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9996;
    box-shadow: 0 5px 20px rgba(99,102,241,0.4);
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 10px 30px rgba(99,102,241,0.6); }

/* Light mode overrides */
body.light-mode .ba-card,
body.light-mode .vstat,
body.light-mode .award-card,
body.light-mode .sp-toast,
body.light-mode .offer-popup,
body.light-mode .footer-newsletter { background: #fff; border-color: rgba(99,102,241,0.15); }
body.light-mode .video-thumbnail { border-color: rgba(99,102,241,0.2); }

/* Responsive */
@media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-images { height: 160px; }
    .video-thumb-img { height: 220px; }
    .video-stats { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .social-proof-ticker { display: none; }
    .promo-text { font-size: 0.78rem; }
    .footer-newsletter { flex-direction: column; text-align: center; }
    .fn-form { flex-direction: column; width: 100%; }
    .fn-input, .fn-btn { width: 100%; border-radius: 12px; }
    .back-to-top { bottom: 140px; right: 15px; width: 40px; height: 40px; font-size: 1rem; }
    .offer-popup { padding: 2rem 1.5rem; }
    .offer-popup h3 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .ba-images { grid-template-columns: 1fr auto 1fr; height: 130px; }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .video-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   MORE SECTIONS CSS
   ============================================ */

/* Expertise / Skill Bars */
.expertise { background: var(--dark-light); }
.expertise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.skill-bar { margin-bottom: 1.6rem; }
.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.skill-pct { color: var(--primary); }
.skill-track {
    height: 8px;
    background: rgba(99,102,241,0.1);
    border-radius: 50px;
    overflow: hidden;
}
.skill-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 50px;
    transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
    position: relative;
}
.skill-fill::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6px; height: 100%;
    background: rgba(255,255,255,0.6);
    border-radius: 50px;
    animation: skillShine 2s ease-in-out infinite;
}
@keyframes skillShine {
    0%,100% { opacity: 0.6; }
    50% { opacity: 0; }
}
.expertise-highlights { display: flex; flex-direction: column; gap: 1.5rem; }
.exp-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--dark);
    border-radius: 14px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.3s;
}
.exp-highlight:hover { border-color: var(--primary); transform: translateX(6px); }
.exp-icon { font-size: 2rem; flex-shrink: 0; }
.exp-highlight h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--text); }
.exp-highlight p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin: 0; }

/* Timeline */
.timeline { background: var(--dark); }
.timeline-track {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.5), rgba(139,92,246,0.5), transparent);
    transform: translateX(-50%);
}
.tl-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}
.tl-left { flex-direction: row; }
.tl-right { flex-direction: row-reverse; }
.tl-content {
    width: calc(50% - 2rem);
    background: var(--dark-light);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.tl-content:hover { border-color: var(--primary); transform: scale(1.02); box-shadow: 0 10px 30px rgba(99,102,241,0.15); }
.tl-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.tl-content h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.tl-content p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin: 0; }
.tl-dot {
    width: 16px; height: 16px;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 1.5rem;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.2), 0 0 15px rgba(99,102,241,0.4);
    position: relative;
    z-index: 1;
}

/* Coverage */
.coverage { background: var(--dark-light); }
.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.map-visual {
    position: relative;
    height: 320px;
    background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.08) 0%, transparent 70%);
    border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.map-india { font-size: 10rem; filter: drop-shadow(0 0 30px rgba(99,102,241,0.3)); animation: float 4s ease-in-out infinite; }
.map-pulse {
    position: absolute;
    width: 20px; height: 20px;
    background: rgba(99,102,241,0.6);
    border-radius: 50%;
    animation: mapPulse 2s ease-out infinite;
}
.map-p1 { top: 20%; left: 35%; animation-delay: 0s; }
.map-p2 { top: 55%; left: 25%; animation-delay: 0.5s; }
.map-p3 { top: 65%; left: 55%; animation-delay: 1s; }
.map-p4 { top: 30%; left: 60%; animation-delay: 1.5s; }
@keyframes mapPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}
.map-dot {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(99,102,241,0.8);
}
.map-dot span {
    position: absolute;
    left: 14px; top: -4px;
    font-size: 0.65rem;
    color: #a5b4fc;
    white-space: nowrap;
    font-weight: 600;
}
.map-d1 { top: 22%; left: 37%; }
.map-d2 { top: 57%; left: 27%; }
.map-d3 { top: 67%; left: 57%; }
.map-d4 { top: 32%; left: 62%; }
.coverage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.cov-stat {
    text-align: center;
    padding: 1.2rem;
    background: var(--dark);
    border-radius: 14px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.3s;
}
.cov-stat:hover { border-color: var(--primary); transform: translateY(-4px); }
.cov-stat h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}
.cov-stat p { font-size: 0.8rem; color: var(--text-dim); }
.coverage-cities { grid-column: 1 / -1; }
.cov-cities-label { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 0.6rem; font-weight: 600; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.city-tags span {
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    transition: all 0.2s;
}
.city-tags span:hover { background: rgba(99,102,241,0.2); transform: translateY(-2px); }

/* Add-ons */
.addons { background: var(--dark); }
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.addon-card {
    background: var(--dark-light);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    position: relative;
    overflow: hidden;
}
.addon-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.addon-card:hover::after { transform: scaleX(1); }
.addon-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(99,102,241,0.15); }
.addon-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.addon-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.addon-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1rem; }
.addon-price {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.addon-btn {
    display: block;
    padding: 0.6rem 1.2rem;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.3);
    color: #a5b4fc;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}
.addon-btn:hover { background: var(--gradient); color: white; border-color: transparent; transform: translateY(-2px); }

/* Referral */
.referral {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}
.referral::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99,102,241,0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(236,72,153,0.08) 0%, transparent 60%);
}
.referral-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.referral-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.referral-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.referral-text p { color: var(--text-dim); line-height: 1.7; margin-bottom: 1.5rem; }
.referral-steps { list-style: none; padding: 0; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.referral-steps li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}
.rs-num {
    width: 28px; height: 28px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.referral-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.referral-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.55); }
.referral-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.ref-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid rgba(99,102,241,0.15);
    min-width: 110px;
    transition: all 0.3s;
}
.ref-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.ref-card-earn { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.05); }
.ref-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.ref-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.ref-card p { font-size: 0.75rem; color: var(--text-dim); margin: 0; }
.ref-arrow { font-size: 1.5rem; color: rgba(99,102,241,0.5); font-weight: 700; }

/* Light mode */
body.light-mode .exp-highlight,
body.light-mode .tl-content,
body.light-mode .cov-stat,
body.light-mode .addon-card,
body.light-mode .ref-card { background: #fff; border-color: rgba(99,102,241,0.15); }
body.light-mode .map-visual { background: rgba(99,102,241,0.04); }

/* Responsive */
@media (max-width: 768px) {
    .expertise-layout { grid-template-columns: 1fr; gap: 2rem; }
    .timeline-track::before { left: 20px; }
    .tl-item { flex-direction: row !important; }
    .tl-right { flex-direction: row !important; }
    .tl-dot { margin: 0 1rem 0 0; flex-shrink: 0; }
    .tl-content { width: 100%; }
    .coverage-layout { grid-template-columns: 1fr; gap: 2rem; }
    .map-visual { height: 200px; }
    .map-india { font-size: 6rem; }
    .coverage-stats { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: 1fr; }
    .referral-inner { grid-template-columns: 1fr; gap: 2rem; }
    .referral-visual { gap: 0.5rem; }
    .ref-card { min-width: 90px; padding: 1rem 0.7rem; }
    .ref-arrow { font-size: 1rem; }
    .referral-text h2 { font-size: 1.7rem; }
}

/* ============================================
   MORE MORE MORE SECTIONS
   ============================================ */

/* Testimonial Video Cards */
.testimonial-videos { background: var(--dark-light); }
.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.tv-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    position: relative;
    overflow: hidden;
}
.tv-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 15px;
    font-size: 8rem;
    color: rgba(99,102,241,0.06);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.tv-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(99,102,241,0.2); }
.tv-featured {
    border: 2px solid var(--primary);
    background: rgba(99,102,241,0.05);
    box-shadow: 0 0 30px rgba(99,102,241,0.15);
}
.tv-avatar { font-size: 3rem; margin-bottom: 0.5rem; }
.tv-stars { font-size: 1rem; margin-bottom: 1rem; }
.tv-quote { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.tv-author { margin-bottom: 0.8rem; }
.tv-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.tv-author span { font-size: 0.78rem; color: var(--text-dim); }
.tv-service-tag {
    display: inline-block;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    color: #a5b4fc;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fun Facts */
.fun-facts { background: var(--dark); }
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.fact-card {
    background: var(--dark-light);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(99,102,241,0.1);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    position: relative;
    overflow: hidden;
}
.fact-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(99,102,241,0.15); }
.fact-num {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1;
}
.fact-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin: 0; }

/* Availability */
.availability { background: var(--dark-light); }
.avail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.avail-hours { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.avail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: var(--dark);
    border-radius: 10px;
    border: 1px solid rgba(99,102,241,0.1);
    font-size: 0.9rem;
}
.avail-time { font-weight: 700; font-size: 0.85rem; }
.avail-time.open { color: #4ade80; }
.avail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.avail-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.55); }
.avail-status-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(99,102,241,0.15);
    text-align: center;
    position: relative;
}
.avail-online-dot {
    width: 14px; height: 14px;
    background: #4ade80;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
    animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.2); }
    50% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
}
.avail-status-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text); }
.avail-status-card p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1.5rem; }
.avail-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.avail-badges span {
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* Skill Badges */
.skill-badges { background: var(--dark); }
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--dark-light);
    border-radius: 16px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
    cursor: default;
}
.badge-item:hover { transform: translateY(-6px) scale(1.05); border-color: var(--primary); box-shadow: 0 12px 30px rgba(99,102,241,0.2); background: rgba(99,102,241,0.08); }
.badge-icon { font-size: 2rem; }
.badge-item span:last-child { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); text-align: center; }
.badge-item:hover span:last-child { color: #a5b4fc; }

/* Budget Estimator */
.estimator { background: var(--dark-light); }
.estimator-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(99,102,241,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.est-label { display: block; font-size: 0.88rem; color: var(--text-dim); margin-bottom: 1.5rem; font-weight: 600; }
.est-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 50px;
    background: linear-gradient(to right, #6366f1, #ec4899);
    outline: none;
    margin-bottom: 1rem;
}
.est-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #6366f1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(99,102,241,0.4);
    transition: transform 0.2s;
}
.est-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.est-budget-display {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 600;
}
.est-budget-display span {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.est-result { text-align: center; }
.est-rec-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.est-result h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.est-result p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1.5rem; }
.est-cta-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(99,102,241,0.35);
}
.est-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(99,102,241,0.55); }

/* Platforms */
.platforms { background: var(--dark); }
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}
.platform-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark-light);
    border-radius: 18px;
    border: 1px solid rgba(99,102,241,0.1);
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.platform-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(99,102,241,0.2); }
.platform-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.platform-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.platform-card p { font-size: 0.78rem; color: var(--text-dim); margin: 0; }

/* Live Counter */
.live-counter {
    background: var(--gradient);
    padding: 60px 20px;
}
.lc-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.lc-left { flex: 1; min-width: 220px; }
.lc-live-dot {
    width: 12px; height: 12px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: onlinePulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}
.lc-left h2 { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.lc-left p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.lc-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.lc-stat { text-align: center; }
.lc-stat h3 { font-size: 2.5rem; font-weight: 900; color: white; margin-bottom: 0.2rem; }
.lc-stat p { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.lc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #6366f1;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.lc-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 35px rgba(0,0,0,0.3); }

/* Light mode */
body.light-mode .tv-card,
body.light-mode .fact-card,
body.light-mode .avail-row,
body.light-mode .avail-status-card,
body.light-mode .badge-item,
body.light-mode .estimator-card,
body.light-mode .platform-card { background: #fff; border-color: rgba(99,102,241,0.15); }

/* Responsive */
@media (max-width: 768px) {
    .tv-grid { grid-template-columns: 1fr; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .avail-inner { grid-template-columns: 1fr; gap: 2rem; }
    .badges-grid { grid-template-columns: repeat(3, 1fr); }
    .estimator-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .lc-inner { flex-direction: column; text-align: center; }
    .lc-stats { justify-content: center; }
    .lc-left h2 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .facts-grid { grid-template-columns: 1fr; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Referral Code Box */
.referral-code-box {
    background: var(--dark);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    margin: 1.5rem 0;
}
.rc-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.9rem;
}
.rc-label strong { color: #4ade80; }
.rc-input-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}
.rc-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.rc-input:focus { border-color: var(--primary); background: rgba(99,102,241,0.12); }
.rc-apply-btn {
    padding: 0.75rem 1.4rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.rc-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99,102,241,0.4); }
.rc-result {
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}
.rc-result.success { color: #4ade80; }
.rc-result.error   { color: #f87171; }
.rc-share {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(99,102,241,0.1);
}
.rc-share-label { font-size: 0.78rem; color: var(--text-dim); }
.rc-copy-btn {
    padding: 0.35rem 0.9rem;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    color: #a5b4fc;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s;
    letter-spacing: 0.5px;
}
.rc-copy-btn:hover { background: rgba(99,102,241,0.25); transform: translateY(-2px); }
.rc-copy-btn.copied { background: rgba(74,222,128,0.15); border-color: #4ade80; color: #4ade80; }
.rc-wa-share {
    padding: 0.35rem 0.9rem;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    color: #4ade80;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.rc-wa-share:hover { background: rgba(37,211,102,0.25); transform: translateY(-2px); }
body.light-mode .referral-code-box { background: #fff; border-color: rgba(99,102,241,0.15); }
@media (max-width: 480px) {
    .rc-input-row { flex-direction: column; }
    .rc-apply-btn { width: 100%; }
}
