/* ===================================
   BS Global Ventures - Main Stylesheet
   ================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-red: #dc2626;
    --primary-blue: #2563eb;
    --navy-dark: #0a0e27;
    --navy-medium: #1e1b4b;
    --navy-light: #2e2e68;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    --gradient-dark: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--navy-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark-theme {
    background: var(--navy-dark);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.logo-animation {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo-svg {
    width: 120px;
    height: 120px;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--navy-medium);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-300);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-dark);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   NAVIGATION
   ================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    z-index: 1001;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

/* ===================================
   NAV LIST - CLEAN VERSION
   ================================== */
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
    padding: 0;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-300);
    position: relative;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* ===================================
   DROPDOWN MENU
   ================================== */
.nav-dropdown > .nav-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
    margin-top: 0;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    list-style: none;
    min-width: 220px;
    padding: 0.6rem 0;
    margin: 0;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.nav-dropdown-menu li {
    width: 100%;
    display: block;
    background: transparent;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
}

.nav-dropdown-menu li a:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--white);
    padding-left: 2rem;
}

/* ===================================
   HERO SECTION
   ================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 20%),
                radial-gradient(circle at bottom right, rgba(220, 38, 38, 0.1), transparent 18%),
                linear-gradient(180deg, #050a1d 0%, #08122c 45%, #050a1d 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.95;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    filter: blur(0.5px);
}

.hero-glow {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 920px;
    height: 920px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.12), transparent 24%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(420px, 0.95fr);
    gap: 5rem;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.35);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 13, 25, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-2xl);
    box-shadow: 0 18px 40px rgba(8, 15, 30, 0.35);
}

.hero-highlight i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.hero-highlight h4 {
    margin-bottom: 0.35rem;
}

.hero-highlight p {
    margin: 0;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.badge-icon {
    color: var(--primary-red);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(135deg, rgba(220, 38, 38, 1), rgba(37, 99, 235, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowText 4.5s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% { text-shadow: 0 0 20px rgba(37, 99, 235, 0.35); }
    50% { text-shadow: 0 0 30px rgba(220, 38, 38, 0.45); }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.hero-cta .btn-primary:hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-700);
}

.hero-visual {
    position: relative;
    top: -1.75rem;
}

.premium-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-shell {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(11, 17, 32, 0.98), rgba(8, 13, 25, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 40px 90px rgba(8, 15, 30, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transform-style: preserve-3d;
}

.platform-shell::before,
.platform-shell::after {
    content: '';
    position: absolute;
    inset: -30%;
    pointer-events: none;
    opacity: 0.35;
}

.platform-shell::before {
    background: radial-gradient(circle at 30% 20%, rgba(248, 113, 113, 0.16), transparent 28%);
}

.platform-shell::after {
    background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.12), transparent 30%);
    filter: blur(22px);
}

.platform-topbar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.4rem 0.9rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--gray-300);
    font-size: 0.92rem;
}

.platform-topbar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.platform-topbar .dot.red { background: #fb7185; }
.platform-topbar .dot.yellow { background: #fbbf24; }
.platform-topbar .dot.green { background: #4ade80; }

.platform-label {
    margin-left: 0.35rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--gray-400);
}

.platform-grid {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.platform-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-chip {
    padding: 0.65rem 0.7rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.72);
    color: var(--gray-300);
    font-size: 0.82rem;
    transition: all 0.25s ease;
}

.sidebar-chip.active,
.sidebar-chip:hover {
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.12), rgba(37, 99, 235, 0.16));
    border-color: rgba(148, 163, 184, 0.28);
    color: var(--white);
}

.platform-main {
    display: grid;
    gap: 12px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.metric-card,
.chart-card,
.insight-panel {
    border-radius: 22px;
    padding: 0.95rem;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(8, 13, 25, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.metric-card p,
.chart-card p,
.panel-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.metric-card strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.45rem;
    color: var(--white);
}

.metric-card span {
    display: block;
    margin-top: 0.25rem;
    color: var(--gray-300);
    font-size: 0.88rem;
}

.metric-card.accent-red { border-color: rgba(248, 113, 113, 0.18); }
.metric-card.accent-blue { border-color: rgba(56, 189, 248, 0.18); }
.metric-card.accent-green { border-color: rgba(74, 222, 128, 0.18); }
.metric-card.accent-purple { border-color: rgba(192, 132, 252, 0.18); }

.chart-card .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.chart-card strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.trend-pill {
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.12);
    color: #bbf7d0;
    font-size: 0.82rem;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    height: 82px;
    margin-top: 0.9rem;
}

.bars span {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.95), rgba(220, 38, 38, 0.9));
    box-shadow: 0 12px 24px rgba(56, 189, 248, 0.18);
}

.insight-panel h3 {
    margin: 0.35rem 0 0.45rem;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
}

.insight-panel p:last-child {
    color: var(--gray-300);
    font-size: 0.92rem;
    line-height: 1.5;
}

.floating-badge {
    position: absolute;
    z-index: 2;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.88);
    color: var(--gray-200);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(8, 15, 30, 0.4);
    animation: floatCard 4s ease-in-out infinite;
}

.badge-one { top: 18px; right: 18px; animation-delay: 0s; }
.badge-two { bottom: 56px; right: 18px; animation-delay: 1.2s; }
.badge-three { bottom: 18px; left: 18px; animation-delay: 2.1s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-red);
    border-radius: var(--radius-full);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(8px); }
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.08rem;
    color: var(--gray-400);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
}

.text-center {
    text-align: center;
}

.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.page-header h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.breadcrumb a {
    color: var(--primary-red);
}

.breadcrumb span {
    color: var(--gray-400);
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: var(--navy-medium);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.brands-slider {
    overflow: hidden;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: var(--transition-base);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    transition: var(--transition-base);
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(100%);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.feature-text h4 {
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.image-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-card img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.badge-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(17, 24, 39, 1) 100%);
    padding: 80px 0;
}

section.process,
section.industries {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(12, 18, 33, 0.98), rgba(17, 24, 39, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-2xl);
    padding: 2.15rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(8, 15, 30, 0.42);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 28px 48px rgba(8, 15, 30, 0.55), 0 0 36px rgba(56, 189, 248, 0.08);
}

.service-card:hover::before {
    opacity: 0.03;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.capabilities-section {
    margin-top: 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.capability-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-200);
    font-size: 0.95rem;
}

.highlight-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.highlight-panel h3 {
    margin-bottom: 1rem;
}

.highlight-panel p {
    margin: 0;
    color: var(--gray-400);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-title {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.service-features i {
    color: var(--primary-red);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 1rem;
}

.services-hero {
    position: relative;
    padding: 100px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.98) 100%);
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.14), transparent 20%),
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1), transparent 18%);
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.grid-two {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    line-height: 1.05;
    max-width: 680px;
    margin: 1rem 0 1.5rem;
}

.hero-copy p {
    color: var(--gray-300);
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-full);
    color: var(--gray-200);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.hero-panel h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.6rem, 2vw, 2rem);
}

.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.hero-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray-300);
}

.hero-feature-list li strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.overview-card,
.guarantee-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    min-height: 220px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.overview-card h3,
.guarantee-card h3,
.testimonial-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hero-feature-list li::before {
    content: "";
    flex: 0 0 10px;
    height: 10px;
    margin-top: 0.7rem;
    border-radius: 999px;
    background: var(--primary-red);
}

.overview-grid,
.guarantee-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-300);
    line-height: 1.8;
}

.testimonial-author {
    display: grid;
    gap: 0.2rem;
    color: var(--white);
}

.testimonial-author strong {
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.final-cta {
    padding: 4rem 0;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
}

.cta-panel h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.05;
}

@media (max-width: 900px) {
    .grid-two,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 6vw, 3.8rem);
    }

    .cta-panel {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
    }

    .cta-panel {
        padding: 2rem 1.5rem;
    }
}

.premium-service-showcase {
    padding: 110px 0 70px;
}

.premium-copy h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
    max-width: 720px;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.service-badges span {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gray-200);
    font-size: 0.92rem;
    font-weight: 600;
}

.service-showcase {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.45);
}

.service-showcase-header {
    margin-bottom: 1rem;
}

.service-showcase-header h2 {
    margin-top: 0.75rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.15;
}

.service-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-panel {
    position: relative;
    overflow: hidden;
    padding: 1.15rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    min-height: 160px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.14), rgba(59, 130, 246, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-panel:hover,
.service-panel.is-active {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(248, 113, 113, 0.35);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(248, 113, 113, 0.08);
}

.service-panel:hover::before,
.service-panel.is-active::before {
    opacity: 1;
}

.service-panel > * {
    position: relative;
    z-index: 1;
}

.service-panel h3 {
    margin-bottom: 0.45rem;
    font-size: 1.03rem;
}

.service-panel p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-panel-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.service-panel:hover .service-panel-description,
.service-panel.is-active .service-panel-description {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.45rem;
}

.service-panel-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 0.9rem;
    background: rgba(248, 113, 113, 0.08);
    color: var(--primary-red);
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.12);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.service-panel:hover .service-panel-icon,
.service-panel.is-active .service-panel-icon {
    transform: rotate(-6deg) scale(1.08);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(59, 130, 246, 0.9));
    color: #fff;
}

.service-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.service-tech-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: var(--gray-200);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .service-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .service-showcase {
        padding: 1rem;
    }
}

/* Process Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    align-items: flex-start;
    padding: 1.2rem 1.3rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(8, 13, 25, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 52px rgba(8, 15, 30, 0.35);
}

.process-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    max-width: 200px;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 36px;
    top: 64px;
    width: 2px;
    height: calc(100% - 18px);
    background: linear-gradient(to bottom, var(--primary-red), transparent);
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 163, 184, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step .step-number {
    min-width: 80px;
    min-height: 80px;
}

.process-section .section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-content p {
    margin: 0;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-features {
    display: grid;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-red);
}

.why-text h4 {
    margin-bottom: 0.5rem;
}

.why-text p {
    margin: 0;
    font-size: 0.9375rem;
}

.stats-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mini-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
}

.mini-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mini-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

section.projects [data-aos],
section.portfolio [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.project-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 113, 113, 0.35);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.45), 0 0 30px rgba(37, 99, 235, 0.12);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-full);
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-title {
    margin-bottom: 1rem;
}

.project-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gray-400);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-pill {
    padding: 0.9rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--gray-300);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-pill:hover,
.filter-pill.active {
    background: rgba(220, 38, 38, 0.18);
    border-color: rgba(220, 38, 38, 0.3);
    color: var(--white);
}

.portfolio-outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.outcome-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
}

.outcome-card h3 {
    margin-bottom: 1rem;
}

.outcome-card p {
    margin: 0;
    color: var(--gray-400);
}

/* Industries Section */
.industries {
    background: var(--navy-medium);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.industry-card h3 {
    margin-bottom: 0.75rem;
}

.industry-card p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15,23,42,.95), rgba(8,13,25,.98)) !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    transition: all .4s ease;
}

.testimonial-card::before,
.testimonial-card::after,
.testimonial-content::before,
.testimonial-content::after {
    display: none !important;
    content: none !important;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    border-color: rgba(220,38,38,.35);
    box-shadow: 0 25px 70px rgba(0,0,0,.45), 0 0 40px rgba(220,38,38,.15);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 22px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-rating i { animation: starPulse 2s infinite; }
.testimonial-rating i:nth-child(2) { animation-delay: .2s; }
.testimonial-rating i:nth-child(3) { animation-delay: .4s; }
.testimonial-rating i:nth-child(4) { animation-delay: .6s; }
.testimonial-rating i:nth-child(5) { animation-delay: .8s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.testimonial-text {
    color: #f8fafc !important;
    font-size: 1.2rem !important;
    line-height: 1.9 !important;
    max-width: 750px;
    margin: auto;
}

.swiper-slide-active .testimonial-card {
    animation: floatTestimonial 5s ease-in-out infinite;
}

@keyframes floatTestimonial {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #475569;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active {
    border-color: rgba(220, 38, 38, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--primary-red);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
}

.cta-wrapper {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 5rem;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.deco-circle:nth-child(1) { width: 400px; height: 400px; top: -200px; right: -200px; }
.deco-circle:nth-child(2) { width: 300px; height: 300px; bottom: -150px; left: -150px; }
.deco-circle:nth-child(3) { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Footer */
.footer {
    background: var(--navy-medium);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 50px; width: auto; }
.footer-text { font-size: 0.9375rem; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 1rem; }

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-title { font-size: 1.125rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact { list-style: none; }

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.footer-contact i { color: var(--primary-red); margin-top: 0.25rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { margin: 0; font-size: 0.875rem; color: var(--gray-500); }
.footer-legal { display: flex; gap: 2rem; }

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: var(--transition-base);
}

.footer-legal a:hover { color: var(--primary-red); }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl), var(--shadow-glow); }

/* ===================================
   RESPONSIVE
   ================================== */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-highlights { grid-template-columns: 1fr; }
    .hero-visual { display: block; margin: 3rem auto 0; max-width: 720px; }
    .floating-card { display: none; }
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 4rem; }
    .faq-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy-medium);
        padding: 100px 2rem 2rem;
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; gap: 1.5rem; }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: hidden;
        transform: none;
        background: rgba(255, 255, 255, 0.04);
        border: none;
        border-radius: var(--radius-md);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
        margin-top: 0.5rem;
        padding: 0;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        visibility: visible;
        max-height: 400px;
        pointer-events: auto;
    }

    .nav-dropdown.active > .nav-link i { transform: rotate(180deg); }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    .services-grid, .industries-grid, .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }
    .hero { padding: 140px 0 80px; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stat-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .cta-wrapper { padding: 3rem 2rem; }
    .experience-badge { right: 20px; bottom: -20px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .section-header { margin-bottom: 2.5rem; }
    .process-step { flex-direction: column; gap: 1rem; }
    .process-step:not(:last-child)::after { display: none; }
    .faq-question h3 { font-size: 1rem; }
    .faq-answer p { padding: 0 1.5rem 1.25rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-border {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-red); }
::selection { background: var(--primary-red); color: var(--white); }

/* Custom Fixes */
.services-hero { padding: 80px 0 !important; }
.projects-grid { gap: 24px !important; }
.portfolio-filters { margin-bottom: 40px; }
.accent-purple { background: linear-gradient(135deg,#0ea5e9,#14b8a6) !important; }
.footer-cta, .purple-section { background: linear-gradient(135deg,#111827,#0f172a) !important; }
.hero-banner-custom { border-radius: 24px; overflow: hidden; margin-top: 30px; }
.hero-banner-custom img { width: 100%; height: 420px; object-fit: cover; }
.hero-banner { padding: 20px 5% 40px; background: #08111f; }
.trusted-by, .cta-section { background: linear-gradient(135deg,#08111f,#0f172a) !important; }
.author-info, .testimonial-author { display: none !important; }
.services .container { gap: 20px !important; }

/* AOS Fallback */
[data-aos] { transition-property: opacity, transform; }
[data-aos][data-aos][data-aos-duration='800'] { transition-duration: 800ms; }
html:not(.aos-initialized) [data-aos] { opacity: 1 !important; transform: none !important; }

/* Logo & Brand */
.loader-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: pulse 1.5s infinite ease-in-out;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.company-brand .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.company-name {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}