/* Base & Typography */
:root {
    --primary: #4F46E5;
    /* Indigo */
    --secondary: #EC4899;
    /* Pink */
    --accent: #06B6D4;
    /* Cyan */
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #334155;
    --text-light: #64748b;
    --gradient-main: linear-gradient(135deg, #4F46E5 0%, #9333ea 100%);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Premium Unified Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 700;
    cursor: pointer;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Base Primary Button (Indigo/Purple Gradient) */
.btn-primary {
    background: linear-gradient(135deg, #4F46E5, #9333ea);
    color: white;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5);
}

/* Navbar 'Discuss' Button - Matches Primary */
.btn-nav {
    background: linear-gradient(135deg, #1e293b, #334155) !important;
    /* Dark Steel */
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(30, 41, 59, 0.3);
    font-size: 0.9rem;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.4);
    background: linear-gradient(135deg, #334155, #475569) !important;
}

/* Outline Buttons (Transparent with border, becoming filled on hover) */
.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--dark);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* For dark bg */
    color: white;
}

.btn-outline-dark:hover {
    background: white;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo .dot {
    color: var(--secondary);
    font-size: 2rem;
    line-height: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-main);
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.lang-btn {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-btn.active {
    background: linear-gradient(135deg, #4F46E5, #9333ea);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.lang-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    color: var(--primary);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Visual Art Revised */
.hero-visual {
    position: relative;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glass-card-main {
    position: absolute;
    top: -20px;
    z-index: 10;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 72, 153, 0.15));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 340px;
    animation: float-large 6s ease-in-out infinite alternate;
}

.glass-card-main img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.glass-card-small {
    position: absolute;
    bottom: 30px;
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 200px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glass-card-tech {
    left: 0;
    transform: rotate(-6deg) translateX(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(79, 70, 229, 0.15));
    animation: float-tech 7s ease-in-out infinite alternate-reverse;
}

.glass-card-infra {
    right: 0;
    transform: rotate(6deg) translateX(-20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(6, 182, 212, 0.15));
    animation: float-infra 8s ease-in-out infinite alternate;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.icon-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.mini-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-tags {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

@keyframes float-large {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-30px) scale(1.02);
    }
}

@keyframes float-tech {
    0% {
        transform: rotate(-6deg) translateX(20px) translateY(0);
    }

    100% {
        transform: rotate(-4deg) translateX(20px) translateY(-15px);
    }
}

@keyframes float-infra {
    0% {
        transform: rotate(6deg) translateX(-20px) translateY(0);
    }

    100% {
        transform: rotate(4deg) translateX(-20px) translateY(-20px);
    }
}

/* General Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.4s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card .content {
    position: relative;
    z-index: 2;
}

/* Internal mini blobs */
.blob-mini {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    top: -50px;
    right: -50px;
    z-index: 1;
    pointer-events: none;
    transition: 0.5s;
}

.service-card:hover .blob-mini {
    opacity: 0.25;
    transform: scale(1.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.bg-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.bg-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.bg-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.bg-rose {
    background: linear-gradient(135deg, #f43f5e, #be123c);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tags li {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.brand-title-wrapper {
    display: inline-block;
    font-weight: 800;
}

.brand-cloud {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.5) 0%, rgba(252, 231, 243, 0.5) 50%, rgba(220, 252, 231, 0.5) 100%);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.brand-cloud:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.8) 0%, rgba(252, 231, 243, 0.8) 50%, rgba(220, 252, 231, 0.8) 100%);
}

.social-tags {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    color: #64748b;
}

.social-tags i:hover,
.social-tags span:hover {
    color: var(--secondary);
    transform: scale(1.1);
    transition: 0.2s;
    cursor: default;
}

/* AI Demo & Tabs */
.demo-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* Main Pricing Dark */
.dark-section {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.price-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    background: transparent;
    border: none;
}

.light-card {
    background: white;
    color: var(--dark);
}

.light-card .price {
    color: var(--dark);
}

.light-card p {
    color: var(--text-light);
}

.bg-teal {
    background: linear-gradient(135deg, #10b981, #059669);
}



.glass-dark {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
}

.glass-dark h3 {
    color: white;
    opacity: 0.9;
}

.glass-dark .price {
    color: #22d3ee;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.glass-dark .desc {
    color: rgba(255, 255, 255, 0.7);
}

.glass-dark .features li {
    color: rgba(255, 255, 255, 0.9);
}

.price-card.popular {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(79, 70, 229, 0.25);
    z-index: 5;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-card .features li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-card .features li i {
    width: 18px;
    color: #22c55e;
}

/* Contact */
.contact-section {
    margin-top: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--dark);
    color: white;
    padding: 60px;
    border-radius: 24px;
}

.contact-info h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
}

.contact-item:hover {
    color: var(--accent);
}

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

/* Messenger Buttons (Contact Form) - Unified Premium Look */
.btn-messenger {
    border: none;
    padding: 15px;
    border-radius: 18px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-messenger.tg {
    background: linear-gradient(135deg, #229ED9, #0088cc);
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.3);
}

.btn-messenger.wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-messenger.mail {
    background: linear-gradient(135deg, #EA4335, #c5221f);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.3);
}

.btn-messenger:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1);
}

/* === SOCIAL CLOUDS === */
.social-section {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fdfdfd;
}

.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.social-cloud {
    width: 65px;
    height: 65px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-size: 200% 200%;
}

.social-cloud svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.social-cloud i {
    width: 26px;
    height: 26px;
}

/* Cloud Hover Effect */
.social-cloud:hover {
    transform: translateY(-8px) scale(1.1);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Brand Gradients - REFINED BLUE STEEL PALETTE */
/* 1. Deep Slate */
.sc-yt {
    background: linear-gradient(135deg, #334155, #475569);
    box-shadow: 0 10px 25px rgba(51, 65, 85, 0.3);
}

/* 2. Ocean Steel */
.sc-ru {
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.3);
}

/* 3. Lighter Blue Steel */
.sc-vk {
    background: linear-gradient(135deg, #475569, #38bdf8);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.25);
}

/* 4. Silver/Metallic */
.sc-ig {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    box-shadow: 0 10px 25px rgba(100, 116, 139, 0.3);
}

/* 5. Dark Midnight */
.sc-tt {
    background: linear-gradient(135deg, #0f172a, #334155);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

/* 6. Cool Grey */
.sc-x {
    background: linear-gradient(135deg, #1e293b, #64748b);
    box-shadow: 0 10px 25px rgba(71, 85, 105, 0.3);
}

/* 7. Indigo Steel */
.sc-pin {
    background: linear-gradient(135deg, #334155, #6366f1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

/* 8. Royal Steel */
.sc-ds {
    background: linear-gradient(135deg, #1e293b, #2563eb);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

/* 9. Carbon Black */
.sc-gh {
    background: linear-gradient(135deg, #020617, #1e293b);
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.3);
}

/* 10. Facebook (Royal Steel Alias) */
.sc-fb {
    background: linear-gradient(135deg, #1e293b, #2563eb);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

/* 11. Telegram (Sky/Slate) */
.sc-tg {
    background: linear-gradient(135deg, #1e293b, #0ea5e9);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

/* 12. WhatsApp (Emerald/Slate) */
.sc-wa {
    background: linear-gradient(135deg, #1e293b, #10b981);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* 13. Email (Rose/Slate) */
.sc-em {
    background: linear-gradient(135deg, #334155, #f43f5e);
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
}

/* Footer */
footer {
    margin-top: 0;
    padding: 40px 0;
    border-top: none;
    background: #fdfdfd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}