﻿:root {
   /* ===================================================================
       CORE COLORS - LIGHT THEME
       =================================================================== */
   --color-bg-main: #FFFFFF;
   --color-bg-dark: #F8FAFC;
   --color-bg-card: rgba(0, 0, 0, 0.02);

   --color-primary-blue: #3B82F6;
   --color-primary-blue-dark: #2563eb;

   --color-text-white: #1E293B;
   --color-text-muted: rgba(30, 41, 59, 0.65);
   --color-border: rgba(0, 0, 0, 0.08);

   /* ===================================================================
       ACCENT COLORS - Synthwave Palette
       =================================================================== */
   --color-accent-purple: #8B5CF6;
   --color-accent-pink: #EC4899;
   --color-accent-cyan: #06B6D4;
   --color-grid-line: rgba(59, 130, 246, 0.15);

   /* ===================================================================
       TYPOGRAPHY
       =================================================================== */
   --font-family-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   --font-family-display: 'Outfit', sans-serif;

   /* ===================================================================
       SPACING & LAYOUT
       =================================================================== */
   --spacing-xs: 0.5rem;
   /* 8px */
   --spacing-sm: 1rem;
   /* 16px */
   --spacing-md: 2rem;
   /* 32px */
   --spacing-lg: 4rem;
   /* 64px */
   --spacing-xl: 6rem;
   /* 96px */

   --container-width: 1280px;

   /* ===================================================================
       BORDER RADIUS
       =================================================================== */
   --border-radius-sm: 6px;
   --border-radius-md: 10px;
   --border-radius-lg: 16px;
   --border-radius-xl: 24px;

   /* ===================================================================
       EFFECTS
       =================================================================== */
   --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
   --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
   --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
   --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);

   --transition-fast: 0.15s ease;
   --transition-normal: 0.3s ease;
   --transition-slow: 0.5s ease;
}

/* ===================================================================
   BASE TYPOGRAPHY
   =================================================================== */
body {
   background-color: var(--color-bg-main);
   color: var(--color-text-white);
   font-family: var(--font-family-main);
   margin: 0;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-family-display);
   font-weight: 700;
   margin: 0;
   line-height: 1.2;
}

a {
   color: inherit;
}

img {
   max-width: 100%;
   height: auto;
}

/* Selection Color */
::selection {
   background: var(--color-primary-blue);
   color: white;
}
/* ===================================================================
   GLOBAL RESET & BASE STYLES
   =================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-white);
    font-family: var(--font-family-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================================================
   UTILITIES
   =================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 10;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-accent-cyan) 50%, var(--color-accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ===================================================================
   BUTTONS
   =================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, #2563eb 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-ghost {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    color: var(--color-text-white);
    background: rgba(0, 0, 0, 0.05);
}
/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--spacing-sm) 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-inner .logo-container {
    justify-self: start;
}

.header-inner .desktop-nav {
    justify-self: center;
}

.header-inner .header-actions {
    justify-self: end;
}

/* --- LOGO --- */
.logo-container {
    display: flex;
    align-items: center;
    font-family: var(--font-family-display);
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-primary-blue);
    letter-spacing: -0.04em;
}

.logo-v {
    position: relative;
    margin-right: -0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1em;
    width: 1em;
}

.custom-v {
    width: 1em;
    height: 1em;
    fill: var(--color-primary-blue);
}

.logo-text {
    line-height: 1;
    color: var(--color-primary-blue);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* ===================================================================
   NAVIGATION & DROPDOWNS
   =================================================================== */
nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity var(--transition-fast), color var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    opacity: 1;
    color: var(--color-primary-blue);
}

/* Dropdown Chevron Icon */
.dropdown-chevron {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    margin-left: 2px;
}

.nav-item:hover .dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Base Dropdown Styles */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 10px 15px -3px rgba(0, 0, 0, 0.12),
        0 20px 50px -12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 101;
}

/* Dropdown Arrow/Pointer */
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px 0 0 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Wide Dropdown (Industries) */
.dropdown.dropdown-wide {
    min-width: 380px;
    padding: 16px;
}

.dropdown-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Mega Dropdown (Services) */
.dropdown.dropdown-mega {
    min-width: 360px;
    padding: 0;
    overflow: hidden;
}

.dropdown-section {
    padding: 16px;
}

.dropdown-grid {
    display: grid;
    gap: 4px;
}

/* Dropdown Header */
.dropdown-header {
    display: block;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    padding: 0 8px;
}

/* Dropdown Item - Standard (with icon) */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    color: var(--color-text-white);
}

.dropdown-item:hover .dropdown-item-icon {
    background: rgba(59, 130, 246, 0.2);
    color: var(--color-primary-blue);
}

/* Dropdown Item - Icon Container */
.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-item-icon.small {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.dropdown-item-icon svg {
    flex-shrink: 0;
}

/* Dropdown Item - Content (title + description) */
.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-white);
    transition: color 0.2s ease;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--color-primary-blue);
}

/* View All Link Styling */
.dropdown-item.view-all {
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 14px;
    color: var(--color-primary-blue);
}

.dropdown-item.view-all .dropdown-item-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary-blue);
}

/* Dropdown Footer */
.dropdown-footer {
    background: rgba(0, 0, 0, 0.03);
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-footer-link:hover {
    color: var(--color-accent-cyan);
}

.dropdown-footer-link svg {
    transition: transform 0.2s ease;
}

.dropdown-footer-link:hover svg {
    transform: translateX(4px);
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    margin: 8px 12px;
}

/* Mini Section (Resources dropdown) */
.dropdown-section-mini {
    padding: 4px 0;
}

.dropdown-section-mini .dropdown-header {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 102;
    background: none;
    border: none;
    padding: 4px;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: #1E293B;
    transition: all var(--transition-normal);
    border-radius: 2px;
}
/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: var(--spacing-xl);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    margin-bottom: 2rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-primary-blue);
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary-blue);
    flex-shrink: 0;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Hero Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-blue) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-blue) 0%, transparent 70%);
    bottom: 20%;
    left: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-primary-blue) 0%, transparent 70%);
    top: 30%;
    left: 15%;
    animation: float 6s ease-in-out infinite 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    animation: fadeIn 1s ease 1s backwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}

/* Hero Background */
.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-main);
    perspective: 800px;
    z-index: 0;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 44%;
    background: transparent;
    z-index: -1;
}

.stars::after {
    content: " ";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow:
        10vw 10vh rgba(59, 130, 246, 0.4), 20vw 5vh rgba(59, 130, 246, 0.3), 30vw 15vh rgba(139, 92, 246, 0.4), 40vw 8vh rgba(59, 130, 246, 0.3), 50vw 12vh rgba(59, 130, 246, 0.4),
        60vw 3vh rgba(139, 92, 246, 0.3), 70vw 18vh rgba(59, 130, 246, 0.4), 80vw 6vh rgba(59, 130, 246, 0.3), 90vw 14vh rgba(139, 92, 246, 0.4), 5vw 25vh rgba(59, 130, 246, 0.3),
        25vw 35vh rgba(59, 130, 246, 0.4), 65vw 30vh rgba(139, 92, 246, 0.4), 85vw 38vh rgba(59, 130, 246, 0.4),
        18vw 2vh 1px rgba(59, 130, 246, 0.3), 28vw 12vh 1px rgba(139, 92, 246, 0.3), 38vw 5vh 1px rgba(59, 130, 246, 0.3), 48vw 15vh 1px rgba(139, 92, 246, 0.3),
        58vw 8vh 1px rgba(59, 130, 246, 0.3), 68vw 20vh 1px rgba(139, 92, 246, 0.3), 78vw 5vh 1px rgba(59, 130, 246, 0.3), 88vw 18vh 1px rgba(139, 92, 246, 0.3),
        15vw 8vh 0.5px rgba(59, 130, 246, 0.25), 35vw 22vh 0.5px rgba(139, 92, 246, 0.25),
        55vw 5vh 0.5px rgba(59, 130, 246, 0.25), 75vw 28vh 0.5px rgba(139, 92, 246, 0.25),
        95vw 10vh 0.5px rgba(59, 130, 246, 0.25), 3vw 18vh 0.5px rgba(139, 92, 246, 0.25);
    opacity: 0.7;
}

.grid-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62%;
    overflow: hidden;
    z-index: 2;
}

.grid {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
    background-size: 40px 20px;
    background-position: center bottom;
    transform-origin: top center;
    transform: perspective(400px) rotateX(70deg);
    mask-image: linear-gradient(to top, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 40%, transparent 100%);
}
/* ===================================================================
   TRUST BAR
   =================================================================== */
/* ===================================================================
   TRUST BAR
   =================================================================== */
.trust-bar {
    position: relative;
    padding: var(--spacing-md) 0;
    /* Reduced padding for cleaner look */
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Elements */
.trust-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.trust-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.trust-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    /* Lighter color for visibility */
    /* text-transform: uppercase; */
    /* Removed uppercase for cleaner sentence structure */
    letter-spacing: 0.05em;
    font-weight: 500;
    opacity: 1;
    text-align: center;
}

.trust-subtitle {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    opacity: 1;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    /* Force single line */
    gap: clamp(2rem, 4vw, 4rem);
    width: 100%;
    overflow-x: auto;
    /* Allow scroll on very small screens if needed */
    padding-bottom: 5px;
    /* Space for scrollbar if it appears */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.trust-logos::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    flex-shrink: 0;
    /* prevented shrinking too much */
}

/* Target both img and svg */
.trust-logo-item img,
.trust-logo-item svg {
    height: 50px;
    /* Slightly smaller to ensure fit */
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    /* High visibility */
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Removed filter drop-shadow */
    filter: none;
}

.trust-logo-item:hover img,
.trust-logo-item:hover svg {
    transform: scale(1.05);
    opacity: 1;
    /* No glow filter */
}

/* Background Animations (Adapted from Footer) */
.trust-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.trust-ring-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    left: -100px;
    border-color: rgba(59, 130, 246, 0.05);
    animation: trust-ring-pulse 15s ease-in-out infinite;
}

.trust-ring-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -50px;
    border-color: rgba(139, 92, 246, 0.05);
    animation: trust-ring-pulse 15s ease-in-out infinite 2s;
}

@keyframes trust-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.trust-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.trust-glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: trust-glow-pulse 8s ease-in-out infinite;
}

@keyframes trust-glow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Particles */
.trust-particles {
    position: absolute;
    inset: 0;
}

.trust-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: trust-particle-float 10s linear infinite;
}

.trust-particle:nth-child(1) {
    left: 20%;
    top: 80%;
    animation-duration: 12s;
}

.trust-particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.trust-particle:nth-child(3) {
    left: 50%;
    top: 90%;
    animation-delay: 5s;
    animation-duration: 20s;
}

@keyframes trust-particle-float {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* ===================================================================
   SECTION STYLES
   =================================================================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-white);
    line-height: 1.2;
}

.section-title-left {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-white);
    line-height: 1.2;
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
/* ===================================================================
   WHY VELLOPER SECTION
   =================================================================== */
.why-velloper {
    background: linear-gradient(to bottom, var(--color-bg-main), #F1F5F9);
    position: relative;
    overflow: hidden;
}

.why-velloper-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.why-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary-blue) 0%, transparent 70%);
    top: 10%;
    left: -10%;
}

.why-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-purple) 0%, transparent 70%);
    bottom: 15%;
    right: -5%;
}

.why-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

/* Velloper Pillars (3-Card Layout) */
.velloper-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.pillar-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.pillar-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.pillar-card:hover .pillar-bg {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.pillar-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.pillar-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-blue);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pillar-card:hover .pillar-icon-wrapper {
    background: var(--color-primary-blue);
    color: white;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-title {
    color: var(--color-primary-blue);
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Tablet & Mobile Responsiveness for Pillars */
@media (max-width: 1024px) {
    .velloper-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .velloper-pillars {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .pillar-card {
        padding: var(--spacing-md);
    }
}


/* ===================================================================
   SERVICES SECTION
   =================================================================== */
/* ===================================================================
   SERVICES SHOWCASE (Redesign)
   =================================================================== */
.services {
    background: var(--color-bg-main);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 4rem;
    position: relative;
}

/* Connective Line (Optional, keeps flow) */
.services-showcase::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg,
            transparent,
            rgba(59, 130, 246, 0.2) 20%,
            rgba(59, 130, 246, 0.2) 80%,
            transparent);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* Service Content Side */
.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: var(--color-primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.service-feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text-white);
    line-height: 1.1;
}

.service-feature-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature List (Icons + Text) */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-primary-blue);
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Service Visual Side */
.service-visual {
    position: relative;
    perspective: 1000px;
}

.visual-card {
    position: relative;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.service-feature:hover .visual-card {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(59, 130, 246, 0.3);
}

.visual-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.glow-blue {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

.service-feature:hover .visual-glow {
    opacity: 0.8;
}

/* --- Visual 1: Web Design (Browser Mockup) --- */
.visual-header {
    height: 44px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.red {
    background: #EF4444;
}

.yellow {
    background: #F59E0B;
}

.green {
    background: #10B981;
}

.browser-input {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-left: 12px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.visual-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(to bottom, #1e293b 0%, rgba(30, 41, 59, 0.8) 100%);
}

.visual-hero {
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.hero-skeleton {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 60%;
}

.hero-skeleton.short {
    width: 40%;
    opacity: 0.6;
}

.visual-grid {
    display: flex;
    gap: 16px;
}

.v-box {
    flex: 1;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.float-tag {
    position: absolute;
    padding: 10px 18px;
    background: var(--color-primary-blue);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float-tag 5s ease-in-out infinite;
}

.tag-1 {
    top: 25%;
    right: -30px;
    animation-delay: 0s;
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(4px);
}

.tag-2 {
    bottom: 25%;
    left: -30px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation-delay: 2.5s;
    color: #ffffff;
}

.tag-1 svg,
.tag-2 svg {
    opacity: 0.9;
}

@keyframes float-tag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- Visual 2: SEO (Graph Mockup) --- */
.seo-card {
    padding: 30px;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at top right, rgba(29, 78, 216, 0.15), transparent),
        rgba(30, 41, 59, 0.8);
}

.seo-graph {
    width: 100%;
    height: 180px;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.graph-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 40px;
    background: linear-gradient(to top, rgba(34, 197, 94, 0.1), transparent);
    clip-path: polygon(0% 100%, 0% 80%, 30% 60%, 60% 30%, 100% 10%, 100% 100%);
}

.graph-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    overflow: hidden;
}

.graph-line::after {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid #10B981;
    transform: skewY(-20deg) translateY(100px);
    opacity: 0.5;
}

/* Simplified Graph CSS Art (points) */
.graph-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid var(--color-bg-dark);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    z-index: 2;
}

.p1 {
    left: 30%;
    bottom: 40%;
}

.p2 {
    left: 60%;
    bottom: 65%;
}

.p3 {
    right: 0;
    top: 10%;
}

.seo-stat {
    position: absolute;
    top: 20%;
    left: 10%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-tag 5s ease-in-out infinite reverse;
    z-index: 10;
}

.stat-up {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10B981;
}

.stat-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .service-feature {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 3rem;
        text-align: center;
    }

    .feature-reverse {
        display: flex;
        flex-direction: column-reverse;
        /* Visual on top for consistency, or text on top? Let's check logic. */
        /* If 1fr grid, dom order matters. 
           Feature 1: Content, Visual. -> Content Top.
           Feature 2: Visual, Content. -> Visual Top.
           This is actually inconsistent. Let's make Visual ALWAYS bottom or ALWAYS top.
           Usually Visual Top is cooler.
           Let's use Flex column-reverse to put Visual on Top if DOM order is Content->Visual.
        */
    }

    /* Re-order for Feature 1 (Content First in DOM) -> Visual Top */
    .service-feature:not(.feature-reverse) {
        display: flex;
        flex-direction: column-reverse;
    }

    /* Feature 2 (Visual First in DOM) -> Visual Top */
    .feature-reverse {
        display: flex;
        flex-direction: column;
    }


    .services-showcase::before {
        display: none;
    }

    /* Hide line on mobile */

    .service-content {
        align-items: center;
        /* Center align text */
    }

    .service-feature-title {
        font-size: 2rem;
    }

    .feature-list {
        width: fit-content;
        margin: 0 auto;
    }

    .feature-item {
        justify-content: flex-start;
        text-align: left;
        /* Keep internal item text left aligned for readability */
        background: rgba(255, 255, 255, 0.03);
        padding: 16px;
        border-radius: 12px;
        width: 100%;
    }

    .visual-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        gap: 4rem;
    }

    .service-visual {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        position: relative;
        padding: 40px 20px;
        overflow: visible;
    }

    .visual-card {
        height: auto;
        min-height: 320px;
        width: 100%;
    }

    .visual-body {
        padding: 16px;
    }

    /* Scale down floating tags for mobile */
    .float-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    .tag-1 {
        right: -10px;
        top: 60px;
        transform: none !important;
        animation: none;
    }

    .tag-2 {
        left: -10px;
        bottom: 60px;
        transform: none !important;
        animation: none;
    }

    /* SEO Card Fixes */
    .seo-card {
        min-height: 320px;
        padding: 20px;
    }

    .seo-graph {
        height: 160px;
    }

    .seo-stat {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        animation: none;
        top: 10%;
        padding: 10px 16px;
    }

    .stat-up {
        font-size: 1.25rem;
    }

    .stat-text {
        font-size: 0.7rem;
    }

    .service-feature-title {
        font-size: 1.75rem;
    }

    .service-feature-desc {
        font-size: 1rem;
    }
}



/* ===================================================================
   STATS SECTION
   =================================================================== */
.stats {
    background: linear-gradient(180deg, #F1F5F9 0%, #F8FAFC 50%, var(--color-bg-main) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.stats-intro {
    flex-shrink: 0;
    max-width: 280px;
}

.stats-headline {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-white);
}

.stats-grid {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-around;
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
}

.stat-icon-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--color-primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-ring {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.12) 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-family-display);
    background: linear-gradient(135deg, var(--color-text-white) 0%, var(--color-primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-suffix {
    font-size: 0.6em;
    opacity: 0.8;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.stat-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-glow {
    opacity: 1;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-border), transparent);
}



/* ===================================================================
   INDUSTRIES SECTION
   =================================================================== */
.industries {
    background: #F8FAFC;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-sm);
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.industry-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--border-radius-md);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.industry-card:hover .industry-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-primary-blue);
}

.industry-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-align: center;
    transition: color var(--transition-fast);
}

.industry-card:hover .industry-name {
    color: var(--color-text-white);
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials {
    background: var(--color-bg-main);
}

.testimonial-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-text-white);
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===================================================================
   TRUST BAR STATS
   =================================================================== */
.trust-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family-display);
    color: var(--color-primary-blue);
}

.trust-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================================================
   HOW IT WORKS SECTION - COMPACT REDESIGN
   =================================================================== */
.how-it-works {
    background: linear-gradient(180deg, #F8FAFC 0%, var(--color-bg-main) 50%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
    /* Reduced padding from standard section defaults if any, explicit control */
}

.process-grid {
    display: flex;
    align-items: center;
    /* Center align vertically */
    justify-content: center;
    gap: var(--spacing-md);
    /* Increased gap slightly for breathing room between compact cards */
    max-width: 1000px;
    /* Reduced max-width for more compact feel */
    margin: 0 auto;
    position: relative;
}

/* Connector Line - Hidden for cleaner look in compact mode or made subtle */
.process-connector-line {
    flex: 0 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.process-connector-line::after {
    content: '';
    width: 100%;
    height: 1px;
    /* Thinner line */
    background: linear-gradient(90deg,
            rgba(59, 130, 246, 0.1),
            rgba(59, 130, 246, 0.5),
            rgba(59, 130, 246, 0.1));
}

/* Process Card - Dark & Compact */
.process-card {
    flex: 1;
    position: relative;
    padding: var(--spacing-md);
    /* Reduced padding */
    border-radius: 16px;
    /* Slightly smaller radius */
    transition: all 0.3s ease;
    overflow: hidden;
    background: transparent;
    max-width: 300px;
    /* Force compact width */
}

.process-card-bg {
    position: absolute;
    inset: 0;
    /* Dark Gradient Background */
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.process-card:hover .process-card-bg {
    background: linear-gradient(145deg, #253348 0%, #152033 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

/* Card Content */
.process-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    /* Reduced margin */
}

.process-number {
    font-size: 1.5rem;
    /* Significantly reduced from 4rem */
    font-weight: 800;
    font-family: var(--font-family-display);
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

.process-icon-wrapper {
    position: relative;
    width: 40px;
    /* Reduced from 60px */
    height: 40px;
    /* Reduced from 60px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #60a5fa;
    /* Light blue for dark bg */
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-wrapper {
    background: rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
    transform: rotate(5deg);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.process-icon {
    width: 20px;
    /* Reduced from 28px */
    height: 20px;
}

.process-title {
    font-size: 1.1rem;
    /* Reduced from 1.5rem */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    /* White text */
}

.process-description {
    font-size: 0.85rem;
    /* Reduced from 0.95rem */
    color: rgba(255, 255, 255, 0.7);
    /* Light gray for dark bg */
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.process-list {
    list-style: none;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    /* Reduced */
    color: rgba(255, 255, 255, 0.6);
    /* Muted light text */
    margin-bottom: 4px;
}

.process-list li::before {
    content: '';
    width: 4px;
    /* Smaller */
    height: 4px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .process-connector-line {
        height: 30px;
        width: 1px;
        flex: 0 0 30px;
    }

    .process-connector-line::after {
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg,
                rgba(59, 130, 246, 0.1),
                rgba(59, 130, 246, 0.5),
                rgba(59, 130, 246, 0.1));
    }

    .process-card {
        width: 100%;
        max-width: 400px;
        /* Slightly wider on mobile for content */
    }
}

/* ===================================================================
   TESTIMONIALS GRID
   =================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonials-grid .testimonial-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: all var(--transition-fast);
}

.testimonials-grid .testimonial-card:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}

.testimonials-grid .quote-icon {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
}

.testimonials-grid .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

/* ===================================================================
   FAQ SECTION
   =================================================================== */
.faq-section {
    background: #F8FAFC;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-md) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary-blue);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================================================
   CTA SECTION - PREMIUM CARD DESIGN
   =================================================================== */
.cta-section {
    position: relative;
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    margin-top: var(--spacing-md);
    background: linear-gradient(180deg, #F8FAFC 0%, var(--color-bg-main) 100%);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 24px;
    padding: clamp(2.5rem, 5vw, 5rem);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(59, 130, 246, 0.1);
}

/* Background Elements */
.cta-card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
}

/* Decorative Rings */
.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.cta-ring-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    border-color: rgba(59, 130, 246, 0.1);
    animation: cta-ring-pulse 8s ease-in-out infinite;
}

.cta-ring-2 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
    border-color: rgba(139, 92, 246, 0.1);
    animation: cta-ring-pulse 8s ease-in-out infinite 1s;
}

.cta-ring-3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    border-color: rgba(59, 130, 246, 0.08);
    animation: cta-ring-pulse 8s ease-in-out infinite 2s;
}

@keyframes cta-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

/* Glow Effects */
.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-glow-1 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.2);
    top: -100px;
    right: 10%;
    animation: cta-glow-float 10s ease-in-out infinite;
}

.cta-glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.15);
    bottom: -50px;
    left: 5%;
    animation: cta-glow-float 10s ease-in-out infinite 3s;
}

@keyframes cta-glow-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* Floating Particles */
.cta-particles {
    position: absolute;
    inset: 0;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    animation: cta-particle-float 15s linear infinite;
}

.cta-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.cta-particle:nth-child(2) {
    left: 25%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 14s;
    background: rgba(139, 92, 246, 0.4);
}

.cta-particle:nth-child(3) {
    left: 60%;
    top: 15%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.cta-particle:nth-child(4) {
    left: 85%;
    top: 60%;
    animation-delay: 6s;
    animation-duration: 13s;
    background: rgba(139, 92, 246, 0.4);
}

.cta-particle:nth-child(5) {
    left: 50%;
    top: 90%;
    animation-delay: 8s;
    animation-duration: 15s;
}

@keyframes cta-particle-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-400px) scale(0.5);
        opacity: 0;
    }
}

/* Content */
.cta-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: var(--spacing-md);
    animation: cta-badge-glow 3s ease-in-out infinite;
}

.cta-badge svg {
    color: #60a5fa;
}

@keyframes cta-badge-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    }
}

.cta-card .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.cta-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cta-text-shimmer 4s ease-in-out infinite;
}

@keyframes cta-text-shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-card .cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-feature svg {
    color: #34d399;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-card .cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(59, 130, 246, 0.4),
        0 0 0 0 rgba(59, 130, 246, 0);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(59, 130, 246, 0.5),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* CTA Grid Layout */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.cta-left {
    display: flex;
    flex-direction: column;
}

.cta-card .cta-title {
    text-align: left;
    font-size: 2.5rem;
}

.cta-card .cta-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.cta-badge {
    align-self: flex-start;
}

/* Contact Info Block */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-box {
    background: rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
    font-weight: 400;
}

.contact-value {
    color: white;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
    color: #60a5fa;
}

/* Contact Form */
.cta-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-btn {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

/* Responsive CTA */
@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-left {
        align-items: center;
    }

    .cta-card .cta-title,
    .cta-card .cta-subtitle {
        text-align: center;
    }

    .cta-badge {
        align-self: center;
    }

    .contact-info-block {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
/* ===================================================================
   FOOTER
   =================================================================== */
footer {
    position: relative;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    z-index: 10;
}

/* Footer Content Wrapper to stay above bg */
.footer-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Background Elements */
.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 100%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
}

/* Decorative Rings */
.footer-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.footer-ring-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    border-color: rgba(59, 130, 246, 0.08);
    animation: footer-ring-pulse 10s ease-in-out infinite;
}

.footer-ring-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -50px;
    border-color: rgba(139, 92, 246, 0.08);
    animation: footer-ring-pulse 10s ease-in-out infinite 2s;
}

.footer-ring-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(59, 130, 246, 0.05);
    animation: footer-ring-pulse 12s ease-in-out infinite 4s;
}

@keyframes footer-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Glow Effects */
.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.footer-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    bottom: -100px;
    left: 10%;
    animation: footer-glow-float 12s ease-in-out infinite;
}

.footer-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.12);
    top: -50px;
    right: 5%;
    animation: footer-glow-float 12s ease-in-out infinite 5s;
}

@keyframes footer-glow-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Floating Particles */
.footer-particles {
    position: absolute;
    inset: 0;
}

.footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: footer-particle-float 20s linear infinite;
}

.footer-particle:nth-child(1) {
    left: 15%;
    top: 80%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.footer-particle:nth-child(2) {
    left: 85%;
    top: 20%;
    animation-delay: 5s;
    animation-duration: 22s;
    background: rgba(139, 92, 246, 0.3);
}

.footer-particle:nth-child(3) {
    left: 40%;
    top: 90%;
    animation-delay: 10s;
    animation-duration: 25s;
}

.footer-particle:nth-child(4) {
    left: 70%;
    top: 10%;
    animation-delay: 15s;
    animation-duration: 20s;
    background: rgba(139, 92, 246, 0.3);
}

.footer-particle:nth-child(5) {
    left: 10%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 24s;
}

@keyframes footer-particle-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) scale(0.5);
        opacity: 0;
    }
}


/* Footer Minimal Layout */
.footer-minimal {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand-centered {
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-brand-centered .logo-container {
    color: var(--color-primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-nav-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-nav-centered a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-nav-centered a:hover {
    color: var(--color-primary-blue);
}

.footer-separator {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: var(--spacing-md);
}

.footer-bottom-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom-centered {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 800px;
    }
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}
/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}
/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {

    nav,
    .header-actions {
        display: none;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 100px 2rem 2rem;
        z-index: 99;
    }

    nav.is-open .nav-item {
        width: 100%;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav.is-open .nav-link {
        font-size: 1.25rem;
        opacity: 1;
    }

    nav.is-open .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 12px 0 0 8px;
        box-shadow: none;
        display: none;
        min-width: 100%;
        backdrop-filter: none;
    }

    nav.is-open .dropdown::before {
        display: none;
    }

    nav.is-open .dropdown.dropdown-wide,
    nav.is-open .dropdown.dropdown-mega {
        min-width: 100%;
        padding: 12px 0 0 8px;
    }

    nav.is-open .dropdown-columns {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    nav.is-open .dropdown-section {
        padding: 0;
    }

    nav.is-open .dropdown-grid {
        gap: 4px;
    }

    nav.is-open .dropdown-footer {
        background: transparent;
        border: none;
        padding: 8px 0;
    }

    nav.is-open .dropdown-header {
        display: none;
    }

    nav.is-open .dropdown-divider {
        display: none;
    }

    nav.is-open .dropdown-section-mini {
        padding: 0;
    }

    nav.is-open .dropdown-item {
        padding: 8px 10px;
    }

    nav.is-open .dropdown-item-icon {
        width: 24px;
        height: 24px;
    }

    nav.is-open .dropdown-item-icon.small {
        width: 22px;
        height: 22px;
    }

    nav.is-open .dropdown-item-content .dropdown-item-desc {
        display: none;
    }

    nav.is-open .nav-item.active-dropdown .dropdown {
        display: block;
    }

    nav.is-open .dropdown-chevron {
        margin-left: auto;
    }

    nav.is-open .nav-item.active-dropdown .dropdown-chevron {
        transform: rotate(180deg);
    }

    .mobile-toggle {
        display: flex;
    }

    /* Why Velloper Responsive */
    .transformation-showcase {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .transform-panel {
        max-width: 100%;
    }

    .transform-arrow {
        flex-direction: row;
        padding: var(--spacing-xs) 0;
    }

    .arrow-line {
        width: 40px;
        height: 2px;
    }

    .value-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats Responsive */
    .stats-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-intro {
        max-width: 100%;
    }

    .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Testimonials Grid Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* How It Works Responsive */
    .process-connector {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }

    /* Trust Stats Responsive */
    .trust-stats {
        gap: var(--spacing-md);
    }

    .trust-stat-number {
        font-size: 1.25rem;
    }

    /* CTA Section Responsive */
    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-card .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-ring-1,
    .cta-ring-2 {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Value pillars stack on mobile */
    .value-pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: var(--spacing-md);
    }

    .pillar-number {
        font-size: 2.5rem;
    }

    /* Stats mobile adjustments */
    .stats-grid {
        flex-direction: column;
        gap: 0;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 2rem;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
    }

    .trust-logos {
        gap: 1.5rem;
        flex-direction: column;
    }

    .trust-logo-item img,
    .trust-logo-item svg {
        height: 50px;
    }
}
