/* K-Connect Technologies - Enhanced Stylesheet */

:root {
    --kconnect-blue: #0A1128;
    --kconnect-red: #E30613;
    --electric-green: #00FF00;
    --vibrant-orange: #FF7F00;
    --metallic-silver: #C0C0C0;
    --gradient-red: linear-gradient(135deg, #E30613 0%, #ff4d4d 100%);
    --gradient-green: linear-gradient(135deg, #00FF00 0%, #00cc00 100%);
    --gradient-blue: linear-gradient(135deg, #0A1128 0%, #1a2a5e 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: var(--kconnect-blue);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--kconnect-red);
    color: white;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.1;
}

a {
    text-decoration: none;
}

/* Glass Effect */
.glass {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
}

/* Enhanced Shadows */
.shadow-glow-red {
    box-shadow: 0 0 40px rgba(227, 6, 19, 0.4), 0 0 80px rgba(227, 6, 19, 0.2);
}

.shadow-glow-green {
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.4), 0 0 80px rgba(0, 255, 0, 0.2);
}

.shadow-glow-blue {
    box-shadow: 0 0 40px rgba(10, 17, 40, 0.4);
}

/* Background Patterns */
.bg-grid-pattern {
    background-image: 
        linear-gradient(rgba(10, 17, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 40, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-dot-pattern {
    background-image: radial-gradient(rgba(10, 17, 40, 0.08) 2px, transparent 2px);
    background-size: 24px 24px;
}

.bg-mesh-gradient {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(227, 6, 19, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 0%, rgba(0, 255, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(10, 17, 40, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(255, 127, 0, 0.06) 0%, transparent 50%);
}

/* Floating Particles Background */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--electric-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(7) { left: 90%; animation-delay: 2.5s; animation-duration: 17s; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 24px;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 40px rgba(31, 38, 135, 0.12);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-inner.scrolled {
    padding: 12px 32px;
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(31, 38, 135, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: transform 0.4s ease;
}

.nav-logo:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.nav-brand {
    display: none;
}

@media (min-width: 1024px) {
    .nav-brand {
        display: block;
        font-size: 24px;
        font-weight: 900;
        font-style: italic;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        color: var(--kconnect-blue);
        position: relative;
    }
    .nav-brand span {
        color: var(--kconnect-red);
        position: relative;
    }
    .nav-brand span::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-red);
        border-radius: 2px;
    }
}

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

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

.nav-link {
    color: rgba(10, 17, 40, 0.6);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--kconnect-red);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: flex;
    }
}

.btn-cta {
    position: relative;
    overflow: hidden;
    background: var(--gradient-red);
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 6, 19, 0.4);
}

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

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

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--kconnect-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(2) {
    width: 32px;
}

.mobile-toggle:hover span {
    background: var(--kconnect-red);
}

/* Mobile Sidebar Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 40, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu-overlay.visible {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    z-index: 1001;
    background: linear-gradient(180deg, var(--kconnect-blue) 0%, #0d1a3a 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 10px 0 60px rgba(0, 0, 0, 0.4);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(227, 6, 19, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(227, 6, 19, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.mobile-menu-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mobile-menu-brand {
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-brand span {
    color: var(--kconnect-red);
}

.mobile-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: var(--kconnect-red);
    border-color: var(--kconnect-red);
    transform: rotate(90deg) scale(1.1);
}

.mobile-close svg {
    color: white;
}

.mobile-nav {
    position: relative;
    z-index: 2;
    padding: 30px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.3) 0%, rgba(227, 6, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    opacity: 1;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: white;
    transform: translateX(8px);
}

.mobile-nav-link svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mobile-nav-link:hover svg,
.mobile-nav-link.active svg {
    opacity: 1;
    transform: scale(1.1);
}

.mobile-nav-link span {
    position: relative;
    z-index: 1;
}

.mobile-menu-footer {
    position: relative;
    z-index: 2;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 16px;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: var(--kconnect-red);
    color: white;
    transform: translateY(-3px);
}

.mobile-menu-social svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(227, 6, 19, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.mobile-menu-decor-2 {
    position: absolute;
    top: 50%;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.3) 0%, transparent 70%);
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
}
}

.mobile-nav-link:hover svg,
.mobile-nav-link.active svg {
    opacity: 1;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.mobile-menu-footer p {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-close svg {
    color: white;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(10, 17, 40, 0.06) 2px, transparent 2px);
    background-size: 28px 28px;
}

.hero-glow-1 {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite 2s;
}

.hero-glow-3 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite 4s;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(227, 6, 19, 0.1);
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.08);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    position: relative;
}

.hero-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--kconnect-red);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--kconnect-red);
    border-radius: 50%;
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kconnect-blue);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--kconnect-blue);
    animation: titleEnter 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 88px;
    }
}

.hero-title-line {
    display: block;
}

.hero-title-line span {
    display: block;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title-line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) span { animation-delay: 0.2s; }
.hero-title-line:nth-child(3) span { animation-delay: 0.3s; }

.hero-title-accent {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--kconnect-red);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(227, 6, 19, 0.4);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(10, 17, 40, 0.6);
    font-weight: 500;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--gradient-blue);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(10, 17, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 17, 40, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-red);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::after {
    transform: translateY(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background: transparent;
    color: var(--kconnect-blue);
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(10, 17, 40, 0.15);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: var(--kconnect-red);
    color: var(--kconnect-red);
    background: white;
    box-shadow: 0 8px 30px rgba(227, 6, 19, 0.15);
    transform: translateY(-4px);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(6px);
}

/* Hero Visual */
.hero-visual {
    display: none;
    position: relative;
    animation: fadeInRight 1.2s ease 0.5s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(10, 17, 40, 0.08);
}

.hero-ring-1 {
    inset: 0;
    animation: spinSlow 80s linear infinite;
}

.hero-ring-1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--gradient-red);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.5);
}

.hero-ring-2 {
    inset: 8%;
    border-style: dashed;
    border-color: rgba(227, 6, 19, 0.2);
    animation: spinSlow 60s linear infinite reverse;
}

.hero-ring-3 {
    inset: 16%;
    animation: spinSlow 70s linear infinite;
    border-color: rgba(0, 255, 0, 0.15);
}

.hero-core {
    position: absolute;
    inset: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 60px rgba(31, 38, 135, 0.15),
        inset 0 -2px 10px rgba(0, 0, 0, 0.02);
    animation: floatCore 6s ease-in-out infinite;
}

.hero-core img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-core::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: radial-gradient(circle at center, rgba(227, 6, 19, 0.08) 0%, transparent 70%);
    animation: pulse 3s ease infinite;
}

.hero-tag {
    position: absolute;
    padding: 14px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}

.hero-tag-1 {
    top: 5%;
    left: -10%;
    color: var(--kconnect-red);
    animation: floatTag1 8s ease-in-out infinite;
}

.hero-tag-2 {
    bottom: 15%;
    right: -5%;
    color: var(--kconnect-blue);
    animation: floatTag2 7s ease-in-out infinite 0.5s;
}

.hero-tag-3 {
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    color: var(--electric-green);
    animation: floatTag3 9s ease-in-out infinite 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    animation: bounce 2s ease infinite;
}

.scroll-text {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    color: var(--kconnect-blue);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--kconnect-blue), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--kconnect-blue);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(40px); opacity: 0; }
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(227, 6, 19, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
}

.section-light {
    background: #f9fafb;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--kconnect-blue);
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 56px;
    }
}

.section-title span {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-title span {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(10, 17, 40, 0.6);
    max-width: 600px;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-badge {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(10, 17, 40, 0.05);
    border: 1px solid rgba(10, 17, 40, 0.08);
    color: var(--kconnect-blue);
    width: fit-content;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(10, 17, 40, 0.7);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(10, 17, 40, 0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--kconnect-blue);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-top: 8px;
}

/* Timeline */
.timeline {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.06);
}

.timeline-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
    border-left: 2px solid rgba(10, 17, 40, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-left-color: var(--kconnect-red);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--electric-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}

.timeline-item:nth-child(2) .timeline-dot,
.timeline-item:nth-child(3) .timeline-dot {
    background: var(--kconnect-blue);
    box-shadow: 0 0 15px rgba(10, 17, 40, 0.3);
}

.timeline-item:last-child .timeline-dot {
    background: var(--kconnect-red);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.4);
}

.timeline-date {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--kconnect-blue);
    margin-bottom: 8px;
}

.timeline-desc {
    color: #6b7280;
    font-size: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(227, 6, 19, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(227, 6, 19, 0.1);
}

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

.service-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    transition: all 0.6s ease;
}

.service-card:hover .service-glow {
    background: radial-gradient(circle, rgba(227, 6, 19, 0.3) 0%, transparent 70%);
    transform: scale(1.5);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--kconnect-red);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(8deg);
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 12px 40px rgba(227, 6, 19, 0.4);
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: white;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--electric-green);
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--electric-green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateX(-16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.08);
    border-color: rgba(0, 255, 0, 0.2);
}

.benefit-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.benefit-check svg {
    width: 16px;
    height: 16px;
    color: var(--kconnect-blue);
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--kconnect-blue);
    margin-bottom: 6px;
}

.benefit-desc {
    color: #6b7280;
    font-size: 14px;
}

/* Diagram */
.diagram {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.diagram-orbit {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 102, 204, 0.15);
    animation: rotateOrbit 30s linear infinite;
}

.diagram-orbit-2 {
    inset: 15%;
    border-color: rgba(227, 6, 19, 0.1);
    animation-duration: 25s;
    animation-direction: reverse;
}

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

.diagram-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, var(--kconnect-blue) 0%, transparent 100%);
    transform-origin: left center;
    opacity: 0.3;
}

.diagram-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--kconnect-blue);
    border-radius: 50%;
    animation: pulseDot 2s ease infinite;
}

.diagram-connector:nth-child(2) { transform: rotate(0deg); }
.diagram-connector:nth-child(3) { transform: rotate(90deg); }
.diagram-connector:nth-child(4) { transform: rotate(180deg); }
.diagram-connector:nth-child(5) { transform: rotate(270deg); }

@keyframes pulseDot {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scale(1.5); opacity: 1; }
}

.diagram-circle {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    box-shadow: 
        0 30px 80px rgba(31, 38, 135, 0.12),
        inset 0 -4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.diagram-core {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kconnect-blue) 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.3;
    box-shadow: 
        0 0 60px rgba(0, 102, 204, 0.5),
        0 0 100px rgba(0, 102, 204, 0.3),
        inset 0 4px 20px rgba(255, 255, 255, 0.2);
    animation: pulseCore 2s ease-in-out infinite, glowCore 3s ease-in-out infinite;
    position: relative;
}

.diagram-core::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kconnect-blue) 0%, var(--kconnect-red) 100%);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

@keyframes pulseCore {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glowCore {
    0%, 100% { box-shadow: 0 0 60px rgba(0, 102, 204, 0.5), 0 0 100px rgba(0, 102, 204, 0.3), inset 0 4px 20px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 80px rgba(0, 102, 204, 0.7), 0 0 120px rgba(0, 102, 204, 0.4), inset 0 4px 20px rgba(255, 255, 255, 0.3); }
}

.diagram-particles {
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    overflow: hidden;
}

.diagram-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--electric-green);
    border-radius: 50%;
    animation: particleOrbit 4s linear infinite;
}

.diagram-particle:nth-child(1) { animation-delay: 0s; }
.diagram-particle:nth-child(2) { animation-delay: 1s; }
.diagram-particle:nth-child(3) { animation-delay: 2s; }
.diagram-particle:nth-child(4) { animation-delay: 3s; }

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); opacity: 0; }
}

.diagram-node {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatNode 4s ease-in-out infinite;
    cursor: pointer;
    overflow: hidden;
}

.diagram-node::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(135deg, var(--kconnect-blue), var(--kconnect-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diagram-node:hover::before {
    opacity: 1;
}

.diagram-node:hover {
    transform: scale(1.15);
    box-shadow: 
        0 25px 60px rgba(0, 102, 204, 0.25),
        0 10px 30px rgba(227, 6, 19, 0.15);
    animation-play-state: paused;
    border-color: transparent;
}

.diagram-node-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.diagram-node-icon svg {
    width: 20px;
    height: 20px;
}

.diagram-node:hover .diagram-node-icon {
    transform: scale(1.1) rotate(5deg);
}

.diagram-node span {
    font-size: 11px;
    font-weight: 700;
    color: var(--kconnect-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.diagram-node:hover span {
    color: var(--kconnect-blue);
}

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

.diagram-node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.1s;
}

.diagram-node-1:hover {
    transform: translateX(-50%) scale(1.15);
}

.diagram-node-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.3s;
}

.diagram-node-2:hover {
    transform: translateX(-50%) scale(1.15);
}

.diagram-node-3 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.diagram-node-3:hover {
    transform: translateY(-50%) scale(1.15);
}

.diagram-node-4 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.7s;
}

.diagram-node-4:hover {
    transform: translateY(-50%) scale(1.15);
}

/* Solutions Tabs */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 300px 1fr;
    }
}

.tabs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-btn {
    text-align: left;
    padding: 20px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(8px);
}

.tab-btn.active {
    background: var(--gradient-green);
    color: var(--kconnect-blue);
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.3);
    transform: translateX(8px);
}

.tab-content {
    display: none;
    padding: 48px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.tab-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.tab-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, transparent 70%);
    filter: blur(60px);
}

.tab-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tab-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.tab-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .tab-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tab-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tab-list-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    flex-shrink: 0;
}

.tab-list-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

.project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--kconnect-blue);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.3) 60%, transparent 100%);
    z-index: 10;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(10, 17, 40, 0.98) 0%, rgba(10, 17, 40, 0.5) 100%);
}

.project-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 20;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--kconnect-red) 0%, var(--kconnect-blue) 100%);
    border-radius: 20px;
    font-weight: 600;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    width: fit-content;
}

.project-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--electric-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-link {
    opacity: 1;
    transform: translateY(0);
}

.project-link:hover {
    color: white;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

/* Client Grid */
.client-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .client-grid {
        flex-wrap: nowrap;
        gap: 32px;
    }
}

.client-card {
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 140px;
    min-width: 200px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--kconnect-blue) 0%, var(--kconnect-red) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.client-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 60px rgba(31, 38, 135, 0.2);
    border-color: transparent;
}

.client-card img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-card-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--kconnect-dark);
    opacity: 0.4;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.client-card:hover .client-card-text {
    color: white;
    opacity: 1;
}

/* Mission & Vision Cards */
.mission-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kconnect-blue), var(--electric-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kconnect-blue) 0%, var(--electric-green) 100%);
    border-radius: 24px;
    animation: float 3s ease-in-out infinite;
}

.mission-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.mission-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--electric-green);
}

.mission-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 16px;
}

.mission-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

/* About Page CTA */
.about-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--kconnect-blue) 0%, #0d1a3a 50%, var(--kconnect-blue) 100%);
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(227, 6, 19, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(227, 6, 19, 0.15) 0%, transparent 50%);
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kconnect-red), var(--kconnect-blue), var(--kconnect-red));
}

.about-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kconnect-red), var(--kconnect-blue), var(--kconnect-red));
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(227, 6, 19, 0.15);
    border: 1px solid rgba(227, 6, 19, 0.4);
    border-radius: 40px;
    margin-bottom: 32px;
}

.about-cta-badge svg {
    width: 20px;
    height: 20px;
    color: var(--kconnect-red);
}

.about-cta-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--kconnect-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-cta-title span {
    background: linear-gradient(135deg, var(--kconnect-red) 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.about-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--kconnect-red) 0%, #ff4d4d 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(227, 6, 19, 0.4);
}

.about-cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(227, 6, 19, 0.5);
}

.about-cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.about-cta-btn-primary:hover svg {
    transform: translateX(4px);
}

.about-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 60px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.about-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(227, 6, 19, 0.5);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--kconnect-dark) 0%, #0a1628 50%, var(--kconnect-dark) 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(227, 6, 19, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-glow-1 {
    left: -100px;
    top: -100px;
    background: var(--kconnect-blue);
    animation: pulse-glow 4s ease-in-out infinite;
}

.cta-glow-2 {
    right: -100px;
    bottom: -100px;
    background: var(--kconnect-red);
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kconnect-blue) 0%, var(--kconnect-red) 100%);
    border-radius: 24px;
    animation: float 3s ease-in-out infinite;
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

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

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-title span {
    background: linear-gradient(135deg, var(--kconnect-red) 0%, var(--electric-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--kconnect-red) 0%, #ff4757 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(227, 6, 19, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(227, 6, 19, 0.5);
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}

.cta-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--electric-green);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(31, 38, 135, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    background: #f8f9fa;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--electric-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 255, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-blue);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(10, 17, 40, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(10, 17, 40, 0.4);
}

.form-submit:active {
    transform: translateY(-1px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.05) 0%, rgba(10, 17, 40, 0.1) 100%);
    color: var(--kconnect-blue);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item-title {
    font-weight: 700;
    color: var(--kconnect-blue);
    margin-bottom: 4px;
}

.contact-item-text {
    color: #6b7280;
    font-size: 14px;
}

/* Map */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    padding-top: 100px;
    padding-bottom: 48px;
    background: var(--kconnect-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-brand span {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: white;
}

.footer-brand span span {
    color: var(--electric-green);
}

.footer-desc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric-green);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-form {
    position: relative;
}

.footer-form input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.footer-form input:focus {
    border-color: var(--electric-green);
    background: rgba(255, 255, 255, 0.08);
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background: var(--gradient-green);
    color: var(--kconnect-blue);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
}

.footer-bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
}

.chatbot-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(10, 17, 40, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
}

.chatbot-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-green);
    color: var(--kconnect-blue);
    box-shadow: 0 12px 50px rgba(0, 255, 0, 0.4);
}

.chatbot-btn svg {
    width: 28px;
    height: 28px;
}

.chatbot-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--kconnect-red);
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s ease infinite;
}

.chatbot-window {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 56px);
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-height: 550px;
    flex-direction: column;
}

.chatbot-window.open {
    display: flex;
    animation: fadeInUp 0.4s ease forwards;
}

.chatbot-header {
    padding: 24px;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chatbot-header-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header-logo img {
    width: 28px;
    height: auto;
    filter: brightness(0) invert(1);
}

.chatbot-header-title {
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.chatbot-header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--electric-green);
    margin-top: 4px;
}

.chatbot-header-status span {
    width: 8px;
    height: 8px;
    background: var(--electric-green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.chatbot-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.chatbot-close svg {
    color: white;
    width: 18px;
    height: 18px;
}

.chatbot-body {
    flex: 1;
    padding: 24px;
    background: #f8f9fa;
    overflow-y: auto;
    min-height: 300px;
}

.chatbot-message {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.chatbot-message.bot {
    max-width: 85%;
}

.chatbot-message.user {
    align-items: flex-end;
    margin-left: auto;
}

.chatbot-bubble {
    padding: 16px 20px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.chatbot-message.user .chatbot-bubble {
    background: var(--gradient-blue);
    color: white;
    border-radius: 20px 20px 4px 20px;
    border: none;
}

.chatbot-message.bot .chatbot-bubble {
    border-radius: 20px 20px 20px 4px;
}

.chatbot-bubble-text {
    font-size: 14px;
    line-height: 1.6;
}

.chatbot-bubble-text strong {
    color: var(--kconnect-red);
}

.chatbot-message.user .chatbot-bubble-text strong {
    color: var(--electric-green);
}

.chatbot-meta {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 12px;
}

.chatbot-meta.user {
    margin-left: 0;
    margin-right: 12px;
    text-align: right;
}

.chatbot-header-logo {
    position: relative;
}

.chatbot-ai-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--kconnect-red) 0%, #ff4d4d 100%);
    border-radius: 10px;
    font-size: 8px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.4);
}

.chatbot-ai-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-ai 1.5s ease-in-out infinite;
}

@keyframes pulse-ai {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--kconnect-red);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

.chatbot-message.user .chatbot-bubble.user {
    background: var(--gradient-red);
}

.chatbot-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.chatbot-form {
    position: relative;
}

.chatbot-form input {
    width: 100%;
    padding: 14px 56px 14px 20px;
    border-radius: 14px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    background: #f8f9fa;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-form input:focus {
    border-color: var(--electric-green);
    background: white;
}

.chatbot-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-form button:hover {
    background: var(--gradient-green);
    color: var(--kconnect-blue);
}

.chatbot-form button svg {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
}

.chatbot-power {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-top: 12px;
    opacity: 0.6;
}

/* Animations */
@keyframes titleEnter {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes floatTag1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatTag2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes floatTag3 {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-50%) translateX(-10px) rotate(5deg); }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50px) translateX(-20px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-150px) translateX(10px);
        opacity: 0.5;
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes pulse {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

/* Utility Classes */
.text-center { text-align: center; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }
.py-32 { padding-top: 128px; padding-bottom: 128px; }
.pt-32 { padding-top: 128px; }
.pb-12 { padding-bottom: 48px; }
.bg-white { background: white; }
.bg-gray-50 { background: #f9f9f9; }
.text-white { color: white; }
.text-gray-500 { color: #6b7280; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
textarea { font-family: inherit; }

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 32px;
    }
    
    .contact-form {
        padding: 32px;
    }
}
