/* ===== Root Variables ===== */
:root {
    --bg-primary: #050810;
    --bg-secondary: #0a0f1a;
    --bg-tertiary: #0f1629;

    --accent-green: #7cb342;
    --accent-green-light: #9ccc65;
    --accent-orange: #f5a623;
    --accent-orange-light: #ffb74d;
    --accent-blue: #4169e1;
    --accent-blue-light: #6495ed;
    --accent-purple: #8b5cf6;
    --accent-cyan: #22d3ee;
    --accent-pink: #ec4899;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.4);

    --gradient-primary: linear-gradient(135deg, var(--accent-green), var(--accent-orange));
    --gradient-secondary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-glow: linear-gradient(135deg, rgba(124, 179, 66, 0.5), rgba(245, 166, 35, 0.5));

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);

    --shadow-glow-green: 0 0 60px rgba(124, 179, 66, 0.4);
    --shadow-glow-orange: 0 0 60px rgba(245, 166, 35, 0.4);
    --shadow-glow-blue: 0 0 60px rgba(65, 105, 225, 0.4);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

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

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(124, 179, 66, 0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 40px rgba(124, 179, 66, 0.8)); }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--glass-bg);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loadProgress 2s ease-out forwards;
}

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

.loader-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== Custom Cursor (Disabled - using normal cursor) ===== */
.cursor, .cursor-follower {
    display: none;
}

body, body * {
    cursor: default;
}

a, button, [role="button"], input[type="submit"], .btn-primary, .btn-outline, .btn-nav, .contact-card, .feature-card, .industry-card, .solution-card {
    cursor: pointer;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo .logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.3), transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.logo:hover .logo-glow {
    opacity: 1;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

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

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.btn-nav {
    position: relative;
    padding: 12px 28px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
}

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

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-nav:hover .btn-shine {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-image: url('WhatsApp_Image_2026-01-31_at_7.05.55_PM-removebg-preview.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 179, 66, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(245, 166, 35, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 10% 60%, rgba(65, 105, 225, 0.1), transparent);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.bg-noise {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.4), transparent 60%);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.3), transparent 60%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.3), transparent 60%);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 60%);
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(124, 179, 66, 0.5), transparent);
    animation: beamMove 8s ease-in-out infinite;
}

.beam-1 { left: 20%; top: 0; animation-delay: 0s; }
.beam-2 { left: 50%; top: 0; animation-delay: 2s; }
.beam-3 { left: 80%; top: 0; animation-delay: 4s; }

@keyframes beamMove {
    0%, 100% { transform: translateY(-100%); opacity: 0; }
    50% { transform: translateY(100vh); opacity: 1; }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: -1px;
    background: var(--gradient-primary);
    border-radius: 50px;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.hero-badge:hover .badge-glow {
    opacity: 0.2;
}

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

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

/* Logo Animation */
.hero-logo-wrapper {
    margin-bottom: 24px;
}

.logo-container {
    position: relative;
    width: 140px;
    height: 140px;
}

.logo-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.ring-1 {
    inset: -10px;
    border-color: rgba(124, 179, 66, 0.3);
}

.ring-2 {
    inset: -25px;
    border-color: rgba(245, 166, 35, 0.2);
    animation-direction: reverse;
    animation-duration: 25s;
}

.ring-3 {
    inset: -40px;
    border-color: rgba(65, 105, 225, 0.15);
    animation-duration: 30s;
}

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

.logo-glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.4), transparent 60%);
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: logoFloat 6s ease-in-out infinite;
}

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

/* Title */
.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: flex;
}

.char {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: charReveal 0.8s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
    transform: translateY(50px);
    text-shadow: 0 0 60px rgba(124, 179, 66, 0.5);
}

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

/* Tagline */
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
}

.tagline-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.tagline-white {
    color: var(--text-secondary);
}

/* Feature Cards */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card[data-color="blue"] .feature-bg {
    background: linear-gradient(90deg, rgba(65, 105, 225, 0.1), transparent);
}

.feature-card[data-color="orange"] .feature-bg {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.1), transparent);
}

.feature-card[data-color="green"] .feature-bg {
    background: linear-gradient(90deg, rgba(124, 179, 66, 0.1), transparent);
}

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

.feature-card:hover .feature-bg {
    opacity: 1;
}

.feature-card[data-color="blue"]:hover { border-color: rgba(65, 105, 225, 0.5); }
.feature-card[data-color="orange"]:hover { border-color: rgba(245, 166, 35, 0.5); }
.feature-card[data-color="green"]:hover { border-color: rgba(124, 179, 66, 0.5); }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card[data-color="blue"] .feature-icon {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(65, 105, 225, 0.1));
    color: var(--accent-blue);
}

.feature-card[data-color="orange"] .feature-icon {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.1));
    color: var(--accent-orange);
}

.feature-card[data-color="green"] .feature-icon {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), rgba(124, 179, 66, 0.1));
    color: var(--accent-green);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.feature-card[data-color="blue"] .feature-title { color: var(--accent-blue); }
.feature-card[data-color="orange"] .feature-title { color: var(--accent-orange); }
.feature-card[data-color="green"] .feature-title { color: var(--accent-green); }

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-normal);
    color: var(--text-muted);
}

.feature-arrow svg {
    width: 20px;
    height: 20px;
}

.feature-card:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: 0;
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-icon svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-green);
}

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

.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-border {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-outline:hover {
    background: var(--glass-bg);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

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

.visual-container {
    position: relative;
    padding: 40px;
}

.visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(124, 179, 66, 0.2), transparent 60%);
    filter: blur(40px);
}

/* Dashboard */
.dashboard {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 22, 41, 0.9), rgba(10, 15, 26, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    animation: dashboardFloat 8s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.dashboard-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dashboard-body {
    padding: 24px;
}

.dashboard-chart {
    margin-bottom: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-header span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.chart-badge {
    padding: 4px 10px;
    background: rgba(124, 179, 66, 0.2);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}

.chart-bars .bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    animation: barGrow 1s ease forwards;
    animation-delay: var(--delay);
    transform-origin: bottom;
    transform: scaleY(0);
}

@keyframes barGrow {
    to { transform: scaleY(1); }
}

.dashboard-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    flex: 1;
    padding: 16px;
    background: var(--glass-bg);
    border-radius: 12px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.card-1 {
    top: 20px;
    right: 0;
    animation: float1 5s ease-in-out infinite;
}

.card-2 {
    bottom: 40%;
    left: -20px;
    animation: float2 6s ease-in-out infinite;
}

.card-3 {
    bottom: 20px;
    right: 20px;
    animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -15px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -10px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5px, -12px) rotate(1deg); }
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.green { background: linear-gradient(135deg, #7cb342, #5d9a2a); }
.card-icon.orange { background: linear-gradient(135deg, #f5a623, #e59400); }
.card-icon.blue { background: linear-gradient(135deg, #4169e1, #2850c8); }

.card-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
}

.card-label {
    font-size: 0.75rem;
    color: #666;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.line {
    fill: none;
    stroke: rgba(124, 179, 66, 0.3);
    stroke-width: 2;
    stroke-dasharray: 5 5;
    animation: lineFlow 2s linear infinite;
}

@keyframes lineFlow {
    to { stroke-dashoffset: -20; }
}

/* Hero Quote */
.hero-quote {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.quote-container {
    display: inline-block;
    padding: 30px 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
}

.quote-marks {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.hero-quote p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    font-style: italic;
}

.hero-quote .highlight {
    color: var(--accent-orange);
    font-weight: 600;
    font-style: normal;
}

/* Scroll Indicator - Removed */

/* ===== Marquee ===== */
.marquee-section {
    padding: 20px 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-muted);
}

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

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.gradient-text-light {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Problem Section ===== */
.problem-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e8e0f0 100%);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(107, 91, 149, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.problem-section .section-title {
    color: #1a1a2e;
}

.problem-section .section-desc {
    color: #666;
}

/* Comparison */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.scenario-card {
    position: relative;
    background: linear-gradient(145deg, #1a2744, #0f1629);
    border-radius: 24px;
    padding: 32px;
    color: white;
    overflow: hidden;
    transition: var(--transition-normal);
}

.scenario-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

.scenario-card.simple .scenario-glow {
    box-shadow: inset 0 0 60px rgba(124, 179, 66, 0.2);
}

.scenario-card.complex .scenario-glow {
    box-shadow: inset 0 0 60px rgba(245, 166, 35, 0.2);
}

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

.scenario-card:hover .scenario-glow {
    opacity: 1;
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.scenario-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scenario-card.simple .scenario-badge {
    background: rgba(124, 179, 66, 0.2);
    color: var(--accent-green);
}

.scenario-card.complex .scenario-badge {
    background: rgba(245, 166, 35, 0.2);
    color: var(--accent-orange);
}

.scenario-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.scenario-visual {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.truck-anim {
    animation: truckDrive 3s ease-in-out infinite;
}

@keyframes truckDrive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

.truck-svg {
    width: 100px;
}

.simple-route {
    display: flex;
    align-items: center;
}

.route-node {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    animation: nodePulse 2s ease-in-out infinite;
}

.route-node.start { background: var(--accent-green); }
.route-node.end { background: var(--accent-orange); }

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

.route-path {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
    border-radius: 2px;
}

.network-visual {
    width: 100%;
    height: 180px;
}

#networkCanvas {
    width: 100%;
    height: 100%;
}

.scenario-info {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.info-icon {
    font-size: 1.2rem;
}

.info-text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* VS Badge */
.vs-badge {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
}

.vs-badge span {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

/* Insights */
.insights-section {
    position: relative;
    z-index: 1;
}

.insights-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #6b5b95;
    margin-bottom: 40px;
}

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

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

.insight-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(107, 91, 149, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 91, 149, 0.2);
}

.insight-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(107, 91, 149, 0.08);
    line-height: 1;
}

.insight-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.insight-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: var(--transition-normal);
}

.insight-card:hover .icon-bg {
    transform: rotate(0deg) scale(1.1);
}

.insight-icon svg {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    color: white;
    margin: 22px;
}

.insight-card h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.insight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.insight-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.insight-card:hover .insight-line {
    transform: scaleX(1);
}

/* ===== Industries Section ===== */
.industries-section {
    padding: 120px 0;
    background: white;
}

.industries-section .section-title {
    color: #1a1a2e;
}

.industries-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-card {
    perspective: 1000px;
    height: 200px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.industry-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card-front {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(107, 91, 149, 0.1);
}

.card-back {
    background: var(--gradient-primary);
    transform: rotateY(180deg);
    color: white;
    text-align: center;
}

.card-back p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    color: #6b5b95;
}

.industry-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    text-align: center;
}

/* ===== Solutions Section ===== */
.solutions-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.solutions-bg {
    position: absolute;
    inset: 0;
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(124, 179, 66, 0.1), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(245, 166, 35, 0.1), transparent 50%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solution-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition-normal);
    overflow: hidden;
}

.solution-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(60px);
    transition: var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 179, 66, 0.3);
}

.solution-card:hover .solution-glow {
    opacity: 0.3;
    background: var(--color);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color), color-mix(in srgb, var(--color), black 20%));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

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

.solution-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-tags {
    display: flex;
    gap: 8px;
}

.solution-tags span {
    padding: 6px 12px;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-green);
}

/* ===== Experience Section ===== */
.experience-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.stars-container {
    position: absolute;
    inset: 0;
}

#stars, #stars2 {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
}

#stars {
    background: radial-gradient(1px 1px at 20px 30px, white, transparent),
                radial-gradient(1px 1px at 40px 70px, white, transparent),
                radial-gradient(1px 1px at 50px 160px, white, transparent),
                radial-gradient(1px 1px at 90px 40px, white, transparent),
                radial-gradient(1px 1px at 130px 80px, white, transparent),
                radial-gradient(1px 1px at 160px 120px, white, transparent);
    background-size: 200px 200px;
    animation: starsMove 100s linear infinite;
    opacity: 0.4;
}

#stars2 {
    background: radial-gradient(1px 1px at 150px 50px, white, transparent),
                radial-gradient(1px 1px at 180px 150px, white, transparent),
                radial-gradient(1px 1px at 50px 100px, white, transparent);
    background-size: 300px 300px;
    animation: starsMove 150s linear infinite;
    opacity: 0.2;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* Timeline */
.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-orange), var(--accent-blue));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: calc(50% - 50px);
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -60px;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    background: var(--glass-hover);
    transform: scale(1.02);
}

.exp-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.exp-badge.govt { background: rgba(124, 179, 66, 0.2); color: var(--accent-green); }
.exp-badge.intl { background: rgba(65, 105, 225, 0.2); color: var(--accent-blue); }
.exp-badge.fortune { background: rgba(245, 166, 35, 0.2); color: var(--accent-orange); }
.exp-badge.tech { background: rgba(139, 92, 246, 0.2); color: var(--accent-purple); }

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.exp-client {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.exp-stats {
    display: flex;
    gap: 20px;
}

.timeline-item:nth-child(odd) .exp-stats {
    justify-content: flex-end;
}

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

.exp-stat .stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-green);
}

.exp-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* KPI Showcase */
.kpi-showcase {
    text-align: center;
    padding: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.kpi-header h3 {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.kpi-header span {
    color: var(--accent-orange);
}

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

.kpi-card {
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.kpi-card:hover {
    background: var(--glass-hover);
    border-color: rgba(124, 179, 66, 0.3);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.kpi-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.kpi-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.kpi-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(124, 179, 66, 0.15), transparent 60%);
}

.contact-gradient-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(245, 166, 35, 0.15), transparent 60%);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info */
.contact-info {
    padding-right: 40px;
}

.contact-header {
    margin-bottom: 40px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 24px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.5); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(124, 179, 66, 0); }
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.contact-card:hover {
    background: var(--glass-hover);
    border-color: rgba(124, 179, 66, 0.3);
    transform: translateX(10px);
}

.contact-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon.email { background: linear-gradient(135deg, var(--accent-green), #5d9a2a); }
.card-icon.phone { background: linear-gradient(135deg, var(--accent-orange), #e59400); }
.card-icon.location { background: linear-gradient(135deg, var(--accent-blue), #2850c8); }

.contact-card .card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.contact-card .card-content {
    flex: 1;
}

.card-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.card-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.card-value:hover {
    color: var(--accent-green);
}

.card-value.secondary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

.card-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.card-arrow {
    font-size: 1.5rem;
    color: var(--text-dim);
    transition: var(--transition-normal);
}

.contact-card:hover .card-arrow {
    color: var(--accent-green);
    transform: translateX(5px);
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.stat-box:hover {
    border-color: rgba(124, 179, 66, 0.3);
}

.stat-box .stat-icon {
    font-size: 1.5rem;
}

.stat-box .stat-info {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
}

.stat-box .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
}

.stat-box .stat-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.stat-box .stat-label {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.form-container {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 48px;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
}

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

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

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-container {
    position: relative;
}

.input-container input,
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--glass-border);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.input-container input::placeholder,
.input-container textarea::placeholder {
    color: var(--text-dim);
}

.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(124, 179, 66, 0.05);
}

.input-focus {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.input-container input:focus ~ .input-focus,
.input-container select:focus ~ .input-focus,
.input-container textarea:focus ~ .input-focus {
    width: 100%;
    left: 0;
}

.input-container.select {
    position: relative;
}

.input-container select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

.select-arrow svg {
    width: 20px;
    height: 20px;
}

.input-container textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-normal);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-green);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-content .btn-icon svg {
    width: 22px;
    height: 22px;
    transition: var(--transition-normal);
}

.submit-btn:hover .btn-icon svg {
    transform: translate(5px, -5px);
}

.btn-loader, .btn-success {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.btn-loader svg {
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

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

.btn-success svg {
    width: 30px;
    height: 30px;
}

.submit-btn.loading .btn-content { opacity: 0; }
.submit-btn.loading .btn-loader { opacity: 1; }
.submit-btn.success .btn-content { opacity: 0; }
.submit-btn.success .btn-loader { opacity: 0; }
.submit-btn.success .btn-success { opacity: 1; }

/* Form Footer */
.form-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.social-link:hover svg {
    color: white;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heart {
    color: #e74c3c;
    animation: heartBeat 1.5s ease-in-out infinite;
}

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

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }

    .industries-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-logo-wrapper {
        display: flex;
        justify-content: center;
    }

    .hero-features {
        max-width: 500px;
        margin: 0 auto 40px;
    }

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

    .hero-stats {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-visual {
        display: none;
    }

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

    .vs-badge {
        margin: 0 auto;
    }

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

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

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

    .experience-timeline {
        padding-left: 40px;
    }

    .timeline-track {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -30px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .exp-stats {
        justify-content: flex-start;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-card {
        text-align: left;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 8, 16, 0.98);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-normal);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .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(7px, -6px);
    }

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

    .industry-card {
        height: 180px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        max-width: 100%;
    }

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

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

@media (max-width: 480px) {
    .char {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-arrow {
        display: none;
    }

    .form-container {
        padding: 32px 24px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
}

/* Hide cursor on mobile */
@media (hover: none) {
    .cursor, .cursor-follower {
        display: none;
    }
}
