:root {
    --bg-dark: #0a0a0a;
    /* Slightly lighter deep blue/black */
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    /* Progress Bar */
    --progress-height: 4px;
    --progress-color: var(--gradient-main);
    --primary: #FF6B00;
    /* Vibrant Orange */
    --primary-glow: rgba(255, 107, 0, 0.4);
    --secondary: #ffffff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #FF6B00 0%, #FF9E40 100%);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;

    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 80px;

    /* Semantic Colors */
    --glass-border: rgba(255, 255, 255, 0.15);
    --icon-bg: rgba(255, 255, 255, 0.05);
    --header-scrolled-bg: rgba(10, 10, 15, 0.85);
    --footer-bg: transparent;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Fluid Typography */
    --h1-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --h2-size: clamp(2rem, 4vw + 1rem, 3rem);
    --h3-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    --body-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    --small-size: 0.875rem;

    /* Spacing */
    --section-spacing: clamp(60px, 8vw, 120px);
    --container-padding: clamp(20px, 5vw, 40px);
    --header-height: 80px;
    --border-radius: 16px;
    --card-padding: clamp(24px, 4vw, 40px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    /* Increased for better readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: var(--body-size);
}

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--progress-height);
    background: transparent;
    z-index: 1001;
    /* Above header */
}

.scroll-progress-bar {
    height: 100%;
    background: var(--progress-color);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    /* Pill shape for more modern feel */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    border: 1px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-main);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
    color: white;
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

@media (hover: hover) {
    .btn-outline:hover {
        border-color: var(--text-main);
        background: rgba(255, 255, 255, 0.05);
    }
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: var(--header-scrolled-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

/* ... existing code ... */

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 1px solid var(--glass-border);
    /* Enhanced top border for depth */
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* ... existing code ... */

.feature-icon {
    font-size: 3rem;
    margin-bottom: 32px;
    background: var(--icon-bg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

/* ... existing code ... */

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--icon-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    /* Ensure no underline */
}

.logo img {
    height: 48px;
    /* Adjusted for better visibility */
    width: auto;
    object-fit: contain;
}

/* Removed legacy .logo-iconStyles */

.nav-list {
    display: flex;
    gap: 32px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.nav.active {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: slideDown 0.3s ease forwards;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.nav.active .nav-link {
    font-size: 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-short {
    min-height: 50vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(0.8) brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.4), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 32px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(14, 165, 233, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 650px;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Sections */
.section-padding {
    padding: 64px 0;
    /* Reduced from 80px for tighter feel */
}

.pt-small {
    padding-top: 20px;
}

/* Responsive Header Spacing Utility */
/* Default (Mobile): Smaller padding */
.page-header-spacing {
    padding-top: 120px;
    padding-bottom: 40px;
}

/* Desktop: The requested large spacing */
@media (min-width: 992px) {
    .page-header-spacing {
        padding-top: 180px;
        padding-bottom: 40px;
    }
}

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

.section-header {
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-left: auto;
    margin-right: auto;
    /* Ensure it centers if width is constrained */
    max-width: 600px;
    /* Optional: limit width for better readability */
    text-align: center;
}

/* About Section */
.about-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-text strong {
    color: var(--text-main);
    font-weight: 600;
}

.capabilities-grid {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.check-icon {
    color: var(--secondary);
    font-weight: bold;
}

/* --- Refactored & New Utilities --- */

/* Premium Glow Effects */
.glow-text {
    text-shadow: 0 0 20px var(--primary-glow);
}

.position-relative {
    position: relative !important;
}

.glow-card-border {
    position: relative;
}

.glow-card-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
}

.glow-card-border:hover::after {
    opacity: 0.3;
}

/* Specific Page Overrides (Migrated from Inline) */
.about-hero {
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 16px;
}

.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.about-content-wrapper {
    padding-top: 20px;
    padding-bottom: 80px;
}

.about-main-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.about-text-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 24px;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Service Teaser Specifics */
.services-teaser-bg {
    background: rgba(255, 255, 255, 0.02);
}

/* Stats Section */
.stats-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 20%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Case Study Teaser */
.case-study-teaser-bg {
    background: rgba(255, 255, 255, 0.02);
}

.case-study-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.case-study-col {
    flex: 1 1 500px;
}

.case-study-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    /* Enforce aspect ratio */
    background: #111;
}

.case-study-visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    position: relative;
}

.case-study-visual-placeholder::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.2;
}

.case-study-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.4);
}

.case-study-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.case-study-stat-title {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
}

.case-study-stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mission Vision Contact Icons */
.mission-vision-grid {
    align-items: stretch;
}

.mission-vision-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-mission {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.icon-vision {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Footer & CTA */
.cta-bg {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(20, 20, 20, 0.8) 100%);
}


/* Features/Services */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* VAPT Grid Fix for 4 items (2x2 balance) */
@media (min-width: 992px) {
    .balanced-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 1px solid var(--glass-border);
    /* Enhanced top border for depth */
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .glass-card {
        padding: 24px;
    }
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



/* Certification Grid */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cert-card {
    text-align: center;
    padding: 32px 24px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 200px;
    /* Fixed width for uniform look */
    min-height: 240px;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
    /* Orange glow */
    border-color: rgba(255, 107, 0, 0.3);
}

.cert-logo-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    /* Slight backing */
    border-radius: 50%;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.cert-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%);  Removed for full color */
    opacity: 1;
    /* Increased from 0.7 for vibrancy */
    transition: all 0.3s ease;
}

.cert-card:hover .cert-logo {
    transform: scale(1.1);
}

/* Methodology Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1;
    /* Ensure it doesn't collapse */
    position: relative;
    z-index: 10;
    margin-right: -30px;
    /* Force visual overlap */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    /* Lift off background */
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-left: 50px !important;
    /* Make room for the number */
}

/* Fallback Typography Placeholder */
.cert-placeholder {
    display: none;
    /* Hidden by default, shown via JS onerror */
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.cert-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-main);
}

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

/* Cyber Insights Section */
.insights-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.insight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.insight-card:hover::before {
    transform: translateX(100%);
}

.insight-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insight-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.insight-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Trusted Partners Marquee */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 80px;
    /* Added gap between partners and services */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-content {
    display: inline-block;
    animation: scroll 60s linear infinite;
    /* Adjusted for 21 logos */
}

/* Static Partners Grid */
.partners-static-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.partner-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 24px;
    height: 80px;
    min-width: 140px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo {
    display: block;
    max-height: 50px;
    width: auto;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
}

.clients-grid {
    display: none;
    /* Hide static grid */
}

.client-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 24px;
    margin: 0 20px;
    height: 100px;
    /* Increased height */
    min-width: 180px;
    /* Increased width */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-logo {
    display: block;
    max-height: 70px;
    /* Increased logo size */
    width: auto;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 32px;
    background: var(--icon-bg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.glass-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.glass-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.card-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.card-link:hover {
    color: var(--text-main);
}

/* Why Us */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.reason-item {
    position: relative;
    padding-left: 24px;
    border-left: 1px solid var(--border-color);
}

.reason-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
}

.reason-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.reason-item p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--icon-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    border-color: var(--primary);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    /* Ensure it's above other elements */
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 11;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 12;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-input-group {
    display: flex;
    gap: 12px;
}

.form-select {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    /* Remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    min-width: 110px;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-main);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 12;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.social-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.social-btn:hover::before {
    left: 100%;
}

.map-visual {
    width: 100%;
    height: 400px;
    background:
        radial-gradient(circle at center, rgba(14, 165, 233, 0.15), transparent 70%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    /* Enhanced CSS Grid Pattern */
    background-size: 100% 100%, 20px 20px, 30px 30px;
    background-position: center;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    opacity: 0.9;
}

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

    .map-visual {
        height: 250px;
    }
}

/* Footer */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 32px;
    font-size: 1.125rem;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-social-link:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    margin-top: 64px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Legal Pages Spacing */
.legal-header {
    padding-bottom: 32px;
}

.legal-content {
    padding-top: 0;
}

/* Animations - Removed fade-in animations for better visibility */
/* All content is now visible by default without JavaScript dependency */

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

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

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

    .hero-actions {
        flex-direction: column;
    }

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: #0f0f16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-content {
    padding: 40px;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    display: inline-block;
}

.modal-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

.modal-list {
    list-style: none;
}

.modal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.modal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Button Text Style for Learn More */
.btn-text {
    background: none;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: var(--text-main);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding-top: 2rem;
    /* Make space for number */
}

/* --- Visual Overhaul: About Page --- */

/* 1. Cybernetic Hero Background */
.cyber-grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: #050505;
    perspective: 1000px;
}

.cyber-grid-plane {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

@keyframes gridMove {
    0% {
        transform: rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: rotateX(60deg) translateY(80px) translateZ(-200px);
    }
}

.hero-glitch {
    position: relative;
    display: inline-block;
}

.hero-glitch::before,
.hero-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-glitch:hover::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.hero-glitch:hover::after {
    left: -2px;
    text-shadow: 1px 0 #ff00ff;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
    }

    40% {
        clip-path: inset(10% 0 50% 0);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
    }

    80% {
        clip-path: inset(30% 0 40% 0);
    }

    100% {
        clip-path: inset(10% 0 60% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
    }

    20% {
        clip-path: inset(30% 0 40% 0);
    }

    40% {
        clip-path: inset(80% 0 5% 0);
    }

    60% {
        clip-path: inset(10% 0 50% 0);
    }

    80% {
        clip-path: inset(60% 0 10% 0);
    }

    100% {
        clip-path: inset(20% 0 80% 0);
    }
}

/* 2. Timeline of Trust */
.timeline-section {
    position: relative;
    padding: 100px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    /* Reduced gap */
    position: relative;
    width: 100%;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    transform-origin: right center;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    transform-origin: left center;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px var(--primary-glow);
}

@media (max-width: 992px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .timeline-dot {
        left: 20px;
    }
}

.timeline-year {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

/* 3. Holographic Values Cards */
.holographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.holographic-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.holographic-card:hover {
    transform: rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.holographic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transform: rotate(45deg);
    animation: hologramShine 6s infinite linear;
    pointer-events: none;
}

@keyframes hologramShine {
    0% {
        transform: translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateY(100%) rotate(45deg);
    }
}

.holo-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    transition: transform 0.5s ease;
}

.holographic-card:hover .holo-icon-bg {
    transform: scale(1.2) rotate(-10deg);
}

.holo-content {
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
    /* 3D pop */
}

/* 4. Connected Philosophy Flow */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.flow-node {
    flex: 1;
    min-width: 250px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    padding: 30px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.05);
}

.flow-node:hover {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
    transform: scale(1.05);
    background: rgba(255, 107, 0, 0.05);
}

.flow-connector {
    flex: 0 0 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    display: none;
    /* Mobile hidden by default */
}

@media (min-width: 992px) {
    .flow-connector {
        display: block;
    }

    .flow-connector::after {
        content: '';
        position: absolute;
        top: -4px;
        left: 0;
        width: 10px;
        height: 10px;
        background: var(--primary);
        border-radius: 50%;
        animation: flowDot 2s infinite linear;
        box-shadow: 0 0 10px var(--primary);
    }
}

@keyframes flowDot {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.flow-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

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

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    text-align: center;
    padding: 40px 30px;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.stat-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

/* Compliance Section */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.compliance-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.compliance-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compliance-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

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

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Case Studies Page */
.case-study-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.case-study-block.reverse {
    flex-direction: row-reverse;
}

.case-study-content {
    flex: 1;
}

.case-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.case-study-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.case-summary {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item h4::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.detail-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-left: 30px;
}

.result-list {
    list-style: none;
    padding-left: 30px;
}

.result-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.result-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.case-study-visual {
    flex: 1;
    height: 500px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.visual-ransomware {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(0, 0, 0, 0.95)),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
        radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 40px 40px;
}

.visual-fintech {
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(0, 0, 0, 0.95)),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
        radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 40px 40px;
}

.visual-privacy {
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(0, 0, 0, 0.95)),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
        radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 40px 40px;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.case-study-visual-placeholder {
    width: 100%;
    height: 300px;
    background:
        linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(0, 0, 0, 0.95)),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
        radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 40px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.5);
}

/* Active Nav State */
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
    background: var(--primary);
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.theme-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sun-icon {
    display: none;
}

[data-theme="light"] .sun-icon {
    display: block;
}

[data-theme="light"] .moon-icon {
    display: none;
}

.visual-icon {
    font-size: 6rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    margin-top: 80px;
}

.cta-box h2 {
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .case-study-block {
        flex-direction: column;
        gap: 40px;
    }

    .case-study-block.reverse {
        flex-direction: column;
    }

    .case-study-visual {
        width: 100%;
        height: 300px;
    }
}

/* Case Study "Insight Grid" Layout */
.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 80px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-header-row {
    padding: 40px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.02), transparent);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .case-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* Metadata Pills */
.case-meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.meta-pill {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.meta-pill.industry {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.meta-pill.client {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-title-block h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-overview {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
}

/* Hero Stat Box */
.case-hero-stat {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid var(--primary);
    padding: 20px 30px;
    border-radius: 0 8px 8px 0;
    min-width: 200px;
    flex-shrink: 0;
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 5px;
}

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

/* The Grid Body */
.case-body-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .case-body-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-card {
    padding: 40px;
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    /* For mobile stacking */
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    transition: background 0.3s ease;
}

.grid-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 992px) {
    .grid-card {
        border-bottom: none;
    }

    .grid-card:last-child {
        border-right: none;
    }
}

/* Accents */
.accent-warning h4 {
    color: #ff9f43;
}

.accent-warning .card-icon {
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
}

.accent-info h4 {
    color: #54a0ff;
}

.accent-info .card-icon {
    background: rgba(84, 160, 255, 0.1);
    color: #54a0ff;
}

.accent-success h4 {
    color: #1dd1a1;
}

.accent-success .card-icon {
    background: rgba(29, 209, 161, 0.1);
    color: #1dd1a1;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.grid-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.grid-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.grid-card ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Impact */
.case-impact-footer {
    padding: 30px 40px;
    background: rgba(255, 107, 0, 0.05);
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-wrap: wrap;
    /* Ensure text wraps if needed */
    align-items: center;
    gap: 20px;
}

.impact-icon {
    font-size: 1.5rem;
}

.case-impact-footer p {
    margin: 0;
    color: var(--text-main);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
}

/* --- Blog / Insights Section --- */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog-card-image img,
.blog-placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img,
.blog-card:hover .blog-card-image .blog-placeholder-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-category {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title a {
    text-decoration: none;
    background: linear-gradient(to right, var(--text-main), var(--text-main));
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

.blog-card:hover .blog-title a {
    background-size: 100% 1px;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Featured Article Style override */
.blog-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
}

.blog-card.featured .blog-card-image {
    width: 50%;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--border-color);
}

.blog-card.featured .blog-card-content {
    width: 50%;
    padding: 60px;
    justify-content: center;
}

.blog-card.featured .blog-title {
    font-size: 2.5rem;
}

@media (max-width: 992px) {
    .blog-card.featured {
        flex-direction: column;
    }

    .blog-card.featured .blog-card-image,
    .blog-card.featured .blog-card-content {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .blog-card.featured .blog-card-content {
        padding: 30px;
    }

    .blog-card.featured .blog-title {
        font-size: 1.75rem;
    }
}

/* Page Hero */
.page-hero {
    padding-top: 180px;
    padding-bottom: 60px;
}

/* Blog Content Details */
.article-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(255, 107, 0, 0.05) 100%);
}

.article-header {
    max-width: 900px;
    margin: 0 auto;
}

.article-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    margin-top: 20px;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-main);
}

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

.article-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

@media (max-width: 992px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body h2 {
    font-size: 2rem;
    margin-top: 2em;
    margin-bottom: 0.75em;
    color: var(--text-main);
}

.article-body h3 {
    font-size: 1.5rem;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--secondary);
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 0 16px 16px 0;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.article-body li {
    margin-bottom: 0.5em;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2em;
}

/* Sidebar Widget */
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.sidebar-list li {
    margin-bottom: 12px;
}

.sidebar-list a {
    color: var(--text-muted);
}

.sidebar-list a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(10, 10, 10, 0));
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 40px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
}

.article-cta h3 {
    margin-top: 0;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 100px;
    color: white;
    font-family: var(--font-body);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* --- Final Polish & Mobile Optimization --- */

/* Mobile Grid Fixes: Prevent overflow and horizontal scroll on small devices */
@media (max-width: 576px) {

    .features-grid,
    .holographic-grid,
    .industries-grid,
    .testimonials-grid,
    .faq-grid,
    .stats-grid-container,
    .blog-grid {
        grid-template-columns: 1fr !important;
        /* Force single column on mobile */
        gap: 24px;
    }

    /* Adjust container padding for small screens */
    .container {
        padding: 0 20px;
    }

    /* Adjust Hero Typography for Mobile */
    .hero-title {
        font-size: 2.75rem;
        /* Ensure it fits */
    }

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

    /* Make buttons full width on very small screens for better touch targets */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* Tablet/Mobile Adjustments */
@media (max-width: 992px) {

    /* Ensure sidebar in blog details stacks correctly */
    .article-wrapper {
        grid-template-columns: 1fr;
    }

    /* Better spacing for page headers on mobile */
    .page-header-spacing {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    /* Mission/Vision grid spacing */
    .mission-vision-grid {
        gap: 30px;
    }
}

/* Enhancements: Smooth scrolling and text rendering */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhancements: Better Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* --- NEW: Bento Grid System (Why Us Page) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    backdrop-filter: blur(20px);
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

/* Bento spans */
.col-span-2 {
    grid-column: span 2;
}

.col-span-3 {
    grid-column: span 3;
}

.row-span-2 {
    grid-row: span 2;
}

/* Mobile fallback for Bento */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .col-span-2,
    .col-span-3 {
        grid-column: auto;
    }
}

/* Bento Content Styling */
.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

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

/* --- NEW: Process Timeline (Why Us Page) --- */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(255, 255, 255, 0.1));
}


/* --- NEW: Authority Strip (Why Us Page) --- */
.authority-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    margin-top: 40px;
}

.authority-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    user-select: none;
}

/* --- NEW: V2 Design (Why Us) - Holographic & Cinematic --- */

/* 1. Holographic Grid (Symmetrical 3-Col) */
.holo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.holo-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.holo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.5);
    /* Brand Primary Color Glow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.holo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.holo-card:hover::after {
    transform: translateX(100%);
}

.holo-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.holo-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.holo-desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1;
    /* Pushes content down if needed */
}

/* 2. Impact Metrics (Big Numbers) */
.impact-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.metric-item {
    flex: 1;
    min-width: 200px;
}

.metric-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Or gradient text */
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.metric-label {
    font-size: 1.1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* 3. Horizontal Protocol Steps */
.protocol-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

/* Connecting Line */
.protocol-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    /* Adjust to align with icons */
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.protocol-step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.protocol-icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.protocol-step-item:hover .protocol-icon-box {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.protocol-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.protocol-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mobile Adjustments for Protocol */
@media (max-width: 992px) {
    .protocol-steps {
        flex-direction: column;
        gap: 40px;
    }

    .protocol-steps::before {
        width: 2px;
        height: 100%;
        left: 25px;
        /* Align with dots on left */
        top: 0;
        right: auto;
    }

    .protocol-step-item {
        text-align: left;
        padding-left: 70px;
        /* Space for the line/icon */
        display: flex;
        flex-direction: column;
    }

    .protocol-icon-box {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
}