/* HiQurateOps - Premium Cybersecurity Design with Advanced Animations */

/* ============================================
   CSS VARIABLES - Dark Cybersecurity Theme
   ============================================ */
:root {
    /* Professional Steel Blue Cybersecurity Palette */
    --cyber-primary: #7eb8da;
    /* Steel blue - main accent */
    --cyber-secondary: #5a9bbd;
    /* Medium steel blue */
    --cyber-accent: #4a8ab0;
    /* Deeper steel blue */
    --cyber-glow: #92c5df;
    /* Light steel blue glow */
    --cyber-dim: #4682b4;
    /* Standard steel blue */
    --cyber-dark: #2c5d7c;
    /* Deep steel blue */

    /* Dark Blue-Gray Backgrounds (Lighter palette) */
    --bg-deepest: #0f1520;
    --bg-deep: #141c28;
    --bg-primary: #1a2332;
    --bg-secondary: #212c3d;
    --bg-card: #283548;
    --bg-card-hover: #2f3e54;

    /* Text Colors */
    --text-primary: #e8f4f8;
    --text-secondary: #a8c5cc;
    --text-muted: #6a8a90;
    --text-glow: #d0f0f0;

    /* Gradients - Steel Blue Family */
    --gradient-cyber: linear-gradient(135deg, #7eb8da 0%, #5a9bbd 100%);
    --gradient-glow: linear-gradient(135deg, #92c5df 0%, #7eb8da 100%);
    --gradient-subtle: linear-gradient(135deg, #4682b4 0%, #2c5d7c 100%);
    --gradient-dark: linear-gradient(180deg, #0f1520 0%, #1a2332 50%, #141c28 100%);
    --gradient-card: linear-gradient(135deg, rgba(40, 53, 72, 0.95) 0%, rgba(47, 62, 84, 0.95) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max-width: 1400px;

    /* Shadows & Glows - Cohesive Cyan */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 24px 70px rgba(0, 0, 0, 0.8);
    --glow-primary: 0 0 20px rgba(0, 240, 255, 0.3);
    --glow-secondary: 0 0 20px rgba(0, 212, 170, 0.3);
    --glow-intense: 0 0 30px rgba(0, 240, 255, 0.5);

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

    /* ============================================
       COMPAT / ALIASES (used throughout the CSS)
       ============================================ */
    --cyber-blue: var(--cyber-primary);
    --cyber-teal: #00d4aa;
    --cyber-purple: #a855f7;

    --gradient-blue-purple: linear-gradient(135deg, var(--cyber-blue) 0%, var(--cyber-purple) 100%);

    --glow-blue: 0 0 20px rgba(126, 184, 218, 0.35);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.35);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-deepest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(0, 212, 255, 0.03) 41px),
        repeating-linear-gradient(90deg, rgba(168, 85, 247, 0.03) 0px, transparent 1px, transparent 40px, rgba(168, 85, 247, 0.03) 41px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* ============================================
   GLOBAL LOADER (shared across pages)
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    background: #0f1520;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#loader .loader-status {
    display: none !important;
}

.loader-logo {
    width: 120px;
    margin-bottom: 4rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
}

.loader-progress-container {
    width: 320px;
    height: 2px;
    background: rgba(0, 240, 255, 0.05);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.loader-progress-bar {
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-blue);
    box-shadow: 0 0 20px var(--cyber-blue);
    animation: progressMove 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyber-blue);
    margin-top: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
    display: none !important;
}

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

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    text-shadow: 0 0 60px rgba(0, 240, 255, 0.3);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text-glow);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-primary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: var(--cyber-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--cyber-purple);
    text-shadow: var(--glow-blue);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(126, 184, 218, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 240, 255, 0.5) 50%,
            transparent 100%);
    opacity: 0.3;
    z-index: 1;
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--cyber-blue),
            #fff,
            var(--cyber-blue),
            transparent);
    box-shadow: 0 0 20px var(--cyber-blue);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

header:hover::after,
header.scrolled::after {
    width: 100%;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.9);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.23));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.5));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    align-items: center;
}

nav a {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

nav a::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--cyber-blue);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--cyber-blue);
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

nav a:hover::before {
    opacity: 1;
    top: -5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-blue), #fff);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--cyber-blue);
}

nav a:hover::after {
    width: 100%;
}

.stage-number-bg {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: var(--gradient-blue-purple);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-blue);
}

/* ============================================
   HERO SECTION - ULTRA PREMIUM
   ============================================ */
/* ============================================
   HERO SECTION - ULTRA PREMIUM REDESIGN
   ============================================ */
.hero {
    background: var(--bg-deepest);
    color: var(--text-primary);
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_bg_new.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.2);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-deepest) 80%);
    z-index: 2;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge {
    padding: 0.75rem 1.8rem;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 240, 255, 0.15),
            transparent);
    animation: badgeScan 4s linear infinite;
}

.hero-badge span {
    color: var(--cyber-blue);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--cyber-blue));
}

.hero-badge:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-blue);
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

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

    100% {
        left: 100%;
    }
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 20%, #7eb8da 50%, #5a9bbd 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: titleEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Floating Terminal Element */
.floating-terminal {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 320px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyber-blue);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 15;
    animation: float 8s ease-in-out infinite, fadeInUp 1s ease-out 1s both;
    text-align: left;
}

.terminal-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-line {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.terminal-line .cmd {
    color: #fff;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }

    .floating-terminal {
        display: none;
    }
}

/* ============================================
   VIDEO BACKGROUND SECTION
   ============================================ */
.video-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: var(--bg-deep);
}

.video-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--glow-blue);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.video-overlay-content h3 {
    color: var(--text-glow);
    margin-bottom: 1rem;
}

.video-overlay-content p {
    color: var(--text-secondary);
}

/* ============================================
   SECTION BACKGROUNDS - PREMIUM DEPTH
   ============================================ */
/* ============================================
   SECTION HIGHLIGHTS & GLOWS
   ============================================ */
.premium-highlight-section {
    position: relative;
    border-top: 1px solid rgba(126, 184, 218, 0.1);
    border-bottom: 1px solid rgba(126, 184, 218, 0.1);
}

.section-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.glow-text,
.glow-title {
    position: relative;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.glow-text:hover {
    animation: titleGlow 2s ease-in-out infinite;
    cursor: default;
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 50px rgba(0, 240, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

.glow-text::after,
.glow-title::after {
    display: none;
    /* remove default underline if any */
}

.cta-premium-box {
    background: var(--gradient-card);
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-premium-box:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8), 0 0 80px rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
}

.cta-premium-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
    animation: rotate 15s linear infinite;
}

section {
    position: relative;
    overflow: hidden;
}

#what-we-do {
    background: radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 40%),
        var(--bg-deep);
}

#what-we-do::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

/* ============================================
   WHAT WE DO (CAPABILITIES) - 4 CARD GRID
   ============================================ */
#what-we-do.capabilities-section {
    position: relative;
}

#what-we-do .capabilities-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

#what-we-do .capabilities-grid>* {
    min-width: 0;
}

#what-we-do .capability-card {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(15, 20, 35, 0.78) 0%, rgba(10, 15, 25, 0.9) 100%);
    border: 1px solid rgba(126, 184, 218, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s, box-shadow 0.45s;
    display: block;
}

#what-we-do .capability-card:hover {
    transform: translateY(-10px);
    border-color: rgba(126, 184, 218, 0.55);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5), 0 0 40px rgba(126, 184, 218, 0.12);
}

#what-we-do .cap-card-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 10%, rgba(126, 184, 218, 0.14), transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(90, 155, 189, 0.12), transparent 55%);
    opacity: 0.9;
}

#what-we-do .capability-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(126, 184, 218, 0.08), transparent);
    transform: translateX(-110%);
    transition: transform 1s ease;
}

#what-we-do .capability-card:hover::after {
    transform: translateX(110%);
}

#what-we-do .cap-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#what-we-do .cap-tag {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyber-primary);
    background: rgba(126, 184, 218, 0.08);
    border: 1px solid rgba(126, 184, 218, 0.2);
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

#what-we-do .cap-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(126, 184, 218, 0.08);
    border: 1px solid rgba(126, 184, 218, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 30px rgba(126, 184, 218, 0.08);
}

#what-we-do .cap-icon-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 12px rgba(126, 184, 218, 0.25));
    transform: translateZ(0);
}

#what-we-do .capability-card:hover .cap-icon-box img {
    animation: capIconFloat 2.8s ease-in-out infinite;
}

@keyframes capIconFloat {

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

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

#what-we-do .cap-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

#what-we-do .cap-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

#what-we-do .cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}

#what-we-do .cap-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

#what-we-do .cap-list li:last-child {
    border-bottom: none;
}

#what-we-do .cap-list li::before {
    content: '→';
    color: var(--cyber-primary);
    font-weight: 900;
}

/* Proof strip */
.proof-strip {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.proof-item {
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(126, 184, 218, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(15, 20, 35, 0.7);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.proof-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(126, 184, 218, 0.08), transparent);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
}

.proof-item:hover::after {
    transform: translateX(120%);
}

.proof-label {
    font-family: var(--font-mono);
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--cyber-primary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.proof-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

@media (max-width: 1200px) {
    #what-we-do .capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    #what-we-do .capabilities-grid {
        grid-template-columns: 1fr;
    }

    #what-we-do .cap-content {
        padding: 2rem 1.5rem;
    }
}

/* Respect accessibility preferences */
@media (prefers-reduced-motion: reduce) {

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

#abc-framework {
    background: radial-gradient(circle at 80% 10%, rgba(126, 184, 218, 0.07) 0%, transparent 50%),
        var(--bg-primary);
}

#abc-framework::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237eb8da' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#who-we-are {
    background: var(--bg-deepest);
    position: relative;
    overflow: hidden;
}

.forensic-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.02);
    font-family: var(--font-mono);
    z-index: 0;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.forensic-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 240, 255, 0.03) 50%,
            transparent 50.1%,
            transparent 100%);
    background-size: 100% 4px;
    animation: forensicScan 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.forensic-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(126, 184, 218, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

@keyframes forensicScan {
    from {
        background-position: 0 -100px;
    }

    to {
        background-position: 0 1000px;
    }
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.content-tag {
    font-family: var(--font-mono);
    color: var(--cyber-blue);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-tag::after {
    content: '';
    height: 1px;
    width: 50px;
    background: var(--cyber-blue);
    opacity: 0.5;
}

.premium-lead {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.standard-para {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.concept-card {
    background: rgba(18, 18, 26, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--cyber-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
    box-shadow: 0 0 15px var(--cyber-blue);
}

.concept-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(25, 25, 35, 0.8);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.concept-card:hover::before {
    transform: scaleY(1);
}

.concept-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.concept-number {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--bg-deepest);
    background: var(--cyber-blue);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 900;
}

.concept-header h4 {
    font-size: 1.2rem;
    color: var(--text-glow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.concept-body blockquote {
    color: var(--cyber-teal);
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-left: 2px solid var(--cyber-teal);
    padding-left: 1.5rem;
}

.concept-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-text {
    color: var(--cyber-blue);
    font-weight: 700;
}

@media (max-width: 992px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .premium-lead {
        font-size: 1.5rem;
    }
}

#vision {
    background: radial-gradient(circle at 30% 70%, rgba(0, 240, 255, 0.05) 0%, transparent 40%),
        var(--bg-deepest);
}

/* Vision Section Redesign */
.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.vision-statement {
    margin-bottom: 4rem;
}

.vision-lead {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

.highlight-word {
    color: var(--cyber-blue);
    font-weight: 700;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-blue);
    opacity: 0.5;
}

.pain-word {
    color: #ff6b6b;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 107, 107, 0.5);
    opacity: 0.85;
}

.vision-grid {
    margin-bottom: 4rem;
}

.vision-intro h3 {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vision-pillar {
    background: linear-gradient(160deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 15, 30, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-left: 3px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vision-pillar:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 240, 255, 0.3);
    border-left-color: var(--cyber-blue);
    background: linear-gradient(160deg, rgba(25, 30, 50, 0.95) 0%, rgba(15, 20, 35, 1) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.pillar-keyword {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.pillar-contrast {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vision-closing p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

@media (max-width: 600px) {
    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .vision-lead {
        font-size: 1.5rem;
    }
}

#our-approach {
    background: linear-gradient(180deg, var(--bg-deepest) 0%, rgba(10, 15, 25, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Our Approach Section Redesign */
.approach-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.approach-tagline {
    margin-bottom: 2rem;
}

.approach-tagline h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.approach-intro {
    margin-bottom: 4rem;
}

.approach-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    perspective: 1500px;
}

.approach-card-3d {
    height: 340px;
    position: relative;
    perspective: 1500px;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.approach-card-3d:hover .card-3d-inner,
.approach-card-3d.flipped .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.1);
    overflow: hidden;
}

/* Background grid for front */
.card-3d-front {
    background:
        linear-gradient(rgba(20, 25, 45, 0.95), rgba(10, 15, 30, 1)),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    border-top: 3px solid rgba(0, 240, 255, 0.2);
    z-index: 2;
    text-align: left;
}

/* Corner decoration for front */
.card-3d-front::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--cyber-blue);
    border-right: 2px solid var(--cyber-blue);
    opacity: 0.3;
}

/* Scanning line animation */
.card-3d-front::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.1), transparent);
    animation: scanningLine 4s linear infinite;
}

@keyframes scanningLine {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

.card-3d-back {
    background: linear-gradient(160deg, rgba(15, 20, 35, 1) 0%, rgba(0, 15, 30, 1) 100%);
    border-top: 3px solid var(--cyber-blue);
    transform: rotateY(180deg);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05);
}

.approach-card-3d:hover .card-3d-front {
    border-color: rgba(0, 240, 255, 0.4);
}

.pillar-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.08);
    /* Faded background number */
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
    z-index: 1;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

/* Sub-label for front face */
.card-3d-front .pillar-title::after {
    content: 'STRATEGY PHASE';
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
    color: var(--cyber-blue);
    margin-top: 0.75rem;
    opacity: 0.6;
}

.pillar-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    border-left: 2px solid var(--cyber-blue);
    padding-left: 1.25rem;
}

#our-approach .approach-closing {
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .approach-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

    .approach-card-3d {
        height: 280px;
    }
}

.approach-closing {
    margin-top: 2rem;
}

.approach-closing p {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

@media (max-width: 600px) {
    .approach-pillars {
        grid-template-columns: 1fr;
    }

    .approach-tagline h3 {
        font-size: 1.8rem;
    }
}

.approach-bg-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.approach-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, #000 80%);
}

.subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.premium-subtitle {
    color: var(--cyber-blue);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.subtitle-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-cyber);
    box-shadow: 0 0 15px var(--cyber-blue);
    border-radius: 2px;
    animation: lineDraw 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center;
}

@keyframes lineDraw {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Threat Intelligence Section */
.threat-section {
    background: linear-gradient(180deg, rgba(10, 15, 25, 1) 0%, var(--bg-deepest) 50%, rgba(10, 15, 25, 1) 100%);
    position: relative;
    overflow: hidden;
}

.threat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.threat-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.threat-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .threat-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.threat-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.threat-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50px;
}

.threat-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.threat-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.threat-cta {
    margin-top: 2rem;
}

.threat-category-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.threat-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.3), transparent);
}

.threat-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1400px) {
    .threat-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.threat-stat {
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.9) 0%, rgba(15, 20, 35, 0.95) 100%);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all 0.4s ease;
    text-align: center;
}

.threat-stat:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 107, 0.1);
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 0.75rem;
    font-family: var(--font-mono);
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.threat-warning {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.warning-bar {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, var(--cyber-blue));
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.threat-warning p {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 992px) {
    .threat-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .threat-headline {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .threat-stats-grid {
        grid-template-columns: 1fr;
    }
}

#final-cta {
    background: var(--bg-deep);
}

/* Premium Checkmarks in Vision */
.premium-check {
    padding: 1.5rem;
    background: rgba(126, 184, 184, 0.03);
    border: 1px solid rgba(126, 184, 184, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.premium-check:hover {
    background: rgba(126, 184, 184, 0.1);
    transform: translateX(15px) scale(1.02);
    border-color: var(--cyber-blue);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 240, 255, 0.1);
}

.check-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--cyber-blue));
}



.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.03), transparent 40%),
        radial-gradient(circle at bottom right, rgba(126, 184, 218, 0.03), transparent 40%);
    pointer-events: none;
}

footer {
    background: var(--bg-deepest);
    color: var(--text-primary);
    padding: 6rem 20px;
    text-align: center;
    border-top: 1px solid rgba(126, 184, 218, 0.2);
    position: relative;
    z-index: 10;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-cyber);
    box-shadow: var(--glow-blue);
}

/* ============================================
   SECTION TITLES - PROFESSIONAL & SOOTHING
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-mono);
    color: var(--cyber-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.section-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 30%, #a8c5cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ============================================
   SERVICE CARDS - PROFESSIONAL MINIMALISM
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.service-card {
    height: 400px;
    perspective: 1500px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

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

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.service-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.9) 0%, rgba(20, 30, 50, 0.9) 100%);
    border-color: var(--cyber-blue);
    padding: 2.5rem;
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.service-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    color: var(--cyber-blue);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    text-align: center;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    opacity: 0.8;
}

.back-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.back-title {
    font-size: 1.2rem;
    color: var(--cyber-blue);
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.back-visual-full {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.back-visual-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.1);
}

.back-features {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

.back-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-features li::before {
    content: '→';
    color: var(--cyber-blue);
    font-weight: bold;
}


/* ============================================
   CONTACT FORM - FUTURISTIC
   ============================================ */
.contact-form {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(0, 212, 255, 0.3),
            transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

.contact-form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-glow);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.1);
}

.contact-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 2rem;
}

/* ============================================
   PRICING CARDS - COMPACT VERSION
   ============================================ */
/* ============================================
   ABC PIPELINE - PREMIUM REDESIGN
   ============================================ */
.abc-hero-visual {
    max-width: 550px;
    margin: 1.5rem auto 0;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.1);
    border: 2px solid rgba(126, 184, 218, 0.3);
    background: rgba(10, 10, 15, 0.5);
}

.abc-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ABC Static Cards Row */
.abc-stages-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.abc-card {
    flex: 1;
    max-width: 400px;
    background: linear-gradient(145deg, rgba(15, 20, 35, 0.9) 0%, rgba(10, 15, 25, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.abc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.abc-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--cyber-blue);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 240, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.abc-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.abc-letter {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 180, 200, 0.1) 100%);
    border: 2px solid var(--cyber-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--cyber-blue);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4), inset 0 0 15px rgba(0, 240, 255, 0.1);
    transition: all 0.4s ease;
}

.abc-card:hover .abc-letter {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.abc-phase {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cyber-blue);
    background: rgba(0, 240, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.abc-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.abc-card-subtitle {
    font-size: 1rem;
    color: var(--cyber-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.abc-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.abc-card-features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.abc-card-features li:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.abc-card-features li::before {
    content: '→';
    color: var(--cyber-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

.abc-card-features li:last-child {
    border-bottom: none;
}

.abc-card .btn-outline {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.abc-header-visual img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.abc-visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.abc-main-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.abc-header-visual:hover .abc-main-img {
    transform: scale(1.03);
}

.abc-pipeline {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}

.abc-pipeline::before {
    display: none;
    /* remove vertical line */
}

.abc-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
    pointer-events: none;
}

.abc-stage {
    flex: 1;
    height: 420px;
    perspective: 2000px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.abc-stage-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.abc-stage:hover .abc-stage-inner {
    transform: rotateY(180deg);
}

.abc-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center content vertically */
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(30px);
}

.abc-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(20, 30, 50, 0.95) 100%);
    border: 1px solid var(--cyber-blue);
    backdrop-filter: blur(30px);
    transform: rotateY(180deg);
}

.abc-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(20, 30, 50, 0.95) 100%);
    border-color: var(--cyber-blue);
    justify-content: center;
    text-align: left;
}

.abc-stage:hover .abc-front {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.abc-stage::before {
    display: none;
    /* remove horizontal connectors */
}

.abc-stage:hover {
    transform: translateY(-8px) scale(1.02);
    /* Adjusted for flex-direction: column */
    border-color: rgba(0, 240, 255, 0.5);
    background: rgba(20, 20, 35, 0.7);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 240, 255, 0.2);
}

.abc-stage:hover::after {
    transform: translateX(100%);
}

.pipeline-node {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    left: auto;
    transform: none;
    width: 35px;
    height: 35px;
    background: var(--bg-deepest);
    border: 4px solid var(--cyber-blue);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 900;
    color: var(--cyber-blue);
    box-shadow: 0 0 25px var(--cyber-blue);
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.abc-stage:hover .pipeline-node {
    background: var(--cyber-blue);
    color: var(--bg-deepest);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 40px var(--cyber-blue);
}

.stage-visual {
    display: block;
    width: 100%;
    height: 160px;
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.stage-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.6s ease;
}

.stage-content {
    position: relative;
}

.stage-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    color: var(--cyber-blue);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stage-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a8c5cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stage-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.stage-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stage-features li {
    font-size: 0.85rem;
}

.stage-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.stage-features li::before {
    content: '▶';
    font-size: 0.8rem;
    color: var(--cyber-blue);
}

.stage-number-bg {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .abc-stage {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .abc-pipeline {
        padding-left: 60px;
    }
}

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

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

.pricing-card.featured {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: var(--shadow-xl), var(--glow-purple);
    position: relative;
}

/* Most Popular Badge - using a separate approach */
.pricing-card.featured .icon-wrapper::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -80px;
    right: -120px;
    background: var(--gradient-blue-purple);
    color: var(--text-primary);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
    box-shadow: var(--glow-purple);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.01);
}

.pricing-card>* {
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue-purple);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--glow-blue);
    animation: float 3s ease-in-out infinite;
}

.pricing-card:hover .icon-wrapper {
    animation: float 3s ease-in-out infinite, rotate 10s linear infinite;
}

.pricing-card h3 {
    color: var(--text-glow);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.pricing-card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    padding-left: 2rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyber-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--cyber-blue);
    font-weight: bold;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* ============================================
   BUTTONS - ULTRA PREMIUM REDESIGN
   ============================================ */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--cyber-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--cyber-blue);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 240, 255, 0.3);
    background: rgba(18, 18, 26, 0.9);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    background: var(--gradient-blue-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    display: block;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
    /* Fixed header offset for anchor navigation */
    scroll-margin-top: 110px;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 2rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-blue-purple);
    border-radius: var(--radius-full);
    box-shadow: var(--glow-blue);
    animation: pulse 2s ease-in-out infinite;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.container-wide {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* ============================================
   CONTACT FORM - FUTURISTIC
   ============================================ */
.contact-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contact .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

/* ============================================
   QUICK JUMP BAR & PATH SELECTOR
   ============================================ */
.quick-jump {
    position: fixed;
    top: 18px;
    right: 20px;
    display: none;
    /* hide on desktop to avoid duplicate bars */
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    background: rgba(10, 15, 25, 0.85);
    border: 1px solid rgba(126, 184, 218, 0.2);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    z-index: 1200;
    backdrop-filter: blur(12px);
}

.quick-jump a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.quick-jump a:hover {
    color: var(--text-glow);
    border-color: rgba(126, 184, 218, 0.25);
    box-shadow: var(--glow-blue);
}

.path-selector {
    background: var(--bg-deepest);
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(126, 184, 218, 0.1);
    border-bottom: 1px solid rgba(126, 184, 218, 0.1);
    z-index: 20;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.path-card {
    background: rgba(40, 53, 72, 0.4);
    border: 1px solid rgba(126, 184, 218, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-cyber);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.path-card:hover {
    transform: translateY(-12px);
    background: rgba(47, 62, 84, 0.8);
    border-color: var(--cyber-blue);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.15);
}

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

.path-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.4s ease;
}

.path-card:hover .path-icon-container {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyber-blue);
}

.path-icon-container img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

.path-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--cyber-blue);
    text-transform: uppercase;
    font-weight: 700;
}

.path-card h3 {
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
}

.path-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

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

    .path-card {
        padding: 2rem;
    }
}

/* ============================================
   ACCORDION (MOBILE) FOR ABC & APPROACH
   ============================================ */
.accordion-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.accordion-icon {
    margin-left: auto;
    font-weight: 800;
    color: var(--cyber-blue);
}

.abc-card-body,
.approach-pillar .accordion-body {
    transition: max-height 0.35s ease;
}

.approach-pillar-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.approach-pillar .accordion-body {
    margin-top: 0.4rem;
}

.accordion-collapsible.open .accordion-icon {
    color: var(--cyber-purple);
}

@media (max-width: 900px) {
    .quick-jump {
        display: flex;
        top: auto;
        bottom: 18px;
        right: 12px;
        left: 12px;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.2rem;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.4rem;
        -webkit-overflow-scrolling: touch;
    }

    .quick-jump::-webkit-scrollbar {
        display: none;
    }

    .quick-jump a {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .accordion-body {
        max-height: 0;
        overflow: hidden;
    }

    .accordion-collapsible.open .accordion-body {
        max-height: 1200px;
    }

    .accordion-icon {
        display: inline-block;
    }
}

@media (min-width: 901px) {
    .accordion-icon {
        display: none;
    }

    .accordion-body {
        max-height: none !important;
    }
}

/* ============================================
   CONTACT CTA INLINE
   ============================================ */
.contact-cta-inline {
    margin-bottom: 2.5rem;
}

/* Tabs */
.tab-button.btn-primary {
    color: #0b1020;
}

/* Lightbox */
.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    padding: 1rem;
}

.lightbox-backdrop.active {
    display: flex;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 36, 57, 0.6);
    backdrop-filter: blur(30px);
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glow-blue);
    border: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 10;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-glow);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    background: rgba(10, 14, 39, 0.5);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15), var(--glow-blue);
    background: rgba(22, 27, 46, 0.7);
}

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

/* ============================================
   FUTURISTIC CONTACT FORM
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

/* Info Panel */
.contact-info-panel {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.security-badge-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.badge-icon {
    font-size: 3rem;
    animation: pulse 3s ease-in-out infinite;
}

.badge-text h3 {
    color: var(--cyber-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.badge-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(10, 14, 39, 0.8);
    transform: translateX(10px);
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue-purple);
    border-radius: var(--radius-md);
    box-shadow: var(--glow-blue);
}

.stat-value {
    color: var(--text-glow);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateX(10px);
}

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

.method-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.method-item a {
    color: var(--cyber-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-item a:hover {
    color: var(--cyber-purple);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    padding: 1rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius-md);
    color: var(--cyber-teal);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

/* Form Panel */
.contact-form-panel {
    background: var(--gradient-card);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(168, 85, 247, 0.2);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-field label {
    color: var(--text-glow);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.3rem;
    z-index: 2;
    pointer-events: none;
}

.textarea-icon {
    top: 1.5rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    background: rgba(10, 14, 39, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 1.25rem;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), var(--glow-blue);
    background: rgba(10, 14, 39, 0.9);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--gradient-blue-purple);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--glow-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300%;
    height: 300%;
}

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

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

.btn-icon {
    font-size: 1.3rem;
    animation: float 2s ease-in-out infinite;
}

.form-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: -0.5rem;
}

.disclaimer-icon {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        order: 2;
    }

    .contact-form-panel {
        order: 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-panel {
        padding: 2rem 1.5rem;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 1.25rem 1rem 1.25rem 3.5rem;
    }
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger:nth-child(4) {
    transition-delay: 0.4s;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes gradientFlow {

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

@keyframes float {

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

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

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

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

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

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

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

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

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

@keyframes backgroundShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   RESPONSIVE DESIGN - PREMIUM MOBILE EXP
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .abc-pipeline {
        flex-direction: column !important;
        gap: 2rem;
        padding-left: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .abc-pipeline::before,
    .abc-stage::before {
        display: none;
    }

    .abc-stage {
        flex: none;
        width: 100% !important;
        grid-template-columns: 1fr !important;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .pipeline-node {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto 2rem;
    }

    .abc-stages-row {
        flex-direction: column;
        align-items: center;
    }

    .abc-card {
        max-width: 100%;
    }

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

    .threat-columns {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .approach-pillars {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .who-we-are-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Mobile Navigation Modern */
    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 2rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
    }

    nav ul.active {
        display: flex;
    }

    /* Section Spacing */
    section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .section-subtitle {
        font-size: 0.7rem;
    }

    /* Hero Section */
    .hero {
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-badge-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.6rem 1rem;
        width: fit-content;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Grid Layouts to 1 Column */
    .capabilities-grid,
    .features-grid,
    .pricing-grid,
    .approach-pillars,
    .vision-pillars,
    .who-we-are-content {
        grid-template-columns: 1fr !important;
    }

    .approach-card-3d {
        height: 280px;
    }

    /* Form & Contact */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .contact-form-panel {
        padding: 2rem 1.5rem;
    }

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

    .contact-methods {
        padding: 0;
    }

    .method-item {
        padding: 1.25rem;
    }

    /* Footer */
    footer {
        padding: 4rem 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-main-title {
        font-size: 1.8rem;
    }

    .approach-card-3d {
        height: 250px;
    }
}

/* ============================================
   PARTICLE ANIMATION (Optional Enhancement)
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--cyber-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

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