/* ========================================
   ThinkPulse Automation - Premium Styles
   ======================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --deep-blue: #0A1F44;
    --electric-blue: #2563EB;
    --cyan-glow: #06B6D4;
    --navy: #1E3A8A;

    /* Secondary Colors */
    --warm-orange: #F59E0B;
    --success-green: #10B981;
    --neutral-gray: #64748B;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%);
    --card-gradient: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
    --accent-gradient: linear-gradient(90deg, #06B6D4 0%, #2563EB 100%);
    --text-gradient: linear-gradient(90deg, #06B6D4 0%, #2563EB 50%, #06B6D4 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

.container-mine {
    width: 96%;
    margin: 0 auto;
    padding: 0px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--electric-blue);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: var(--transition-normal);
}

.skip-link:focus {
    top: 0;
}

/* Visually Hidden - Accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-accent);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    /*background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
    color: #fed101;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   SECTION TRANSITIONS - Smooth Gradients
   ======================================== */

/* Dark to Light Transition (e.g., Hero → Value Proposition) */
.section-transition--dark-to-light {
    position: relative;
}

.section-transition--dark-to-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg,
            #0A1F44 0%,
            #1E3A8A 20%,
            rgba(30, 58, 138, 0.8) 40%,
            rgba(30, 58, 138, 0.4) 60%,
            rgba(248, 250, 252, 0.6) 80%,
            #F8FAFC 100%);
    pointer-events: none;
    z-index: 1;
}

/* Light to Dark Transition (e.g., Value Proposition → How It Works) */
.section-transition--light-to-dark {
    position: relative;
}

.section-transition--light-to-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(248, 250, 252, 0.8) 20%,
            rgba(30, 58, 138, 0.2) 40%,
            rgba(30, 58, 138, 0.5) 60%,
            rgba(10, 31, 68, 0.8) 80%,
            #0A1F44 100%);
    pointer-events: none;
    z-index: 1;
}

/* Wave Transition - Dark to Light */
.wave-transition--dtl {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 10;
}

.wave-transition--dtl svg {
    width: 100%;
    height: 100%;
}

/* Wave Transition - Light to Dark */
.wave-transition--ltd {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 10;
}

.wave-transition--ltd svg {
    width: 100%;
    height: 100%;
}

/* Wave Dividers - Positioned at section edges */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Dark to Light Wave */
.wave-divider--dtl {
    bottom: -1px;
}

/* Light to Dark Wave */
.wave-divider--ltd {
    bottom: -1px;
}

/* Hero section needs positioning for wave */
.hero {
    position: relative;
    overflow: visible;
}

/* ========================================
   LIGHT SECTIONS - With Wave Divider Support
   ======================================== */

/* Value Proposition Section */
.value-section {
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: var(--light-gray);
    overflow: visible;
}

.value-section .container {
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: var(--light-gray);
    overflow: visible;
}

.about .container {
    position: relative;
    z-index: 2;
}

/* Products Section */
.products {
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: var(--light-gray);
    overflow: visible;
}

.products .container {
    position: relative;
    z-index: 2;
}

/* Demo Section */
.demo {
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: var(--light-gray);
    overflow: visible;
}

.demo .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   DARK SECTIONS - Edge Matching
   ======================================== */

/* Dark sections need overflow visible for proper wave alignment */
.hero,
.how-it-works,
.services-v2,
.testimonials,
.contact {
    position: relative;
    overflow: visible;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

/* Logo Images - Stack on top of each other */
.logo-img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Default Logo - visible when NOT scrolled */
.logo-default {
    opacity: 1;
    visibility: visible;
}

/* Sticky Logo - hidden by default, positioned absolutely to overlap */
.logo-sticky {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

/* When header is scrolled (sticky) - swap logos */
.header.scrolled .logo-default {
    opacity: 0;
    visibility: hidden;
}

.header.scrolled .logo-sticky {
    opacity: 1;
    visibility: visible;
}

/* Legacy logo-text styles (can be removed if not used elsewhere) */
.logo-text {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header:not(.scrolled) .logo-text {
    background: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--neutral-gray);
}

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

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--electric-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
}

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

.nav-cta {
    padding: 10px 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.header.scrolled .hamburger span {
    background: var(--deep-blue);
}

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

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

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

/* Mobile Menu */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition-normal);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 80px 32px 32px;
    z-index: 999;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 32px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--deep-blue);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--electric-blue);
    padding-left: 8px;
}

.mobile-cta {
    width: 100%;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-gradient);
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

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

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan-glow);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--cyan-glow);
    margin-bottom: 16px;
    min-height: 30px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.smart-home-illustration {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.home-shape svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(6, 182, 212, 0.3));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-blue);
    animation: float 3s ease-in-out infinite;
}

.floating-icon {
    font-size: 20px;
}

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

.card-2 {
    top: 40%;
    right: -15%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes float {

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

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

.wifi-signal {
    position: absolute;
    top: 20%;
    right: 20%;
}

.signal-wave {
    position: absolute;
    border: 2px solid var(--cyan-glow);
    border-radius: 50%;
    animation: signal 2s ease-out infinite;
}

.wave-1 {
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.wave-2 {
    width: 35px;
    height: 35px;
    top: -7.5px;
    left: -7.5px;
    animation-delay: 0.3s;
}

.wave-3 {
    width: 50px;
    height: 50px;
    top: -15px;
    left: -15px;
    animation-delay: 0.6s;
}

@keyframes signal {
    0% {
        opacity: 1;
        transform: scale(1);
    }

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}


/* ========================================
   STATS V2 - COMPLETELY NEW PREMIUM DESIGN
   ======================================== */
.stats-v2 {
    padding: 100px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Glass Overlay Panel - Dark Blue Glass */
.stats-v2::before {
    content: '';
    position: absolute;
    inset: 30px 40px;
    background: linear-gradient(145deg, rgba(10, 31, 68, 0.85), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(6, 182, 212, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: glassGlow 4s ease-in-out infinite alternate;
}

@keyframes glassGlow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(6, 182, 212, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 100px rgba(6, 182, 212, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

/* Background Container */
.stats-v2__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Circuit Board SVG */
.stats-v2__circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Animated Circuit Lines */
.stats-v2__circuit-line {
    stroke-dasharray: 20 10;
    animation: circuitFlow 3s linear infinite;
}

.stats-v2__circuit-line--delay1 {
    animation-delay: 0.5s;
}

.stats-v2__circuit-line--delay2 {
    animation-delay: 1s;
}

.stats-v2__circuit-line--delay3 {
    animation-delay: 1.5s;
}

@keyframes circuitFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -60;
    }
}

/* Pulsing Circuit Nodes */
.stats-v2__node {
    animation: nodePulse 2s ease-in-out infinite;
}

.stats-v2__node--delay1 {
    animation-delay: 0.3s;
}

.stats-v2__node--delay2 {
    animation-delay: 0.6s;
}

.stats-v2__node--delay3 {
    animation-delay: 0.9s;
}

@keyframes nodePulse {

    0%,
    100% {
        r: 5;
        opacity: 0.5;
    }

    50% {
        r: 8;
        opacity: 1;
    }
}

/* Floating IoT Icons Container */
.stats-v2__float-icons {
    position: absolute;
    inset: 0;
}

/* Individual Floating Icons */
.stats-v2__float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.stats-v2__float-icon--1 {
    top: 10%;
    left: 5%;
    animation: floatIcon1 15s ease-in-out infinite;
}

.stats-v2__float-icon--2 {
    top: 20%;
    right: 8%;
    animation: floatIcon2 18s ease-in-out infinite;
}

.stats-v2__float-icon--3 {
    bottom: 25%;
    left: 12%;
    animation: floatIcon3 20s ease-in-out infinite;
}

.stats-v2__float-icon--4 {
    top: 60%;
    right: 15%;
    animation: floatIcon4 16s ease-in-out infinite;
}

.stats-v2__float-icon--5 {
    bottom: 10%;
    left: 50%;
    animation: floatIcon5 22s ease-in-out infinite;
}

@keyframes floatIcon1 {

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

    25% {
        transform: translate(30px, 20px) rotate(10deg);
    }

    50% {
        transform: translate(10px, 40px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, 15px) rotate(5deg);
    }
}

@keyframes floatIcon2 {

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

    33% {
        transform: translate(-40px, 30px) rotate(-15deg);
    }

    66% {
        transform: translate(-20px, -20px) rotate(10deg);
    }
}

@keyframes floatIcon3 {

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

    50% {
        transform: translate(25px, -30px) scale(1.1);
    }
}

@keyframes floatIcon4 {

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

    50% {
        transform: translate(-35px, 25px) rotate(180deg);
    }
}

@keyframes floatIcon5 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(20px, -20px);
        opacity: 0.6;
    }
}

/* Stats Strip - Horizontal Layout */
.stats-v2__strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Individual Stat Item */
.stats-v2__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.4s ease;
}

.stats-v2__item:hover {
    transform: scale(1.08);
}

/* Circular Progress Ring */
.stats-v2__ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}

.stats-v2__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stats-v2__ring-bg {
    fill: none;
    stroke: rgba(6, 182, 212, 0.2);
    stroke-width: 10;
}

.stats-v2__ring-progress {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: calc(339.292 - (339.292 * var(--progress)) / 100);
    transition: stroke-dashoffset 1.5s ease;
    stroke: #06B6D4;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.8)) drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

/* Ring Content (Number) */
.stats-v2__ring-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-top: 42px;
}

.stats-v2__number {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.stats-v2__suffix {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    color: #06B6D4;
    margin-left: 2px;
}

/* Stat Info */
.stats-v2__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-v2__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.stats-v2__sublabel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animated Connectors */
.stats-v2__connector {
    display: flex;
    align-items: center;
    width: 80px;
    height: 2px;
    position: relative;
}

.stats-v2__connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
    position: relative;
    overflow: hidden;
}

.stats-v2__connector-line::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0% {
        left: -30px;
    }

    100% {
        left: 100%;
    }
}

.stats-v2__connector-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
        transform: translateX(-50%) scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(6, 182, 212, 1);
        transform: translateX(-50%) scale(1.3);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-v2__strip {
        gap: 20px;
    }

    .stats-v2__connector {
        display: none;
    }

    .stats-v2__ring {
        width: 100px;
        height: 100px;
    }

    .stats-v2__number {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .stats-v2__strip {
        flex-direction: column;
        gap: 30px;
    }

    .stats-v2 {
        padding: 60px 0;
    }

    .stats-v2__float-icon {
        display: none;
    }
}



/* ========================================
   HOW IT WORKS - Dark Flowchart Theme
   ======================================== */
.how-it-works {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0A1F44 0%, #0F172A 50%, #1E3A8A 100%);
    overflow: hidden;
}

/* Animated Background */
.hiw__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hiw__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hiw__glow--1 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 60%);
    animation: hiwGlow1 12s ease-in-out infinite;
}

.hiw__glow--2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
    animation: hiwGlow2 15s ease-in-out infinite;
}

@keyframes hiwGlow1 {

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

    50% {
        transform: translate(50px, 30px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes hiwGlow2 {

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

    50% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: 0.4;
    }
}

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

/* Header */
.hiw__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hiw__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #06B6D4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hiw__tag-icon {
    font-size: 16px;
}

.hiw__title {
    font-size: clamp(32px, 5vw, 48px);
    color: #FFFFFF;
    margin-bottom: 16px;
    font-weight: 700;
}

.hiw__title-glow {
    background: linear-gradient(90deg, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiw__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Flowchart Container */
.hiw__flowchart {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Steps */
.hiw__step {
    width: 100%;
}

/* Buildings Row */
.hiw__buildings-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hiw__building {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hiw__building-icon {
    width: 80px;
    height: 80px;
    color: #06B6D4;
    transition: all 0.3s ease;
}

.hiw__building:hover .hiw__building-icon {
    color: #8B5CF6;
    transform: scale(1.1);
}

.hiw__building-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hiw__connector-horizontal {
    width: 100px;
    height: 20px;
}

/* Vertical Connector */
.hiw__connector-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.hiw__connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #06B6D4, #8B5CF6);
    position: relative;
}

.hiw__connector-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
}

.hiw__connector-arrow {
    color: #8B5CF6;
    font-size: 14px;
    margin-top: -5px;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {

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

    50% {
        opacity: 0.5;
        transform: translateY(3px);
    }
}

/* Split Row (for OR options) */
.hiw__split-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Option Card */
.hiw__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.hiw__option:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.hiw__option-icon {
    width: 50px;
    height: 50px;
    color: #06B6D4;
}

.hiw__option-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.hiw__option-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* OR Badge */
.hiw__or-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

/* Device Card (Center) */
.hiw__step--device {
    display: flex;
    justify-content: center;
}

.hiw__device-card {
    position: relative;
    padding: 30px 50px;
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.4);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.hiw__device-card:hover {
    transform: scale(1.05);
    border-color: #06B6D4;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.hiw__device-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: devicePulse 3s ease-in-out infinite;
}

@keyframes devicePulse {

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

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

.hiw__device-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.hiw__device-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.hiw__device-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Mode Card */
.hiw__mode-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.hiw__mode-card:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.hiw__mode-icon {
    width: 50px;
    height: 50px;
    color: #06B6D4;
}

.hiw__mode-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.hiw__mode-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Control Card */
.hiw__control-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.hiw__control-card:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.hiw__control-icon {
    width: 48px;
    height: 48px;
    color: #06B6D4;
}

.hiw__control-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

/* App Card */
.hiw__step--app {
    display: flex;
    justify-content: center;
}

.hiw__app-card {
    padding: 30px 50px;
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.hiw__app-card:hover {
    border-color: #06B6D4;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.hiw__app-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
}

.hiw__app-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.hiw__app-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Platform Icons */
.hiw__platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hiw__platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    min-width: 70px;
    transition: all 0.3s ease;
}

.hiw__platform:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-3px);
}

.hiw__platform-icon {
    font-size: 24px;
}

.hiw__platform span:last-child {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .hiw__buildings-row {
        flex-direction: column;
        gap: 20px;
    }

    .hiw__connector-horizontal {
        transform: rotate(90deg);
        width: 60px;
    }

    .hiw__split-row {
        flex-direction: column;
        gap: 20px;
    }

    .hiw__or-badge {
        transform: rotate(90deg);
    }

    .hiw__device-card,
    .hiw__app-card {
        padding: 24px;
    }

    .hiw__platforms {
        gap: 10px;
    }
}

/* ========================================
   SERVICES V2 - DARK THEME SECTION
   ======================================== */
.services-v2 {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%);
    overflow: hidden;
}

/* Animated Grid Background (like hero) */
.services-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

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

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles */
.services-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(6, 182, 212, 0.8) 50%, transparent 50%),
        radial-gradient(2px 2px at 30% 60%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(3px 3px at 50% 30%, rgba(6, 182, 212, 0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 80%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 90% 40%, rgba(6, 182, 212, 0.6) 50%, transparent 50%),
        radial-gradient(3px 3px at 15% 90%, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 85% 10%, rgba(6, 182, 212, 0.5) 50%, transparent 50%);
    animation: particlesFloat 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

/* Floating Orbs Background */
.services-v2__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.services-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.services-v2__orb--1 {
    width: 600px;
    height: 600px;
    top: -250px;
    left: -150px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.5), transparent 60%);
    animation: orbPulse1 8s ease-in-out infinite;
}

.services-v2__orb--2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 60%);
    animation: orbPulse2 10s ease-in-out infinite;
}

.services-v2__orb--3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 60%);
    animation: orbPulse3 12s ease-in-out infinite;
}

@keyframes orbPulse1 {

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

    50% {
        transform: translate(50px, 30px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes orbPulse2 {

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

    50% {
        transform: translate(-40px, -20px) scale(1.15);
        opacity: 0.45;
    }
}

@keyframes orbPulse3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.35;
    }
}

/* Header */
.services-v2__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-v2__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06B6D4;
    margin-bottom: 24px;
}

.services-v2__tag-dot {
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #06B6D4;
}

@keyframes dotPulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.services-v2__title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.1;
}

.services-v2__title-glow {
    background: linear-gradient(90deg, #06B6D4, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-v2__title-glow::after {
    content: 'Solutions';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #06B6D4, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
}

.services-v2__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.services-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Featured Card Spans 2 Rows */
.services-v2__card--featured {
    grid-row: span 2;
}

/* Card Base Styles */
.services-v2__card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
}

/* Card Glow Effect */
.services-v2__card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Animated Border */
.services-v2__card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.7), rgba(139, 92, 246, 0.7), rgba(6, 182, 212, 0.7));
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effects */
.services-v2__card:hover {
    transform: translateY(-12px);
    border-color: transparent;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow:
        0 30px 70px rgba(6, 182, 212, 0.25),
        0 15px 40px rgba(139, 92, 246, 0.15),
        0 0 1px rgba(255, 255, 255, 0.6);
}

.services-v2__card:hover .services-v2__card-glow {
    opacity: 1;
}

.services-v2__card:hover::before {
    opacity: 1;
    animation: neonBorderFlow 3s linear infinite;
}

@keyframes neonBorderFlow {
    0% {
        background-position: 0% 50%;
    }

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

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

/* Card Content */
.services-v2__card-content {
    position: relative;
    z-index: 1;
}

/* Icon Wrapper */
.services-v2__icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.services-v2__icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(139, 92, 246, 0.25));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

/* Icon Ring Animation */
.services-v2__icon-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-top-color: #06B6D4;
    border-bottom-color: #8B5CF6;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-v2__card:hover .services-v2__icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(139, 92, 246, 0.4));
}

.services-v2__card:hover .services-v2__icon-ring {
    opacity: 1;
    animation: ringRotate 3s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Card Title */
.services-v2__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    /*color: rgba(255, 255, 255, 0.95);*/
    color: #fed101;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.services-v2__card:hover .services-v2__card-title {
    color: #FFFFFF;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(6, 182, 212, 0.8),
        0 0 40px rgba(6, 182, 212, 0.5);
}

/* Card Description */
.services-v2__card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.services-v2__card:hover .services-v2__card-desc {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Featured Card Specific */
.services-v2__card--featured {
    display: flex;
    flex-direction: column;
}

.services-v2__card--featured .services-v2__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-v2__card--featured .services-v2__card-desc {
    margin-bottom: 24px;
}

/* Features List */
.services-v2__features {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.services-v2__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.services-v2__features li span {
    color: #06B6D4;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-v2__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-v2__card--featured {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-v2__grid {
        grid-template-columns: 1fr;
    }

    .services-v2__card--featured {
        grid-column: span 1;
    }

    .services-v2 {
        padding: 60px 0;
    }
}

/* ========================================
   TESTIMONIALS SECTION - Premium Dark Theme
   ======================================== */
.testimonials {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0F172A 0%, #1E3A8A 50%, #0A1F44 100%);
    overflow: hidden;
}

/* Animated Background */
.testimonials__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.testimonials__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.testimonials__glow--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 60%);
    animation: testimonialGlow1 10s ease-in-out infinite;
}

.testimonials__glow--2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 60%);
    animation: testimonialGlow2 12s ease-in-out infinite;
}

@keyframes testimonialGlow1 {

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

    50% {
        transform: translate(80px, 50px) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes testimonialGlow2 {

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

    50% {
        transform: translate(-60px, -40px) scale(1.15);
        opacity: 0.4;
    }
}

.testimonials__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

/* Header */
.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #06B6D4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.testimonials__tag-icon {
    font-size: 16px;
}

.testimonials__title {
    font-size: clamp(32px, 5vw, 48px);
    color: #FFFFFF;
    margin-bottom: 16px;
    font-weight: 700;
}

.testimonials__title-glow {
    background: linear-gradient(90deg, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.testimonials__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.testimonials__carousel {
    position: relative;
    z-index: 1;
}

.testimonials__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Testimonial Card */
.testimonials__card {
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonials__card-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Gradient Border Effect */
.testimonials__card-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(139, 92, 246, 0.5), rgba(6, 182, 212, 0.5));
    background-size: 200% 200%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials__card:hover .testimonials__card-inner {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonials__card:hover .testimonials__card-inner::before {
    opacity: 1;
    animation: borderGradient 3s linear infinite;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

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

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

/* Quote Icon */
.testimonials__quote-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.testimonials__card:hover .testimonials__quote-icon {
    color: rgba(6, 182, 212, 0.7);
    transform: scale(1.1);
}

/* Stars */
.testimonials__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonials__star {
    color: #F59E0B;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Testimonial Text */
.testimonials__text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    flex-grow: 1;
    font-style: italic;
}

/* Author Section */
.testimonials__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials__avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.testimonials__author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonials__name {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    font-style: normal;
}

.testimonials__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials__location svg {
    color: #06B6D4;
}

/* Carousel Navigation */
.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

.testimonials__nav-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
    transform: scale(1.1);
}

.testimonials__nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonials__dots {
    display: flex;
    gap: 10px;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.testimonials__dot--active {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .testimonials {
        padding: 60px 0;
    }

    .testimonials__card-inner {
        padding: 24px;
    }
}

/* ========================================
   VALUE PROPOSITION SECTION
   ======================================== */
.value-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

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

.value-block:last-child {
    margin-bottom: 0;
}

.value-block.reverse {
    direction: rtl;
}

.value-block.reverse>* {
    direction: ltr;
}

.value-image {
    display: flex;
    justify-content: center;
}

.value-illustration {
    width: 100%;
    max-width: 350px;
    padding: 40px;
    background: var(--hero-gradient);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.value-illustration svg {
    width: 100%;
    height: auto;
}

.value-title {
    font-size: 32px;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 17px;
    color: var(--neutral-gray);
    margin-bottom: 24px;
}

.value-features {
    list-style: none;
}

.value-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--deep-blue);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* ========================================
   ABOUT SECTION - Ultra Premium
   ======================================== */
.about {
    padding: var(--section-padding) 0;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
}

/* Animated Mesh Gradient Background */
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(37, 99, 235, 0.06) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.04) 0px, transparent 50%);
    filter: blur(40px);
    animation: meshFlow 12s ease-in-out infinite;
}

@keyframes meshFlow {

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

    50% {
        transform: scale(1.05) rotate(3deg);
    }
}

/* Geometric Pattern */
.about::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(6, 182, 212, 0.3) 35px, rgba(6, 182, 212, 0.3) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(37, 99, 235, 0.3) 35px, rgba(37, 99, 235, 0.3) 36px);
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-intro {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.about-intro p {
    font-size: 1.15rem;
    color: var(--neutral-gray);
    line-height: 1.9;
}

/* Premium Vision/Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 70px;
    perspective: 1000px;
}

.vm-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.85) 100%);
    padding: 48px 40px;
    border-radius: 28px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(6, 182, 212, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Gradient Border on Hover */
.vm-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cyan-glow), var(--electric-blue), var(--cyan-glow));
    background-size: 200% 200%;
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    animation: borderGradient 3s linear infinite;
    transition: opacity 0.5s ease;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

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

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

.vm-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(6, 182, 212, 0.15);
}

.vm-card:hover::before {
    opacity: 0.8;
}

/* 3D Rotating Icon Container */
.vm-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    box-shadow:
        0 16px 40px rgba(6, 182, 212, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.8);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Rotating Ring Effect */
.vm-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid transparent;
    border-top-color: var(--cyan-glow);
    border-bottom-color: var(--electric-blue);
    border-radius: 50%;
    animation: iconRingRotate 4s linear infinite;
}

.vm-icon::after {
    content: '';
    position: absolute;
    inset: -18px;
    border: 1px solid transparent;
    border-left-color: rgba(6, 182, 212, 0.3);
    border-right-color: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: iconRingRotate 6s linear infinite reverse;
}

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

    to {
        transform: rotate(360deg);
    }
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(8deg);
}

.vm-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #0A1F44, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Premium Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03), rgba(37, 99, 235, 0.03));
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
}

/* Rotating Glow Effect */
.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

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

    to {
        transform: rotate(360deg);
    }
}

.why-title {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.why-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.25);
}

.why-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(37, 99, 235, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Icon Pulse Effect */
.why-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.08));
    border-radius: 50%;
    animation: iconBgPulse 3s ease-in-out infinite;
}

.why-item:hover .why-icon {
    transform: scale(1.15) rotate(10deg);
}

.why-item span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-blue);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.product-showcase {
    display: flex;
    justify-content: center;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    position: relative;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 16px;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-image {
    background: var(--light-gray);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
}

.product-image svg {
    width: 200px;
    height: 250px;
    transition: var(--transition-normal);
}

.product-card:hover .product-image svg {
    transform: scale(1.05);
}

.product-info {
    padding: 32px;
    text-align: center;
}

.product-name {
    font-size: 28px;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.product-code {
    font-size: 15px;
    color: var(--neutral-gray);
    margin-bottom: 24px;
}

.product-specs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    list-style: none;
}

.product-specs li {
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--deep-blue);
}

/* ========================================
   DEMO SECTION
   ======================================== */
.demo {
    padding: var(--section-padding) 0;
    background: var(--hero-gradient);
}

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

.demo-content {
    color: var(--white);
}

.demo-content .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan-glow);
}

.demo-content .section-title {
    color: var(--white);
}

.demo-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.demo-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--white);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
}

/* Demo Form */
.demo-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--deep-blue);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--neutral-gray);
    pointer-events: none;
    transition: all var(--transition-fast);
    background: var(--white);
    padding: 0 4px;
}

.form-group textarea~label {
    top: 20px;
    transform: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group select:valid~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: 0;
    font-size: 13px;
    color: var(--electric-blue);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.error-msg {
    display: none;
    font-size: 13px;
    color: #EF4444;
    margin-top: 6px;
}

.form-group.error input,
.form-group.error select {
    border-color: #EF4444;
}

.form-group.error .error-msg {
    display: block;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

#submitBtn.loading .btn-text {
    display: none;
}

#submitBtn.loading .btn-loader {
    display: block;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success.show+.demo-form {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

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

.form-success h3 {
    font-size: 28px;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--neutral-gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--card-gradient);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-image: var(--accent-gradient) 1;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 15px;
    color: var(--neutral-gray);
    line-height: 1.8;
}

.contact-card a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--cyan-glow);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--deep-blue);
    padding: 60px 0 24px;
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--cyan-glow);
}

.footer-contact p {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.made-in {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.align-cen {
    text-align: center;
    margin: 4rem 0px;
}

/* Stagger children */
.features-grid .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.features-grid .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.features-grid .feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.features-grid .feature-card:nth-child(6) {
    transition-delay: 0.6s;
}

.stats-grid .stat-card:nth-child(1) {
    transition-delay: 0.1s;
}

.stats-grid .stat-card:nth-child(2) {
    transition-delay: 0.2s;
}

.stats-grid .stat-card:nth-child(3) {
    transition-delay: 0.3s;
}

.stats-grid .stat-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-badges {
        justify-content: center;
    }

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

    .hero-cta {
        justify-content: center;
    }

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

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

    .value-block.reverse {
        direction: ltr;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        gap: 24px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .floating-card {
        display: none;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-suffix {
        font-size: 24px;
    }

    .demo-form-wrapper {
        padding: 24px;
    }

    .why-choose {
        padding: 40px 24px;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }

    /* Premium Section Mobile Optimizations */
    .feature-card {
        padding: 32px 24px 28px;
    }

    .feature-icon-wrap {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .vm-card {
        padding: 36px 28px;
    }

    .vm-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .why-item {
        padding: 24px 16px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    /* Reduce animations on mobile for performance */
    .features::before,
    .features::after,
    .about::before,
    .about::after,
    .vm-icon::before,
    .vm-icon::after,
    .why-choose::before {
        animation: none;
    }

    .vm-icon::before,
    .vm-icon::after {
        display: none;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--white);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.faq__item {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    margin: 1rem 0;
}

.faq__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.faq__header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-blue);
    transition: color 0.3s ease;
}

.faq__header:hover {
    color: var(--electric-blue);
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
    background: var(--electric-blue);
}

.faq__content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq__body {
    padding: 0 24px 24px;
    color: var(--neutral-gray);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   CONTACT SECTION - converted to Dark Theme
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--deep-blue);
    /* Dark Background */
    position: relative;
    overflow: hidden;
}

/* Add a subtle background pattern/glow for the dark theme */
.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    pointer-events: none;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan-glow);
}

/* Update Contact Cards for Dark Theme */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism style */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-image: var(--accent-gradient) 1;
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--white);
    /* White text for titles */
    margin-bottom: 16px;
}

.contact-card p,
.contact-card address {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    /* Lighter gray for text */
    line-height: 1.8;
}

.contact-card a {
    color: var(--cyan-glow);
    /* Cyan for links */
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ========================================
   CLIENTS / PARTNER LOGO STRIP
   ======================================== */
.clients-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.clients-section .section-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--neutral-gray);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.clients-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    align-items: center;
    gap: 60px;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-gray);
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    gap: 10px;
}

.client-logo:hover {
    opacity: 1;
    color: var(--deep-blue);
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* ============================================
   ABOUT SECTION - Ultra Premium Redesign
   ============================================ */

/* Section Base */
.about-premium {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

/* Background Mesh Gradient */
.about-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(37, 99, 235, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.06) 0px, transparent 50%);
    filter: blur(40px);
    animation: meshFlow 10s ease-in-out infinite;
}

@keyframes meshFlow {

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

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Geometric Pattern */
.about-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(6, 182, 212, 0.3) 35px,
            rgba(6, 182, 212, 0.3) 36px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(37, 99, 235, 0.3) 35px,
            rgba(37, 99, 235, 0.3) 36px);
}

/* Floating 3D Cubes */
.floating-cube {
    position: absolute;
    width: 80px;
    height: 80px;
    transform-style: preserve-3d;
    animation: cubeFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.cube-face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.08),
            rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.15);
    backdrop-filter: blur(10px);
}

.cube-face-front {
    transform: rotateY(0deg) translateZ(40px);
}

.cube-face-back {
    transform: rotateY(180deg) translateZ(40px);
}

.cube-face-right {
    transform: rotateY(90deg) translateZ(40px);
}

.cube-face-left {
    transform: rotateY(-90deg) translateZ(40px);
}

.cube-face-top {
    transform: rotateX(90deg) translateZ(40px);
}

.cube-face-bottom {
    transform: rotateX(-90deg) translateZ(40px);
}

@keyframes cubeFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    }

    33% {
        transform: translate3d(80px, -40px, 80px) rotateX(120deg) rotateY(120deg);
    }

    66% {
        transform: translate3d(-80px, 40px, -80px) rotateX(240deg) rotateY(240deg);
    }
}

.cube-1 {
    top: 10%;
    right: 5%;
}

.cube-2 {
    bottom: 15%;
    left: 8%;
    animation-delay: -10s;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.about-tag .tag-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.about-tag2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #FFF;
    color: #000;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.about-tag2 .tag-dot2 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

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

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.about-tag .tag-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0A1F44;
    text-transform: uppercase;
}

.about-tag .tag-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: tagShine 3s ease-in-out infinite;
}

.about-tag2 .tag-text2 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0A1F44;
    text-transform: uppercase;
}

.about-tag2 .tag-glow2 {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: tagShine 3s ease-in-out infinite;
}

@keyframes tagShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.about-title .title-line:nth-child(1) {
    color: #0A1F44;
}

.about-title .title-line:nth-child(2) {
    /* gradient-text-animated handles this */
}

.about-title2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-title2 .title-line2 {
    display: block;
}

.about-title2 .title-line2:nth-child(1) {
    color: #FFF;
}

.about-title2 .title-line2:nth-child(2) {
    /* gradient-text-animated handles this */
    color: #FF0;
}


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

.about-title .gradient-text-animated {
    background: linear-gradient(90deg,
            #06B6D4 0%, #2563EB 25%, #06B6D4 50%, #2563EB 75%, #06B6D4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

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

.about-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Company Timeline */
.company-timeline {
    position: relative;
    padding: 60px 0;
    margin: 60px 0;
    z-index: 2;
}

.timeline-track {
    position: relative;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(6, 182, 212, 0.2),
            rgba(37, 99, 235, 0.2));
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #06B6D4, #2563EB);
    border-radius: 2px;
    width: 0%;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.company-timeline.animated .timeline-progress {
    animation: timelineProgress 2s ease-out forwards;
}

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

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

.milestone {
    position: relative;
    flex: 1;
    text-align: center;
}

.milestone-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
    border: 3px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.milestone.active .milestone-dot,
.milestone:hover .milestone-dot {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-color: transparent;
    transform: scale(1.3);
    box-shadow:
        0 0 0 8px rgba(6, 182, 212, 0.1),
        0 8px 24px rgba(6, 182, 212, 0.3);
}

.milestone.active .milestone-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid #06B6D4;
    border-radius: 50%;
    animation: milestonePulse 2s ease-out infinite;
}

@keyframes milestonePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

.milestone-content {
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.company-timeline.animated .milestone-content {
    animation: milestoneReveal 0.6s ease-out forwards;
}

.company-timeline.animated .milestone:nth-child(1) .milestone-content {
    animation-delay: 0.3s;
}

.company-timeline.animated .milestone:nth-child(2) .milestone-content {
    animation-delay: 0.5s;
}

.company-timeline.animated .milestone:nth-child(3) .milestone-content {
    animation-delay: 0.7s;
}

.company-timeline.animated .milestone:nth-child(4) .milestone-content {
    animation-delay: 0.9s;
}

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

.milestone-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 4px;
}

.milestone-title-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 8px;
}

.milestone-desc {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.4;
}

/* Vision/Mission Cards Container */
.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin: 60px 0;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

/* Vision/Mission Card */
.vision-mission-card {
    position: relative;
    padding: 48px 40px;
    border-radius: 32px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(40px);
}

.vision-mission-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vision-mission-card:hover {
    transform: translateY(-16px) rotateX(5deg) scale(1.02);
}

/* Glass Morphism Background */
.card-glass-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(6, 182, 212, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(6, 182, 212, 0.1);
    border-radius: 32px;
}

/* Gradient Border Animation */
.vision-mission-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #06B6D4, #2563EB, #06B6D4);
    background-size: 200% 200%;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    animation: borderGradient 3s linear infinite;
}

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

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

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

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

/* 3D Icon with Rotating Rings */
.card-icon-3d {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    transform-style: preserve-3d;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid;
    border-radius: 50%;
    border-color: rgba(6, 182, 212, 0.3) transparent rgba(37, 99, 235, 0.3) transparent;
}

.ring-1 {
    animation: ringRotate1 4s linear infinite;
    transform: rotateX(60deg);
}

.ring-2 {
    animation: ringRotate2 5s linear infinite;
    transform: rotateY(60deg);
}

.ring-3 {
    animation: ringRotate3 6s linear infinite;
    transform: rotateX(30deg) rotateY(30deg);
}

@keyframes ringRotate1 {
    from {
        transform: rotateX(60deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes ringRotate2 {
    from {
        transform: rotateY(60deg) rotateZ(0deg);
    }

    to {
        transform: rotateY(60deg) rotateZ(360deg);
    }
}

@keyframes ringRotate3 {
    from {
        transform: rotateX(30deg) rotateY(30deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(30deg) rotateY(30deg) rotateZ(360deg);
    }
}

.icon-core {
    position: absolute;
    inset: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.1),
            rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    box-shadow:
        0 20px 40px rgba(6, 182, 212, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.8);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vision-mission-card:hover .icon-core {
    transform: scale(1.1) rotate(10deg);
}

/* Card Title */
.card-title-large {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0A1F44, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Card Text */
.card-text-premium {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

/* Highlights */
.card-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.05),
            rgba(37, 99, 235, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.vision-mission-card:hover .highlight-item {
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.1),
            rgba(37, 99, 235, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateX(8px);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 0.95rem;
    color: #0A1F44;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-premium {
    margin: 60px 0;
    padding: 60px;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.02),
            rgba(37, 99, 235, 0.02));
    border-radius: 32px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.why-choose-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(6, 182, 212, 0.08) 0%,
            transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    color: #0A1F44;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-item-premium {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
}

.why-item-premium.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item-premium:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.why-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.why-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.15),
            rgba(37, 99, 235, 0.15));
    border-radius: 50%;
    animation: iconBgPulse 3s ease-in-out infinite;
}

@keyframes iconBgPulse {

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

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

.why-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-item-premium:hover .why-icon {
    transform: scale(1.2) rotate(10deg);
}

.why-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0A1F44;
}

.why-item-desc {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 767px) {
    .about-premium {
        padding: 48px 0;
    }

    .timeline-milestones {
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }

    .timeline-track {
        width: 4px;
        height: 100%;
        position: absolute;
        left: 12px;
        top: 0;
    }

    .milestone {
        text-align: left;
        padding-left: 50px;
    }

    .milestone-dot {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vision-mission-card {
        padding: 36px 28px;
    }

    .card-icon-3d {
        width: 100px;
        height: 100px;
    }

    .icon-core {
        font-size: 2.5rem;
        inset: 12px;
    }

    .card-title-large {
        font-size: 1.5rem;
    }

    .why-choose-premium {
        padding: 40px 24px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .vision-mission-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .floating-cube {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility */
.vision-mission-card:focus-within,
.why-item-premium:focus-within {
    outline: 2px solid #06B6D4;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration */
.vision-mission-card,
.card-icon-3d,
.icon-ring,
.floating-cube {
    will-change: transform;
}

/* ============================================
   WHY CHOOSE SECTION - Standalone Wrapper
   ============================================ */
.why-choose-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.why-choose-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.06) 0px, transparent 50%);
    filter: blur(40px);
    animation: meshFlow 10s ease-in-out infinite;
}

.why-choose-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(6, 182, 212, 0.2) 35px,
            rgba(6, 182, 212, 0.2) 36px);
}

/* ============================================
   VALUE PROPOSITION SECTION - Premium Redesign
   ============================================ */

/* Section Base */
.value-premium {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

/* Background Mesh Gradient */
.value-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(37, 99, 235, 0.06) 0px, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.04) 0px, transparent 40%);
    filter: blur(60px);
    animation: valueMeshFlow 12s ease-in-out infinite;
}

@keyframes valueMeshFlow {

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

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

/* Geometric Pattern */
.value-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(6, 182, 212, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(37, 99, 235, 0.4) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section Header */
.value-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.value-tag .tag-icon {
    font-size: 1.2rem;
}

.value-tag .tag-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #0A1F44;
    text-transform: uppercase;
}

.value-tag .tag-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: tagShine 3s ease-in-out infinite;
}

.value-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0A1F44;
}

.value-main-title .title-highlight {
    display: block;
    background: linear-gradient(90deg, #06B6D4 0%, #2563EB 50%, #06B6D4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
}

.value-main-subtitle {
    font-size: 1.15rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Grid */
.value-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Product Card */
.value-product-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.value-product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-product-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
}

/* Card Glass Background */
.value-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(6, 182, 212, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-radius: 32px;
}

/* Gradient Border on Hover */
.value-product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #06B6D4, #2563EB, #F59E0B, #06B6D4);
    background-size: 300% 300%;
    border-radius: 34px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: borderGradientShift 4s linear infinite;
}

.value-product-card:hover::before {
    opacity: 1;
}

@keyframes borderGradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

/* Card Content */
.value-card-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
}

/* Illustration Container */
.value-illustration-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
}

/* Illustration Glow Ring */
.illustration-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(6, 182, 212, 0.15) 0%,
            transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

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

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

/* SVG Container */
.value-svg-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.08),
            rgba(37, 99, 235, 0.08));
    border-radius: 50%;
    box-shadow:
        0 20px 40px rgba(6, 182, 212, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-product-card:hover .value-svg-container {
    transform: scale(1.08) rotate(5deg);
}

.value-svg-container svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 16px rgba(6, 182, 212, 0.3));
}

/* Light Bulb Animation */
.light-rays {
    animation: lightPulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes lightPulse {

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

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

/* Fan Blade Animation */
.fan-blades {
    animation: fanSpin 4s linear infinite;
    transform-origin: center;
}

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

    to {
        transform: rotate(360deg);
    }
}

.value-product-card:hover .fan-blades {
    animation-duration: 1s;
}

/* Card Title */
.value-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    background: linear-gradient(135deg, #0A1F44, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Description */
.value-card-desc {
    font-size: 1.05rem;
    color: #64748B;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Feature Pills Container */
.value-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Feature Pill */
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.08),
            rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 100px;
    font-size: 0.9rem;
    color: #0A1F44;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.feature-pill .pill-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-pill:hover .pill-icon {
    background: white;
    color: #2563EB;
}

/* Shine Effect */
.value-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.value-product-card:hover .value-card-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .value-products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin: 0 auto;
    }

    .value-card-content {
        padding: 40px 32px;
    }
}

@media (max-width: 639px) {
    .value-premium {
        padding: 60px 0;
    }

    .value-header {
        margin-bottom: 48px;
    }

    .value-main-title {
        font-size: 2rem;
    }

    .value-illustration-wrapper {
        width: 160px;
        height: 160px;
    }

    .value-svg-container svg {
        width: 90px;
        height: 90px;
    }

    .value-card-content {
        padding: 32px 24px;
    }

    .value-card-title {
        font-size: 1.5rem;
    }

    .feature-pill {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .value-product-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Accessibility */
.value-product-card:focus-within {
    outline: 2px solid #06B6D4;
    outline-offset: 4px;
}

/* Scroll Animation Initialization */
.value-product-card {
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-product-card:nth-child(2) {
    transition-delay: 0.15s;
}