/* ========================================
   SALKO INTEGRATED TECHNOLOGIES LLC
   Website Styles - Design System v1.0
   ======================================== */

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

/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
    /* Primary Colors */
    --primary-navy: #0A1F44;
    --primary-blue: #1E3A8A;

    /* Accent Colors */
    --electric-blue: #3B82F6;
    --cyber-cyan: #06B6D4;
    --tech-purple: #8B5CF6;

    /* Neutral Colors */
    --pure-white: #FFFFFF;
    --light-gray: #F8FAFC;
    --soft-gray: #F1F5F9;
    --medium-gray: #CBD5E1;
    --slate-gray: #64748B;
    --dark-gray: #334155;
    --deep-charcoal: #1E293B;

    /* Semantic Colors */
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    --info-blue: #3B82F6;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headings: 'Poppins', 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 8px 24px rgba(59, 130, 246, 0.3);

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

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-cubic: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max-width: 1280px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.75;
    color: var(--dark-gray);
    background-color: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Dot Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
}

/* Network Particle Container - Only in Hero Sections */
.hero-particle-canvas {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: var(--space-lg);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
}

.text-large {
    font-size: 1.125rem;
}

.text-small {
    font-size: 0.875rem;
}

.text-caption {
    font-size: 0.75rem;
    color: var(--slate-gray);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--light-gray);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-gray);
    text-align: center;
    max-width: 700px;
    margin: -40px auto 64px;
    line-height: 1.75;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--soft-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--electric-blue);
}

.nav-menu a.active {
    color: var(--electric-blue);
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: var(--transition-normal);
}

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

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: var(--pure-white);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 10px 30px;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-navy);
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--electric-blue);
    transform: translateX(4px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-white {
    background: var(--pure-white);
    color: var(--electric-blue);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION - ENHANCED
   ======================================== */

.hero {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 30%),
        linear-gradient(135deg, #07162F 0%, #0A1F44 45%, #12316B 100%);
    color: var(--pure-white);
    padding: 120px 0 56px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Compact Hero for Internal Pages */
.hero:not(:has(.hero-layout)):not(:has(.hero-new-split)) {
    min-height: auto;
    padding: 100px 0 60px;
}

.hero:not(:has(.hero-layout)):not(:has(.hero-new-split)) .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero:not(:has(.hero-layout)):not(:has(.hero-new-split)) h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--pure-white);
}

.hero:not(:has(.hero-layout)):not(:has(.hero-new-split)) p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    opacity: 0.9;
    margin-bottom: 0;
    color: var(--pure-white);
}

.hero:not(:has(.hero-layout)):not(:has(.hero-new-split)) .hero-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 20px;
    opacity: 0.7;
    color: var(--pure-white);
}

.hero:not(:has(.hero-layout)):not(:has(.hero-new-split)) .hero-cta {
    justify-content: center;
    margin-top: 24px;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient-animated {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(59, 130, 246, 0.22), transparent 0 32%),
        radial-gradient(circle at 82% 78%, rgba(6, 182, 212, 0.16), transparent 0 28%);
    opacity: 1;
    animation: heroGlowShift 14s ease-in-out infinite alternate;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 16, 38, 0.12) 0%, rgba(5, 16, 38, 0.42) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.18) 1px, transparent 1px);
    background-size: 68px 68px;
    z-index: 2;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35));
    opacity: 0.42;
    animation: gridDrift 14s linear infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.72;
}

@keyframes gridDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(34px, 20px, 0);
    }
}

@keyframes heroGlowShift {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.06) translate3d(12px, -10px, 0);
        opacity: 1;
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.35;
    z-index: 4;
}

.hero-glow-1 {
    width: 320px;
    height: 320px;
    top: 12%;
    right: 14%;
    background: rgba(59, 130, 246, 0.2);
    animation: heroOrbFloat 16s ease-in-out infinite;
}

.hero-glow-2 {
    width: 260px;
    height: 260px;
    bottom: 10%;
    left: 8%;
    background: rgba(6, 182, 212, 0.14);
    animation: heroOrbFloat 20s ease-in-out infinite reverse;
}

@keyframes heroOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(12px, -16px, 0);
    }
}

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

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content h4,
.hero-content h5,
.hero-content h6,
.hero-content p {
    color: var(--pure-white);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.7s ease 0.1s backwards;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

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

/* Hero Title */
.hero-title {
    font-size: clamp(2.7rem, 5.8vw, 4.75rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    text-shadow: none;
    max-width: 10.5ch;
    color: var(--pure-white);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.title-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #BFDBFE 45%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 100% 100%;
    animation: fadeInUp 0.8s ease 0.45s backwards;
    text-shadow: none;
}

.hero-description {
    font-size: clamp(1.06rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    margin-bottom: 20px;
    opacity: 0.92;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.55s backwards;
    color: rgba(226, 232, 240, 0.92);
    text-shadow: none;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: rgba(10, 31, 68, 0.28);
    border: 1px solid rgba(191, 219, 254, 0.16);
    color: rgba(226, 232, 240, 0.95);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-btn-1 {
    animation: fadeInUp 0.8s ease 1s both;
    animation-fill-mode: forwards;
}

.hero-btn-2 {
    animation: fadeInUp 0.8s ease 1.1s both;
    animation-fill-mode: forwards;
}

.hero-cta .btn {
    position: relative;
    overflow: visible;
    will-change: transform;
}

.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Enhanced button hover effects */
.hero-cta .btn:hover {
    transform: translateY(-2px);
}

.hero-cta .btn:active {
    transform: translateY(0);
}

.hero-panel {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.85s ease 0.6s backwards;
}

.hero-panel-shell {
    position: relative;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(191, 219, 254, 0.16);
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.22);
    backdrop-filter: blur(14px);
}

.hero-panel-shell::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(7, 22, 47, 0.7) 0%, rgba(10, 31, 68, 0.44) 100%);
    border: 1px solid rgba(191, 219, 254, 0.08);
    pointer-events: none;
}

.hero-panel-header,
.hero-panel-grid,
.hero-panel-metrics {
    position: relative;
    z-index: 1;
}

.hero-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.hero-panel-header h2 {
    color: var(--pure-white);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    margin-bottom: 0;
    max-width: 13ch;
}

.hero-panel-kicker {
    margin-bottom: 8px;
    color: rgba(148, 163, 184, 0.9);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-panel-status {
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.12);
    color: #DBEAFE;
    border: 1px solid rgba(96, 165, 250, 0.22);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-panel-card {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 219, 254, 0.12);
}

.hero-panel-label {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(191, 219, 254, 0.88);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-service-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-service-cluster span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(191, 219, 254, 0.14);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.76rem;
    line-height: 1.3;
}

.hero-metric {
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(191, 219, 254, 0.14);
}

.hero-panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.hero-metric-value {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.1;
}

.hero-metric-label {
    display: block;
    color: rgba(226, 232, 240, 0.84);
    font-size: 0.75rem;
    line-height: 1.45;
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Breadcrumb (for other pages) */
.hero-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: var(--pure-white);
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}

/* ========================================
   NEW HERO SECTION
   ======================================== */

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

.hero-new-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #0A1F44 100%);
}

.hero-new-background .hero-gradient-animated {
    animation: heroGlowShift 14s ease-in-out infinite alternate;
}

.hero-new-split {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

/* Left Side */
.hero-new-left {
    color: var(--pure-white);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: #06B6D4;
    animation: slideInFromTop 0.8s ease 0.1s backwards, badgeGlow 3s ease infinite;
}

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

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0);
        border-color: rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
        border-color: rgba(59, 130, 246, 0.6);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-new-title {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(59, 130, 246, 0.3);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #60A5FA 0%, #34D399 50%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-new-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 580px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-new-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-new-cta .btn:nth-child(1) {
    animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-new-cta .btn:nth-child(2) {
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-new-cta .btn {
    transition: all 0.3s ease;
}

.hero-new-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.hero-new-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    animation: fadeInUp 1s ease backwards;
    transition: all 0.3s ease;
}

.trust-badge-item:nth-child(1) { animation-delay: 0.9s; }
.trust-badge-item:nth-child(2) { animation-delay: 1s; }
.trust-badge-item:nth-child(3) { animation-delay: 1.1s; }

.trust-badge-item:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.trust-badge-item svg {
    color: #10B981;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trust-badge-item:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Right Side */
.hero-new-right {
    animation: fadeInUp 0.8s ease 0.4s backwards, floatUpDown 6s ease-in-out infinite;
}

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

.stats-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease backwards;
}

.stat-card-new:nth-child(1) { animation-delay: 0.5s; }
.stat-card-new:nth-child(2) { animation-delay: 0.6s; }
.stat-card-new:nth-child(3) { animation-delay: 0.7s; }
.stat-card-new:nth-child(4) { animation-delay: 0.8s; }

.stat-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card-new::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.stat-card-new:hover::after {
    width: 300px;
    height: 300px;
}

.stat-card-new:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.stat-card-new:hover::before {
    opacity: 1;
}

.stat-card-new:hover .stat-card-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-card-new:hover .stat-card-value {
    transform: scale(1.05);
}

.stat-card-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: transform 0.4s ease;
    display: inline-block;
}

.stat-card-value {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #FFFFFF, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s ease;
    display: inline-block;
}

.stat-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.stat-card-sublabel {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.clients-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    animation: fadeInUp 0.8s ease 0.9s backwards;
}

.clients-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.clients-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.client-badge {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.4s ease;
    animation: fadeInScale 0.5s ease backwards;
}

.client-badge:nth-child(1) { animation-delay: 1s; }
.client-badge:nth-child(2) { animation-delay: 1.1s; }
.client-badge:nth-child(3) { animation-delay: 1.2s; }
.client-badge:nth-child(4) { animation-delay: 1.3s; }

.client-badge:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-new-split {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .hero-new-right {
        order: -1;
    }

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

@media (max-width: 640px) {
    .hero-new {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-new-split {
        padding: 0 20px;
        gap: 40px;
    }

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

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

    .hero-new-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-new-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section titles get special treatment */
.section-title.animate-on-scroll {
    transform: translateY(20px);
}

.section-subtitle.animate-on-scroll {
    transform: translateY(20px);
}

/* Staggered animation delays for grid items - only before animated */
.animate-on-scroll:nth-child(1):not(.animated) { transition-delay: 0.05s; }
.animate-on-scroll:nth-child(2):not(.animated) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(3):not(.animated) { transition-delay: 0.25s; }
.animate-on-scroll:nth-child(4):not(.animated) { transition-delay: 0.35s; }
.animate-on-scroll:nth-child(5):not(.animated) { transition-delay: 0.45s; }
.animate-on-scroll:nth-child(6):not(.animated) { transition-delay: 0.55s; }
.animate-on-scroll:nth-child(7):not(.animated) { transition-delay: 0.65s; }
.animate-on-scroll:nth-child(8):not(.animated) { transition-delay: 0.75s; }
.animate-on-scroll:nth-child(9):not(.animated) { transition-delay: 0.85s; }

/* Remove transition-delay after animation completes for instant hover */
.animate-on-scroll.animated {
    transition-delay: 0s;
}

/* Alternative: Scale up animation */
.scale-on-scroll {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-on-scroll.animated {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.scale-on-scroll:nth-child(1):not(.animated) { transition-delay: 0.05s; }
.scale-on-scroll:nth-child(2):not(.animated) { transition-delay: 0.15s; }
.scale-on-scroll:nth-child(3):not(.animated) { transition-delay: 0.25s; }
.scale-on-scroll:nth-child(4):not(.animated) { transition-delay: 0.35s; }
.scale-on-scroll:nth-child(5):not(.animated) { transition-delay: 0.45s; }
.scale-on-scroll:nth-child(6):not(.animated) { transition-delay: 0.55s; }

/* Remove transition-delay after animation completes for instant hover */
.scale-on-scroll.animated {
    transition-delay: 0s;
}

/* Reduce delays on mobile for snappier feel */
@media (max-width: 768px) {
    .animate-on-scroll:nth-child(n):not(.animated) { transition-delay: 0s !important; }
    .scale-on-scroll:nth-child(n):not(.animated) { transition-delay: 0s !important; }

    .animate-on-scroll:nth-child(1):not(.animated) { transition-delay: 0.05s !important; }
    .animate-on-scroll:nth-child(2):not(.animated) { transition-delay: 0.1s !important; }
    .animate-on-scroll:nth-child(3):not(.animated) { transition-delay: 0.15s !important; }
    .animate-on-scroll:nth-child(4):not(.animated) { transition-delay: 0.2s !important; }
    .animate-on-scroll:nth-child(5):not(.animated) { transition-delay: 0.25s !important; }
    .animate-on-scroll:nth-child(6):not(.animated) { transition-delay: 0.3s !important; }

    .scale-on-scroll:nth-child(1):not(.animated) { transition-delay: 0.05s !important; }
    .scale-on-scroll:nth-child(2):not(.animated) { transition-delay: 0.1s !important; }
    .scale-on-scroll:nth-child(3):not(.animated) { transition-delay: 0.15s !important; }
    .scale-on-scroll:nth-child(4):not(.animated) { transition-delay: 0.2s !important; }
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
    padding: var(--space-3xl);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

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

.stat-number {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--electric-blue);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--slate-gray);
    font-weight: 500;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background: var(--pure-white);
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 32px;
    color: var(--pure-white);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.card-text {
    color: var(--slate-gray);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 100%);
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

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

.service-card:hover::after {
    width: 400px;
    height: 400px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--electric-blue);
}

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

.service-card .card-icon {
    margin: 0 auto var(--space-lg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Project Card */
.project-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.project-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.project-image {
    height: 240px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.project-content {
    padding: var(--space-lg);
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

/* ========================================
   BADGES
   ======================================== */

.badge-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.badge-success {
    background: #D1FAE5;
    color: #065F46;
}

.badge-warning {
    background: #FEF3C7;
    color: #92400E;
}

.badge-info {
    background: #DBEAFE;
    color: #1E40AF;
}

.badge-error {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-primary {
    background: var(--electric-blue);
    color: var(--pure-white);
}

/* ========================================
   FORMS
   ======================================== */

.contact-form-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    border: 2px solid var(--electric-blue);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    animation: formPulse 3s ease-in-out infinite;
}

.contact-form-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #3B82F6);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes formPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 15px 50px rgba(59, 130, 246, 0.25);
        transform: translateY(-2px);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--deep-charcoal);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--dark-gray);
    background: var(--pure-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-card {
    background: var(--pure-white);
    padding: var(--space-2xl);
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-md);
}

.quote-mark {
    font-size: 4rem;
    color: var(--electric-blue);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    border: 3px solid var(--electric-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.875rem;
    color: var(--slate-gray);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(90deg, var(--electric-blue) 0%, var(--cyber-cyan) 100%);
    color: var(--pure-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--pure-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

.cta-contact-info {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    font-size: 1.125rem;
}

.cta-contact-info a {
    color: var(--pure-white);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-contact-info a:hover {
    opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-navy);
    color: var(--pure-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-section h3 {
    color: var(--pure-white);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.footer-section p {
    color: var(--medium-gray);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--electric-blue);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
    color: #94A3B8;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--electric-blue);
    transform: translateY(-3px);
}

/* ========================================
   FILTERS
   ======================================== */

.filter-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-full);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--pure-white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

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

.text-right {
    text-align: right;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

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

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 104px 0 48px;
        min-height: 0;
    }

    .hero-stats-mini {
        gap: 32px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-title,
    .hero-description,
    .hero-stats-mini {
        max-width: 100%;
    }

    .hero-panel {
        max-width: 760px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--pure-white);
        flex-direction: column;
        padding: 80px 40px 40px;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition-normal);
        align-items: flex-start;
        gap: var(--space-lg);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 88px 0 48px;
        min-height: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-trust-row {
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-trust-item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-stats-mini {
        justify-content: flex-start;
        gap: 24px;
    }

    .mini-stat-number {
        font-size: 1.5rem;
    }

    .mini-stat-label {
        font-size: 0.75rem;
    }

    .hero-glow {
        opacity: 0.28;
    }

    .hero-particles {
        opacity: 0.5;
    }

    .hero-panel-shell {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-panel-header {
        flex-direction: column;
    }

    .hero-panel-status {
        white-space: normal;
    }

    .hero-panel-metrics {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: var(--space-xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .filter-buttons {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: var(--space-sm);
    }

    .filter-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

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

    .card {
        padding: var(--space-lg);
    }

    .service-card {
        padding: var(--space-xl) var(--space-lg);
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}
