@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #010a12;
    /* Deep Navy */
    --secondary-color: #20282d;
    /* Charcoal */
    --accent-color: #ffa500;
    /* Innovador Orange */
    --text-color: #ffffff;
    --muted-text: rgba(255, 255, 255, 0.7);
    --light-bg: #010a12;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(2, 65, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 65, 119, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-padding {
    padding: 100px 0;
    background: #f8faff;
    /* Light mixed background for content sections */
    color: var(--primary-color);
}


.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.text-white {
    color: #ffffff !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-dark-titan {
    background: #000000 !important;
    color: #ffffff !important;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Header */
header {
    background: rgba(2, 65, 119, 0.2);
    /* Transparent dark blue for banner blend */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
    /* Removed border as requested */
}

header.scrolled {
    background: rgba(2, 65, 119, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    /* Compact on scroll */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition);
}

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Ensure logo is pure white */
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    /* White text for dark banner */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}


.s-pane-list li i {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    margin-right: 12px;
}

.feature-card::before {
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}


/* Hero Section - Image Background & Spacing Fix */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(1, 10, 18, 0.8), rgba(1, 10, 18, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1952&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

#neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    max-width: 1000px;
    animation: fadeInUp 1s ease;
    z-index: 2;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 10px 40px rgba(248, 248, 248, 0.6);
}



.hero p {
    font-size: 24px;
    font-weight: 400;
    color: var(--muted-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    /* Pill shape */
    min-width: 220px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    margin: 0;
}

.hero .btn-primary {
    background: var(--accent-color);
    color: #20282d;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.hero .btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 0;
    background: transparent;
}

.hero .btn-outline:hover {
    background: var(--white);
    color: #000;
}

.hero .btn:hover {
    transform: translateY(-3px);
}

/* Strategy Strip - Compact & Professional */
.strategy-flex-refined {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.strat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 240px;
    padding: 10px;
}

.strat-icon-box {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #024177;
    transition: all 0.3s ease;
}

.strat-item:hover .strat-icon-box {
    background: #024177;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(2, 65, 119, 0.1);
}

.strat-text {
    display: flex;
    flex-direction: column;
}

.strat-text strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.strat-text span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 991px) {
    .strategy-flex-refined {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .strat-item {
        min-width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 15px;
    }

    .strat-item:last-child {
        border-bottom: none;
    }
}

/* Footprint Section - Clean Integrated Strip */
/* Footprint Section - Clean Integrated Strip */
.footprint-banner {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: auto;
    /* Push to bottom of hero */
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.footprint-banner .container {
    background: transparent;
    box-shadow: none;
    padding: 0 20px;
}

.footprint-title {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 600;
}

.footprint-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: none;
}

.footprint-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.footprint-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 15px;
    position: relative;
}

/* Vertical Divider */
.footprint-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footprint-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 5px;
    background: none;
    -webkit-text-fill-color: var(--white);
}

.footprint-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .footprint-banner {
        margin-top: 0;
        background: var(--primary-color);
        padding: 40px 0;
    }

    .footprint-item:not(:last-child)::after {
        display: none;
    }
}

/* Pricing Section */
.pricing-section {
    background: #f9f9f9;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    /* Make cards same height */
}

.pricing-card {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.15);
    transform: scale(1.02);
    /* Slightly larger */
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    background: var(--accent-color);
    color: #fff;
    /* Dark blue on cyan for readability if accent is cyan, or white if accent is dark */
    color: #024177;
    text-align: center;
    padding: 5px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-header .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-header .currency {
    font-size: 1.5rem;
    margin-right: 5px;
    font-weight: 600;
}

.pricing-header .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-header .period {
    color: #888;
    font-size: 1rem;
    margin-left: 5px;
}

.pricing-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    color: var(--secondary-color);
    /* Green check */
}

.pricing-features li i.fa-times {
    color: #ccc;
}

.pricing-features li.disabled {
    color: #bbb;
    text-decoration: line-through;
}

.pricing-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: #fff;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Services - Heavy Professional Animations */
.features {
    background: #f9fbfd;
    padding: 0;
    margin-top: 0;
    /* Removed black gap/line */
    perspective: 1000px;
}


/* New Services Header mimicking Contour Hero */
.services-header-bg {
    background: linear-gradient(135deg, rgba(1, 10, 20, 0.9), rgba(1, 10, 20, 0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 200px;
    text-align: center;
    color: #ffffff;
    position: relative;
    margin-bottom: -120px;
    z-index: 5;
}



.services-header-bg h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.services-header-bg p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}



/* Staggered Entrance Animation */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 0;
    /* Handled by negative margin of header */
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-20px) scale(1.03);
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}


.feature-card:hover::before {
    left: 100%;
    /* Shine moves across */
}

/* Icon Styling */
.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow:
        5px 5px 15px rgba(0, 0, 0, 0.05),
        -5px -5px 15px rgba(255, 255, 255, 0.8);
    /* Neumorphism feel */
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
}

/* Icon Hover Animation */
.feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.4);
}

.feature-card:hover .feature-icon i {
    transform: rotateY(-180deg);
    /* Keep icon facing forward */
    transition: transform 0.5s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #024177;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--secondary-color);
    /* Slight color shift */
}

.feature-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    z-index: 2;
}

/* Learn More Link */
.feature-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    padding-right: 20px;
    transition: all 0.3s;
}

.feature-link::after {
    content: '\f178';
    /* Arrow right icon from FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s;
}

.feature-card:hover .feature-link {
    color: var(--accent-color);
}

.feature-card:hover .feature-link::after {
    transform: translateX(5px);
}

/* Why AI Matters Section */
.ai-matters {
    background: linear-gradient(135deg, rgba(2, 27, 51, 0.95), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=2000');
    /* Abstract AI/Tech Waves */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    /* Inner vignette */
}

/* Background Pattern overlay for texture */
.ai-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    /* Subtle dot grid */
    opacity: 0.3;
    pointer-events: none;
}

.ai-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Center vertically */
    gap: 60px;
    justify-content: space-between;
}

.ai-text-content {
    flex: 1;
    min-width: 300px;
}

.ai-text-content .badge-pill {
    background: rgba(0, 198, 255, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ai-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #a2d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-text-content .lead {
    font-size: 1.25rem;
    color: #a2d9ff;
    font-weight: 500;
    margin-bottom: 15px;
}

.ai-text-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.ai-check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.check-item .icon-box {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #021b33;
    font-size: 0.9rem;
}

/* Right Side - Visual Grid */
.ai-visual-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

/* Floating Animation Keyframes */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.ai-tech-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: floatY 6s ease-in-out infinite;
}

/* Stagger Animations and Grid positioning */
.speed-card {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    animation-delay: 0s;
}

.cost-card {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    /* Taller or centered? Let's align row 1/3 to span? No, let's offset it */
    transform: translateY(40px);
    /* Visual offset */
    animation: floatY 7s ease-in-out infinite;
    animation-delay: 1s;
    margin-top: 40px;
    /* Shift down */
}

.data-card {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    animation-delay: 2s;
}

.ai-tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.ai-tech-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ai-tech-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.anim-bar {
    width: 40px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.anim-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: barShine 2s infinite linear;
}

@keyframes barShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .ai-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .ai-visual-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .cost-card {
        margin-top: 0;
    }
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Why Choose Us - Heavy Professional */
.why-us {
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

/* Why Choose Us - Side-by-Side Professional */
.why-choose-us-v2 {
    background: #fdfdfd;
    padding: 120px 0;
}

.advantage-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.advantage-intro {
    flex: 1;
    min-width: 350px;
}

.advantage-intro .section-badge {
    background: rgba(0, 198, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.advantage-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 30px;
}

.advantage-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.advantage-stats-mini {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.advantage-intro .btn-primary {
    margin-top: 40px;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(2, 65, 119, 0.2);
}

.mini-stat span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.mini-stat p {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Right Side - Feature Tiles */
.advantage-tiles {
    flex: 1.2;
    min-width: 350px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tile {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    border-left: 6px solid #f0f0f0;
    /* Accent border on left */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
}

.tile-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tile:hover .tile-icon {
    color: var(--accent-color);
    transform: scale(1.2);
}

.tile h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tile p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stagger tiles */
.advantage-tiles .tile:nth-child(even) {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .advantage-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .advantage-title {
        font-size: 2.8rem;
    }

    .advantage-tiles .tile:nth-child(even) {
        margin-top: 0;
    }
}

/* Stats Scetion */
.stats {
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 65, 119, 0.9);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Contact Strip */
.contact-cta {
    background: var(--white);
    text-align: center;
}

/* VIP Footer Redesign */
/* ==========================================================================
   ULTIMATE ELITE FOOTER - REDESIGNED
   ========================================================================== */
footer {
    background: #010810;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Neural Background Glow */
footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

/* Giant Brand Watermark */
.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -1vw;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
}

.footer-main {
    padding: 120px 0 80px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col h4::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Branding & Socials */
.branding-col .footer-logo img {
    height: 50px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.branding-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: 0.4s;
    z-index: -1;
}

.social-links a:hover {
    color: #000;
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.2);
}

.social-links a:hover::before {
    top: 0;
}

/* Interactive Links */
.footer-links li {
    margin-bottom: 18px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    font-size: 0.7rem;
    opacity: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links a:hover i {
    opacity: 1;
}

/* Office Location Styles */
.contact-details {
    padding: 0;
}

.location-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    transition: 0.4s;
}

.location-box:hover {
    background: rgba(0, 198, 255, 0.03);
    border-color: rgba(0, 198, 255, 0.2);
    transform: translateY(-5px);
}

.office-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.office-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

.office-info p {
    margin: 0;
    line-height: 1.5;
}

/* Bottom Bar */
.footer-bottom {
    background: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    letter-spacing: 1px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 255, 136, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* VIP Accordion Grid - The Innovador Way */
.industries-immersive {
    background: #f8faff;
    /* Lighter background mixed in */
    padding: 100px 0;
}



.industry-flex {
    display: flex;
    height: 750px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000;
    background-size: cover;
    background-position: center;
    transition: background-image 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.industry-panel {
    flex: 1;
    position: relative;
    transition: flex 0.7s cubic-bezier(0.19, 1, 0.22, 1), background-image 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hide individual backgrounds only when the whole section is being hovered */
.industry-flex:hover .industry-panel {
    background-image: none !important;
}




.industry-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    z-index: 1;
}

.industry-panel:hover::before {
    background: rgba(0, 0, 0, 0);
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.contact-method-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
    border: 1px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}



/* Neutral expanded state (only if container NOT hovered) */
.industry-flex:not(:hover) .industry-panel.active,
.industry-panel:hover {
    flex: 5;
}

.panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align to bottom when expanded */
    padding: 60px;
    z-index: 2;
    transition: all 0.5s ease;
    background: transparent;
}


.panel-number {
    position: absolute;
    top: 40px;
    left: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.panel-content i {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: 0.5s;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

.panel-content h3 {
    font-size: 2.5rem;
    font-weight: 950;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
    transition: 0.5s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    /* Depth without black boxes */
}

.panel-content p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 400px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}


.panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

/* Visibility logic for Expanded State */
.industry-panel:hover .panel-content p,
.industry-flex:not(:hover) .industry-panel.active .panel-content p,
.industry-panel:hover .panel-btn,
.industry-flex:not(:hover) .industry-panel.active .panel-btn,
.industry-panel:hover h3,
.industry-flex:not(:hover) .industry-panel.active h3 {
    opacity: 1;
    transform: translateY(0);
}


/* Shrunk State: Rotate Title & Hide for cleaner look */
.industry-flex:hover .industry-panel:not(:hover) .panel-content,
.industry-flex:not(:hover) .industry-panel:not(.active) .panel-content {
    justify-content: center;
    padding: 20px;
}

.industry-flex:hover .industry-panel:not(:hover) h3,
.industry-flex:not(:hover) .industry-panel:not(.active) h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.8rem;
    margin: 0;
    white-space: nowrap;
    opacity: 0;
    /* Hidden until hover for elite minimalist feel */
}


.industry-flex:hover .industry-panel:not(:hover) i,
.industry-flex:not(:hover) .industry-panel:not(.active) i {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Shine Sweep Effect */
.industry-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0s;
    z-index: 3;
}

.industry-panel:hover::after {
    left: 150%;
    transition: 0.8s;
}

/* Mobile Responsive Accordion */
@media (max-width: 991px) {
    .industry-flex {
        flex-direction: column;
        height: auto;
    }

    .industry-panel {
        height: 200px;
        flex: none !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .industry-panel:hover,
    .industry-panel.active {
        height: 450px;
    }

    .panel-content h3 {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 1.8rem !important;
    }
}

/* Floating animation for icons */
@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.industry-panel:hover i,
.industry-panelactive i {
    animation: iconFloat 3s ease-in-out infinite;
}

/* Ultimate VIP Success Highlights */
.success-highlights {
    background: #fdfdfd;
    /* Off-white for premium feel */
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.highlights-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.testimonial-card {
    flex: 1.2;
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(2, 65, 119, 0.08);
    /* Deep soft shadow */
    position: relative;
    border: 1px solid #f0f0f0;
}

.quote-symbol {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.15;
}

.main-quote {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.main-quote span {
    color: var(--accent-color);
    position: relative;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 5;
}

.author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.author-img::after {
    content: '\f058';
    /* FontAwesome Check Circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 5px;
    right: 0;
    background: #fff;
    color: #00ff88;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover .author-img img {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 198, 255, 0.6);
}

.author-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.author-info span {
    color: #888;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Ultimate VIP Success Highlights - Enhanced */
.success-highlights {
    background: #fdfdfd;
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Tech Mesh Background */
.success-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00c6ff 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

/* Atmospheric Ambient Glow */
.success-highlights::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

.highlights-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    flex: 1.2;
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(2, 65, 119, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-symbol {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
}

.main-quote {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 45px;
    letter-spacing: -1.5px;
}

.main-quote span {
    color: var(--accent-color);
    background: linear-gradient(120deg, rgba(0, 198, 255, 0.1) 0%, rgba(0, 198, 255, 0.1) 100%);
    padding: 0 10px;
    border-radius: 5px;
}

/* Metric Cards - VIP Style */
.metric-card {
    background: #ffffff;
    display: flex;
    gap: 25px;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-left: 4px solid #f0f0f0;
    /* Default neutral border */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.metric-card:hover {
    transform: translateX(20px) scale(1.02);
    border-left-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 198, 255, 0.1);
}

.metric-card h4 {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.metric-card h3 {
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: #011627;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(1, 22, 39, 0.2);
}

.metric-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Success Section */
@media (max-width: 1100px) {
    .highlights-grid {
        flex-direction: column;
        gap: 60px;
    }

    .testimonial-card {
        padding: 40px;
    }

    .main-quote {
        font-size: 1.8rem;
    }
}

/* VIP Extreme CTA - Cinematic */
.extreme-cta {
    background: linear-gradient(135deg, rgba(2, 27, 51, 0.98), rgba(1, 10, 20, 0.95)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2000');
    /* Cinematic Satellite/Data Earth */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Atmospheric Glow behind Orb */
.extreme-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

/* Data Grid Background effect */
.extreme-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

.cta-flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.reveal-text {
    font-size: 4rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.reveal-text span {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
    display: block;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
    }

    to {
        text-shadow: 0 0 40px rgba(0, 198, 255, 0.9), 0 0 60px rgba(0, 198, 255, 0.4);
    }
}

.extreme-btn {
    position: relative;
    background: transparent;
    border: 3px solid var(--accent-color);
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 60px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 100px;
    transition: 0.4s;
}

.extreme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: 0.5s;
    z-index: -1;
}

.extreme-btn:hover {
    color: #000;
}

.extreme-btn:hover::before {
    left: 0;
}

/* Advanced AI Orb */
.ai-orb {
    position: relative;
    width: 280px;
    height: 280px;
}

.orb-core {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px var(--accent-color), 0 0 100px rgba(0, 198, 255, 0.3);
    animation: corePulse 4s infinite ease-in-out;
}

.orb-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: rotateOrb 10s infinite linear;
}

.orb-ring:nth-child(2) {
    border-width: 1px;
    border-color: rgba(0, 198, 255, 0.4);
}

.orb-ring:nth-child(3) {
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.2);
    animation-duration: 8s;
    animation-direction: reverse;
}

.orb-ring:nth-child(4) {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 1px dashed rgba(0, 198, 255, 0.2);
    border-radius: 50%;
    animation: rotateOrb 25s linear infinite;
}

@keyframes corePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes rotateOrb {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .industry-flex {
        height: auto;
        flex-direction: column;
    }

    .industry-panel {
        height: 350px;
    }

    .cta-flex-box {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .reveal-text {
        font-size: 3.5rem;
    }
}

/* Ultimate VIP Detail Styling */
.cta-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.cta-trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.8;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-item i {
    color: var(--accent-color);
}

/* Enhanced AI Orb with Nodes */
.ai-orb-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff;
    animation: nodePulse 3s infinite ease-in-out;
}

@keyframes nodePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Button energy pulse */
.extreme-btn {
    animation: btnGlowPulse 3s infinite;
}

@keyframes btnGlowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 198, 255, 0.5);
    }
}

@media (max-width: 768px) {
    .cta-trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   ELITE ABOUT PAGE - TITAN UPGRADE
   ========================================================================== */
.about-hero {
    min-height: 80vh;
    /* Reduced from 100vh to allow next section to be visible sooner */
    background: #010a14;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 350px;
    /* Stronger push to clear navbar */
    padding-bottom: 200px;
    overflow: hidden;
    z-index: 10;
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 180px;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 3rem !important;
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1497215842964-222b430dc094?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    opacity: 0.35;
    filter: saturate(0) brightness(0.5);
    animation: slowZoom 30s infinite alternate;
}

.about-hero h1,
.services-hero h1,
.portfolio-hero h1 {
    position: relative;
    z-index: 5;
    font-size: 5.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.about-hero h1 span,
.services-hero h1 span,
.portfolio-hero h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 1.1rem;
    letter-spacing: 12px;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}



.about-hero h1 strong {
    display: block;
    background: linear-gradient(to bottom, #fff 40%, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 198, 255, 0.3));
}

.about-hero-content {
    position: relative;
    z-index: 10;
}

.elite-story-container {
    padding: 200px 0 150px;
    /* Increased top padding */
    position: relative;
    z-index: 50;
    /* Ensure it stays above everything */
    margin-top: 0;
    background-color: #010a14;
    /* Theme sync */
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}


/* Background Global Network Veil - Made subtle on light bg */
.global-veil-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
    filter: brightness(1.2);
}


.elite-story-card {
    background: rgba(1, 15, 30, 0.8);
    /* Darker for better text contrast */
    backdrop-filter: blur(20px);
    border-radius: 4px;
    /* Matches industrial sharp theme */
    padding: 60px;
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(0, 198, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: visible;
    /* Allow HUD to pop out */
    border: 1px solid rgba(0, 198, 255, 0.2);
    /* Stronger border */
    transition: transform 0.4s ease;
}

.elite-story-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* Corner Accents for Card */
.elite-story-card::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    pointer-events: none;
}


.elite-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}


/* Story Typography */
.story-text h2 {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 950;
    letter-spacing: -2px;
    text-transform: uppercase;
}


.story-text p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}



.story-text h2 span {
    color: var(--accent-color);
    position: relative;
}

.story-stats-elite {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.s-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: 0.3s;
}

.s-item:hover {
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.3);
}

.s-item strong {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 900;
    line-height: 1;
}

.s-item span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.6;
    text-transform: uppercase;
}

.s-icon {
    display: none;
    /* Removed icons for cleaner industrial look */
}

/* Image Block & Data Points */
.story-image-block {
    position: relative;
}

.img-reveal-wrapper {
    position: relative;
    border-radius: 40px;
    padding: 0;
    /* Removed padding for better HUD fit */
    background: rgba(0, 198, 255, 0.05);
    border: 1px solid rgba(0, 198, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 198, 255, 0.05);
    overflow: hidden;
}

/* Tech HUD System */
.tech-hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background:
        linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hud-item {
    position: absolute;
    font-size: 0.65rem;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1.5px;
    color: #00c6ff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(0, 10, 20, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.15);
    text-shadow: 0 0 8px rgba(0, 198, 255, 0.6);
    transition: all 0.3s ease;
}


.hud-item.item-tl {
    top: 20px;
    left: 20px;
}

.hud-item.item-tr {
    top: 20px;
    right: 20px;
}

.hud-item.item-bl {
    bottom: 20px;
    left: 20px;
}

.hud-item.item-br {
    bottom: 20px;
    right: 20px;
}

.hud-item.item-cl {
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
}

.blink-stat {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
    animation: blinkStat 1.5s infinite;
}

@keyframes blinkStat {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}


.img-reveal-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--accent-color);
    border-left: 2px solid var(--accent-color);
}

.img-reveal-wrapper::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

.main-about-img {
    width: 100%;
    border-radius: 30px;
    display: block;
    filter: brightness(1.1) contrast(1.05);
}

.experience-shield {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 24px;
    color: white;
    text-align: center;
    box-shadow: 0 40px 80px rgba(1, 10, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.experience-shield strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    color: var(--accent-color);
}

.experience-shield span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
}



@keyframes floatData {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}


@keyframes processingBar {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}



/* HUD Data Points - Holographic Interface */
/* HUD Data Points - Holographic Interface */
.tech-data-point {
    position: absolute;
    background: rgba(0, 10, 20, 0.85);
    /* Darker tech background */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 198, 255, 0.4);
    /* Cyan border */
    padding: 12px 25px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.15);
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    animation: floatData 6s ease-in-out infinite;
    text-transform: uppercase;
}

.data-pulse {
    width: 6px;
    height: 6px;
    background: #00c6ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00c6ff;
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Waveform Energy Pulse */
.tech-data-point::after {
    content: '';
    width: 30px;
    height: 15px;
    background: linear-gradient(90deg, var(--accent-color) 50%, transparent 50%);
    background-size: 4px 100%;
    mask-image: linear-gradient(to bottom, transparent, #000, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000, transparent);
    animation: waveformPulse 0.5s steps(4) infinite;
}

@keyframes waveformPulse {
    from {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    to {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

.tech-data-point.p1 {
    top: 5%;
    right: -20px;
    animation-delay: 0s;
}

.tech-data-point.p2 {
    bottom: 20%;
    right: -30px;
    left: auto !important;
    animation-delay: 3s;
}

.main-about-img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    display: block;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.elite-story-card:hover .main-about-img {
    transform: scale(1.03);
}

/* The Reactor Shield - Advanced Engineering Module */
.experience-shield {
    position: absolute;
    bottom: -35px;
    left: -35px;
    background: #010a14;
    color: #fff;
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(0, 198, 255, 0.2);
    text-align: center;
    border: 1px solid rgba(0, 198, 255, 0.4);
    z-index: 50;
    overflow: hidden;
}

/* Data Grid Overlay for Shield */
.experience-shield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridScroll 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes gridScroll {
    from {
        transform: translate(-25%, -25%) rotate(5deg);
    }

    to {
        transform: translate(0%, 0%) rotate(5deg);
    }
}

/* Kinetic Scanner for Heavy Shield */
.experience-shield::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
    animation: shieldScan 4s infinite linear;
    z-index: 5;
}

@keyframes shieldScan {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

.experience-shield strong {
    font-size: 3.5rem;
    font-weight: 950;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, #fff 20%, var(--accent-color) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 15px rgba(0, 198, 255, 0.4));
    animation: textPulseNeon 2s ease-in-out infinite alternate;
}

@keyframes textPulseNeon {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.3));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(0, 198, 255, 0.7));
    }
}

.experience-shield span {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    color: var(--accent-color);
    display: block;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
}

/* Internal Bolt Styling */
.experience-shield .bolt {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #1a242f;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

.bolt.top-left {
    top: 15px;
    left: 15px;
}

.bolt.top-right {
    top: 15px;
    right: 15px;
}

.bolt.bottom-left {
    bottom: 15px;
    left: 15px;
}

.bolt.bottom-right {
    bottom: 15px;
    right: 15px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 150px 0;
    background: #fdfdfd;
}

.phi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.phi-card {
    background: #fff;
    padding: 60px 45px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.phi-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-color);
}

.phi-card i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 35px;
    display: block;
}

.phi-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.phi-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* About CTA - Ultimate Tech-Elite Cinematic */
.about-elite-cta {
    background: linear-gradient(135deg, rgba(1, 10, 20, 0.98), rgba(1, 22, 39, 0.95)), url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.about-elite-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
}

.cta-elite-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.cta-elite-content {
    flex: 1.2;
    text-align: left;
}

.status-pill-elite {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00ff88;
    margin-bottom: 35px;
}

.cta-elite-content h2 {
    font-size: 6.5rem;
    font-weight: 950;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 35px;
}

.cta-elite-content h2 span {
    color: var(--accent-color);
    text-shadow: 0 0 50px rgba(0, 198, 255, 0.5);
    display: block;
}

.cta-elite-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 650px;
}

.cta-btns {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}

.extreme-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tech-badges-row {
    display: flex;
    gap: 30px;
}

.t-badge {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-badge i {
    color: var(--accent-color);
}

/* Neural Hub Animation */
.cta-elite-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.neural-hub {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-core {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 80px var(--accent-color), 0 0 150px rgba(0, 198, 255, 0.4);
    animation: corePulse 4s infinite ease-in-out;
}

.hub-ring {
    position: absolute;
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 50%;
    animation: rotateHub 20s linear infinite;
}

.hub-ring.r1 {
    width: 200px;
    height: 200px;
    animation-duration: 25s;
}

.hub-ring.r2 {
    width: 300px;
    height: 300px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.hub-ring.r3 {
    width: 400px;
    height: 400px;
    animation-duration: 45s;
}

.orbit-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(1, 22, 39, 0.9);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit1 25s linear infinite;
}

.node-2 {
    bottom: 20%;
    right: -10px;
    animation: orbit1 35s linear infinite;
}

.node-3 {
    bottom: 20%;
    left: -10px;
    animation: orbit1 45s linear infinite;
}

@keyframes rotateHub {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .cta-elite-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-elite-content {
        text-align: center;
    }

    .cta-elite-content p {
        margin: 0 auto 50px;
    }

    .cta-btns,
    .tech-badges-row {
        justify-content: center;
    }

    .cta-elite-content h2 {
        font-size: 4rem;
    }
}

@media (max-width: 1100px) {
    .elite-story-card {
        grid-template-columns: 1fr;
        padding: 50px;
        gap: 60px;
    }

    .about-hero h1 {
        font-size: 3.8rem;
    }

    .phi-grid {
        grid-template-columns: 1fr;
    }

    .experience-shield {
        position: static;
        margin-top: 30px;
        display: inline-block;
    }
}

/* ==========================================================================
   ELITE SERVICES PAGE - TITAN UPGRADE
   ========================================================================== */
.services-hero {
    height: 85vh;
    background: #010a14;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Abstract Digital Nexus */
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=2670') center/cover no-repeat;
    opacity: 0.5;
    filter: saturate(0) brightness(0.4) contrast(1.2);
    animation: slowZoom 30s infinite alternate;
}


.services-hero h1 {
    position: relative;
    z-index: 5;
    font-size: 5.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}


.services-hero h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 1.2rem;
    letter-spacing: 20px;
    margin-bottom: 40px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.5);
}

.services-hero h1 strong {
    display: block;
    background: linear-gradient(to bottom, #fff 40%, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 198, 255, 0.3));
}

/* Service Nexus Grid */
.service-nexus {
    margin-top: -120px;
    position: relative;
    z-index: 20;
    padding: 100px 0;
    background: #f8faff;
    /* Light background mix */
}


.nexus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-pane {
    background: #fff;
    padding: 60px 45px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 40px 80px rgba(1, 22, 39, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--accent-color);
    transition: 0.5s;
}

.service-pane:hover {
    transform: translateY(-20px);
    box-shadow: 0 50px 100px rgba(1, 22, 39, 0.1);
    border-color: rgba(0, 198, 255, 0.2);
}

.service-pane:hover::before {
    height: 100%;
}

.s-pane-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 198, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    transition: 0.4s;
}

.service-pane:hover .s-pane-icon {
    background: var(--accent-color);
    color: #000;
    transform: rotateY(180deg);
}

.service-pane h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.service-pane p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.s-pane-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.s-pane-list li {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
}

.s-pane-list li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Process styles moved to bottom */

/* ==========================================================================
   PREMIUM LIGHT CTA - SERVICES PAGE
   ========================================================================== */
/* ==========================================================================
   PREMIUM WHITE CTA - SERVICES PAGE
   ========================================================================== */
/* CTA styles moved to bottom */

/* ==========================================================================
   ULTIMATE TITAN PRICING - HERO UPGRADE
   ========================================================================== */
.titan-hero {
    height: 85vh;
    /* Taller for more prestige */
    background: linear-gradient(to bottom, rgba(1, 10, 20, 0.2), rgba(0, 0, 0, 0.6)), url('../img/pricing_hero_titan_1767958288361.png') center/cover no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 10;
}

.titan-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 198, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
    animation: ambientPulse 10s infinite alternate;
}

.titan-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(80px) translateZ(-200px);
    }
}

@keyframes ambientPulse {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 198, 255, 0.03) 50%, transparent);
    background-size: 100% 8px;
    animation: scanMove 10s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scanMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.titan-hero h1 {
    position: relative;
    z-index: 5;
    font-size: 8.5rem;
    /* Larger for 'Heavy' look */
    font-weight: 950;
    color: #fff;
    letter-spacing: -8px;
    line-height: 0.75;
    margin: 0;
    text-transform: uppercase;
}

.titan-hero h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 1.2rem;
    letter-spacing: 20px;
    /* Extreme spacing */
    margin-bottom: 40px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.5);
    animation: textFlicker 4s infinite;
}

@keyframes textFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    52% {
        opacity: 1;
    }

    53% {
        opacity: 0.9;
    }

    54% {
        opacity: 1;
    }
}

.titan-hero h1 strong {
    display: block;
    background: linear-gradient(to bottom, #fff 40%, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    /* Compatibility fix */
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 198, 255, 0.3));
}

/* Phantom Matrix Grid - DARK HIGH-STAKES VERSION */
/* ===================================
   PREMIUM WHITE PRICING CARDS - ENHANCED
   =================================== */

.titan-matrix {
    margin-top: 0;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 50%, #f8fafc 100%);
    position: relative;
}

.titan-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 198, 255, 0.04) 0%, transparent 50%),
        radial-gradient(rgba(0, 122, 255, 0.02) 1px, transparent 1px);
    background-size: 800px 800px, 600px 600px, 30px 30px;
    pointer-events: none;
}

.titan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

.tier-card-titan {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e8eef5;
    padding: 45px 35px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 25px -5px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.tier-card-titan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e8eef5, transparent);
    border-radius: 24px 24px 0 0;
}

.tier-card-titan:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 40px -10px rgba(0, 122, 255, 0.12),
        0 10px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: #007aff;
}

.tier-card-titan:hover::before {
    background: linear-gradient(90deg, #007aff, #00c6ff, #007aff);
}

.card-tech-label {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #94a3b8;
    letter-spacing: 1.5px;
    font-weight: 700;
    opacity: 0.7;
}

.tier-card-titan.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid #007aff;
    box-shadow:
        0 20px 50px -10px rgba(0, 122, 255, 0.25),
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    z-index: 10;
}

.tier-card-titan.featured::before {
    background: linear-gradient(90deg, #007aff, #00c6ff, #007aff);
    height: 5px;
}

.tier-card-titan h3 {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.tier-card-titan h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007aff, transparent);
    margin-top: 12px;
    border-radius: 2px;
}

.price-value-mass {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 25px 0 35px;
    min-height: 65px;
}

.price-value-mass .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
    align-self: flex-start;
    margin-top: 8px;
}

.price-value-mass .amount {
    font-size: 3.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #007aff 0%, #0066d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
}

.price-value-mass .period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 8px;
}

.feature-list-elite {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.feature-list-elite li {
    color: #475569 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-weight: 600;
    padding: 14px 0;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s ease;
}

.feature-list-elite li:hover {
    color: #1e293b !important;
    padding-left: 5px;
}

.feature-list-elite li i {
    color: #007aff;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.feature-list-elite li:last-child {
    border-bottom: none !important;
}

.popular-titan-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007aff 0%, #0066d6 100%);
    color: #ffffff;
    padding: 8px 28px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow:
        0 10px 25px rgba(0, 122, 255, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

/* Premium Buttons */
.titan-btn-solid {
    background: linear-gradient(135deg, #007aff 0%, #0066d6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 12px rgba(0, 122, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.titan-btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.titan-btn-solid:hover::before {
    left: 100%;
}

.titan-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0, 122, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.titan-btn-ghost {
    background: #ffffff !important;
    border: 2px solid #cbd5e1 !important;
    color: #1e293b !important;
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.titan-btn-ghost:hover {
    background: #007aff !important;
    border-color: #007aff !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.25);
}

.tier-card-titan.featured .titan-btn-solid {
    background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%) !important;
    box-shadow:
        0 8px 20px rgba(0, 122, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tier-card-titan.featured .titan-btn-solid:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 35px rgba(0, 122, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.titan-btn-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(1, 22, 39, 0.15);
}

.titan-btn-ghost {
    background: transparent !important;
    border: 2px solid #eee !important;
    color: var(--primary-color) !important;
    width: 100%;
    justify-content: center;
    padding: 22px;
    font-size: 1.05rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.titan-btn-ghost:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

@media (max-width: 1200px) {
    .titan-grid {
        grid-template-columns: 1fr 1fr;
    }

    .titan-hero h1 {
        font-size: 5rem;
    }

    .tier-card-titan.featured {
        transform: none;
    }
}

@media (max-width: 800px) {
    .titan-grid {
        grid-template-columns: 1fr;
    }

    .titan-hero h1 {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   ELITE COMPARISON MATRIX - PRICING
   ========================================================================== */
.spec-comparison-section {
    padding: 160px 0;
    background: #010810;
    position: relative;
    overflow: hidden;
}

.spec-comparison-section .section-badge {
    color: #ffffff !important;
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
}

.spec-comparison-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
}

.spec-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
}

.spec-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    z-index: 10;
}

.tech-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-spec-table th {
    padding: 30px;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tech-spec-table th:first-child {
    text-align: left;
}

.tech-spec-table td {
    padding: 25px 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.3s;
}

.tech-spec-table td:first-child {
    text-align: left;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.tech-spec-table tr:hover td {
    background: rgba(0, 198, 255, 0.03);
    color: var(--accent-color);
}

/* FAQ Elite - LIGHT VERSION */
.faq-section-elite {
    padding: 160px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.faq-card-vip {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 50px;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-card-vip:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 30px 60px rgba(1, 22, 39, 0.05);
}

.faq-card-vip h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-card-vip h4::before {
    content: 'REQ_INTEL';
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 4px 10px;
    border-radius: 4px;
}

.faq-card-vip p {
    color: #555;
    line-height: 1.8;
    font-weight: 500;
}

/* ==========================================================================
   TITAN PRELOADER
   ========================================================================== */
#titan-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}

#titan-preloader.loaded {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.brand-loader {
    margin-bottom: 30px;
}

.preloader-logo {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make logo white */
    animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
        filter: brightness(0) invert(1) drop-shadow(0 0 0 rgba(255, 165, 0, 0));
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 165, 0, 0.5));
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
        filter: brightness(0) invert(1) drop-shadow(0 0 0 rgba(255, 165, 0, 0));
    }
}

.loader-line-mask {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.loader-line {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateX(-100%);
    animation: loadingProgress 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.init-text {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 3px;
    animation: blink 1s infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

@keyframes loadingProgress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.count-display {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Segoe UI', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    opacity: 0.5;
    line-height: 1;
}

/* ==========================================================================
   ULTIMATE TITAN FINALE - PRICING
   ========================================================================== */
.pricing-light-shroud {
    padding: 200px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-light-shroud::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.shroud-card-vip {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 40px;
    padding: 100px 80px;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow:
        0 40px 100px rgba(1, 10, 18, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.05);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.shroud-card-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}


.shroud-card-vip:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.titan-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8faff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 35px;
    border: 1px solid rgba(1, 10, 20, 0.08);
}


.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00ff88;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.shroud-card-vip h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}


.shroud-card-vip h2 span {
    color: var(--accent-color);
    display: inline-block;
}


.shroud-card-vip p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.7;
}


.vision-tech-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 45px;
}

.v-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8faff;
    border: 1px solid #eef2f6;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    transition: 0.4s;
}

.v-badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.v-badge:hover {
    background: #fff;
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 10, 20, 0.05);
}

.cta-btns-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}


.titan-btn-ghost-dark {
    background: transparent !important;
    border: 3px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 22px 50px;
    font-size: 1.05rem;
    font-weight: 950;
    border-radius: 12px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.titan-btn-ghost-dark:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-8px);
}

@media (max-width: 1100px) {
    .shroud-card h2 {
        font-size: 3.5rem;
    }

    .tech-spec-table th,
    .tech-spec-table td {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   GLOBAL TITAN KINETIC ANIMATIONS
   ========================================================================= */

/* Reveal Utility Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Delay Utils */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Enhanced Hover Kinetic */
.titan-card-hover {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.titan-card-hover:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 40px 80px rgba(0, 198, 255, 0.15) !important;
}

/* Text Shimmer Effect */
@keyframes textShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.titan-shimmer-text {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 4s infinite linear;
}

/* Floating Technical Nodes Entry */
@keyframes nodeEntry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.node-entry {
    animation: nodeEntry 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Scroll Prompt Animation */
@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    opacity: 0.6;
    z-index: 20;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite ease-in-out;
}

/* Cursor Glow Effect */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    top: -1000px;
    /* Hide initially */
    left: -1000px;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3);
}

/* Portfolio Video Preview */
.project-video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Behind overlay but above image base if needed */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-video-preview {
    opacity: 1;
    z-index: 2;
}

/* Heavy Kinetic Reveal - Dramatic 3D Entrance */

.reveal-up.heavy-kinetic {
    transform: translateY(120px) rotateX(20deg) scale(0.85);
    filter: blur(15px);
    opacity: 0;
    transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.heavy-kinetic.active {
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
    opacity: 1;
}

/* Enhanced Footprint Banner - Compact & Professional */
.footprint-banner {
    position: relative;
    padding: 60px 0;
    background: #010a14;
    overflow: hidden;
    border-top: 1px solid rgba(0, 198, 255, 0.1);
    border-bottom: 1px solid rgba(0, 198, 255, 0.1);
}

.footprint-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 198, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 198, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.footprint-number {
    font-size: 3.5rem;
    /* Balanced size */
    font-weight: 950;
    color: var(--accent-color);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.footprint-label {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
}

.footprint-item {
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.footprint-item:hover {
    transform: scale(1.08);
}

.footprint-item:hover .footprint-number {
    color: #fff;
    text-shadow: 0 0 60px var(--accent-color);
}

.footprint-title {
    font-size: 0.8rem;
    letter-spacing: 10px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 900;
}

.footprint-subtitle {
    font-size: 2.2rem;
    font-weight: 950;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* Portfolio Design - Ultra Titan HUD */
.portfolio-section {
    background: #ffffff;
    background-image: radial-gradient(circle at 100% 0%, rgba(255, 165, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(0, 198, 255, 0.02) 0%, transparent 40%);
    border-top: 1px solid #f0f0f0;
    position: relative;
}


.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(1, 10, 20, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(1, 10, 20, 0.1);
    color: #010a14;
    padding: 15px 35px;
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 3px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 100%;
    background: #010a14;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.filter-btn.active,
.filter-btn:hover {
    color: #fff;
    border-color: #010a14;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(1, 10, 20, 0.15);
}

.filter-btn.active::before,
.filter-btn:hover::before {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    background: #000;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}


.project-img-wrapper {
    width: 100%;
    /* Fixed height is needed for the scroll effect to be visible */
    height: 450px;
    position: relative;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Start at top */
    opacity: 0.9;
    /* Smooth scroll transition */
    transition: object-position 4s ease-in-out, transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(20%) contrast(1.1);
}

.project-card:hover .project-img-wrapper img {
    /* Scroll to bottom on hover */
    object-position: bottom;
    /* Speed of scroll depends on image length, 4s is a good average */
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.02);
}


.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient allows bottom text to be seen always */
    background: linear-gradient(to bottom, transparent 40%, rgba(1, 10, 20, 0.9) 70%, rgba(1, 10, 20, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 10;
    opacity: 1;
    /* Always visible */
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(0, 198, 255, 0.1);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(1, 10, 20, 0.95) 80%);
}




.live-preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #00ff88;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 15;
    border: 1px solid rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    pointer-events: none;

}

.project-card:hover img {
    transform: scale(1.05);
    opacity: 0.6;
    filter: grayscale(0%) contrast(1.2);
}

.p-tech-label {
    font-size: 0.6rem;
    font-weight: 950;
    color: var(--accent-color);
    letter-spacing: 3px;
    /* Reduced from 5px to fit long labels */
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    text-transform: uppercase;
}


.project-overlay h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 95%;
}

.p-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.p-stat-item {
    display: flex;
    flex-direction: column;
}

.p-stat-item span {
    font-size: 0.6rem;
    color: #00c6ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.p-stat-item strong {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 800;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    padding: 12px 25px;
    border-radius: 4px;
    background: rgba(0, 198, 255, 0.05);
    transition: 0.3s;
    width: fit-content;
    text-transform: uppercase;
}

.view-project-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #010a14;
}

::-webkit-scrollbar-thumb {
    background: #1a2a3a;
    border: 2px solid #010a14;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ========================================
   RESPONSIVE DESIGN SYSTEM - MOBILE FIRST
   ======================================== */

/* Tablet & Mobile - General Layout */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Hero Sections */
    .hero,
    .about-hero,
    .services-hero,
    .pricing-hero,
    .portfolio-hero,
    .contact-hero {
        min-height: 60vh;
        padding: 100px 0 80px;
    }

    .hero-content h1,
    .about-hero h1,
    .services-hero h1,
    .pricing-hero h1,
    .portfolio-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Grids - 2 Column */
    .features-grid,
    .nexus-grid,
    .phi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .titan-grid,
    .pricing-grid-vip {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Stats & Footprint */
    .footprint-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Mobile Navigation Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(1, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 999;
        border-left: 1px solid rgba(0, 198, 255, 0.2);
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 3px;
        display: block;
        padding: 15px;
    }

    .nav-cta {
        margin-top: 20px;
        width: 80%;
    }

    /* Hamburger Toggle */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1000;
        padding: 5px;
    }

    .menu-toggle .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px 0;
        background-color: var(--white);
        transition: 0.4s;
        border-radius: 2px;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-color);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-color);
    }
}

/* Mobile - Single Column */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Typography */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    /* Hero Sections */
    .hero,
    .about-hero,
    .services-hero,
    .pricing-hero,
    .portfolio-hero,
    .contact-hero {
        min-height: 50vh;
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* All Grids - Single Column */
    .features-grid,
    .nexus-grid,
    .phi-grid,
    .titan-grid,
    .pricing-grid-vip,
    .footprint-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cards */
    .feature-card,
    .service-pane,
    .tier-card-titan,
    .project-card {
        padding: 30px 25px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Contact Form */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-watermark {
        font-size: 8rem;
    }

    /* Pricing Cards - Full Width */
    .tier-card-titan {
        padding: 40px 30px;
    }

    /* Portfolio Filters */
    .filter-controls {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 10px 20px;
    }
}

/* Desktop - Hide Mobile Menu */
@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        backdrop-filter: none;
        height: auto;
        width: auto;
        border: none;
    }

    .nav-cta {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
    }
}

/* =========================================
   PREMIUM TITAN ENHANCEMENTS (v2.0)
   ========================================= */

/* 1. Titan Loader */
.titan-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #010a12;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: #fff;
    margin-bottom: 20px;
    animation: pulseLogo 2s infinite;
}

.loader-logo span {
    color: var(--accent-color);
}

.loader-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.5s ease;
}

.loader-status {
    font-size: 0.6rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulseLogo {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.98);
    }
}

/* 2. Custom Cursor */
.cursor-blob {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: transform 0.1s;
}

body:hover .cursor-dot {
    opacity: 1;
}

/* 3. Magnetic Hover Utility */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 4. Glass Card Enhancement */
.phi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.phi-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* 5. Fluid Typography & Spacing */
.section-badge {
    padding: 8px 16px;
    background: rgba(255, 165, 0, 0.1);
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 0.8rem;
}

/* 6. Kinetic Text Reveal */
.reveal-text {
    overflow: hidden;
    position: relative;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text.active span {
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .cursor-blob,
    .cursor-dot {
        display: none;
    }
}

/* 7. Tech Stack Section */
.tech-stack-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #010a12, rgba(1, 10, 18, 0.8), #010a12);
}

.tech-stack-section .container {
    position: relative;
    z-index: 2;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.tech-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.tech-item span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.tech-item:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-10px) rotateY(10deg);
}

/* 8. Innovation Timeline */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(1, 10, 20, 0.4);
    /* Strong central axis for timeline */
    transform: translateX(-50%);
}



.timeline-item {
    margin-bottom: 80px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.time-mark {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.time-content {
    background: #ffffff;
    border: 1px solid rgba(1, 10, 20, 0.08);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.time-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.time-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}



/* ==========================================================================
   TITAN ABOUT PAGE REDESIGN - PREMIUM V2.0
   ========================================================================== */

/* 1. Hero Enhancements */
.about-hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #010a12;
}

.about-hero-content {
    position: relative;
    z-index: 5;
    margin-top: 80px;
    /* Strong clearance for fixed navbar */
}

.hero-background-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: saturate(1.2) brightness(0.6);
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
    letter-spacing: 1px;
    font-weight: 500;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 35px;
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #080808;
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 4px;
    border: 1px solid rgba(255, 165, 0, 0.4);
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

/* 2. Story Card Glitch & HUD Fixes */
.shield-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 198, 255, 0.05), transparent);
    animation: shieldGlitch 4s infinite linear;
    pointer-events: none;
}

@keyframes shieldGlitch {
    0% {
        transform: translateY(-100%);
    }

    10% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.data-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: dataPulse 1.5s infinite;
}

@keyframes dataPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* 3. Immersive Innovation Timeline v2.0 - Elite Dark Mode */
.innovation-timeline {
    background: #000000;
    /* Pure Pitch Black */
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    color: #ffffff;
}

.innovation-timeline .section-title {
    color: #ffffff !important;
    font-size: 5rem;
    font-weight: 950;
    letter-spacing: -3px;
    text-shadow: 0 0 50px rgba(0, 198, 255, 0.6);
    position: relative;
    z-index: 10;
    text-transform: uppercase;
}

.timeline-intro {
    color: #ffffff;
    opacity: 0.9;
    max-width: 750px;
    margin: 30px auto 0;
    font-size: 1.35rem;
    line-height: 1.8;
    position: relative;
    z-index: 10;
}

.innovation-timeline .section-title::after {
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
    width: 100px;
    height: 4px;
    margin: 20px auto 0;
}

.timeline-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 198, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 100px auto 0;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            var(--accent-color) 20%,
            var(--accent-color) 80%,
            transparent);
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.timeline-node {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    margin-bottom: 120px;
    perspective: 1000px;
}

.timeline-node.left {
    left: 0;
    text-align: right;
}

.timeline-node.right {
    left: 50%;
    text-align: left;
}

/* Year Badge - Cyberpunk Style */
.node-year {
    font-size: 7.5rem;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.05);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    /* Stronger stroke */
    text-shadow: 0 0 40px rgba(0, 198, 255, 0.2);
    line-height: 1;
    position: absolute;
    top: -40px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -5px;
    z-index: 1;
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.timeline-node.left .node-year {
    right: 40px;
}

.timeline-node.right .node-year {
    left: 40px;
}

.timeline-node:hover .node-year {
    -webkit-text-stroke: 1px var(--accent-color);
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    transform: scale(1.05) translateY(-10px);
}

/* Content Card - Glass Prism */
.node-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 2px;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 5;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.tech-tag {
    font-size: 0.6rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
    opacity: 0.6;
}

.node-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.01) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
}

.node-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.timeline-node:hover .node-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-5px);
}

.timeline-node:hover .node-content::before {
    transform: translateX(100%);
}

.node-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.timeline-node.left .node-header {
    flex-direction: row-reverse;
}

.node-header i {
    font-size: 2rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.3));
}

.node-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.node-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

/* Premium Node Marker */
.node-marker {
    position: absolute;
    top: 50px;
    width: 30px;
    height: 30px;
    z-index: 10;
}

.timeline-node.left .node-marker {
    right: -15px;
}

.timeline-node.right .node-marker {
    left: -15px;
}

.marker-core {
    width: 100%;
    height: 100%;
    background: #010a14;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-color);
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Connection Beam */
.timeline-node::after {
    content: '';
    position: absolute;
    top: 65px;
    width: 45px;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    z-index: 3;
    opacity: 0.3;
}

.timeline-node.left::after {
    right: 15px;
}

.timeline-node.right::after {
    left: 15px;
}

.timeline-node:hover::after {
    opacity: 1;
}

/* 2. Elite Story Card - Strategy HQ ULTIMATE REDESIGN (White Version) */
.elite-story-container {
    background: #ffffff;
    /* White bg */
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.elite-story-container::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    /* Subtle glow */
    top: -100px;
    right: -100px;
}

.elite-story-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    /* White card */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border */
    padding: 80px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.elite-story-card::before,
.elite-story-card::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--accent-color);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
}

.elite-story-card::before {
    top: -2px;
    left: -2px;
    border-width: 4px 0 0 4px;
}

.elite-story-card::after {
    bottom: -2px;
    right: -2px;
    border-width: 0 4px 4px 0;
}

.story-text h2 {
    font-size: 3.5rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 35px;
    letter-spacing: -2px;
    color: var(--primary-color);
    /* Dark text */
    text-transform: uppercase;
}

.story-text h2 span {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
}

.story-description p {
    font-size: 1.15rem;
    color: #555;
    /* Dark gray text */
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 500;
}

.story-stats-elite {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-capability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.cap-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    filter: none;
}

.cap-item span {
    color: var(--primary-color) !important;
    /* Dark text */
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: monospace;
}

.cap-item:hover {
    background: rgba(0, 198, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.s-item {
    display: flex;
    flex-direction: column;
}

.s-item .s-num-wrap {
    display: flex;
    align-items: baseline;
}

.s-item strong {
    font-size: 5rem;
    font-weight: 950;
    color: var(--primary-color);
    /* Dark text */
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: none;
}

.s-item span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    /* White text as requested */
    margin-top: 15px;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
    /* Nice accent border instead of pseudo-element */
    line-height: 1.2;
    opacity: 0.9;
}



.story-image-block {
    position: relative;
    padding: 20px;
}

.img-reveal-wrapper {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.img-reveal-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 10, 18, 0.2) 50%, rgba(1, 10, 18, 0.4) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.main-about-img {
    width: 100%;
    display: block;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.story-image-block:hover .main-about-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.tech-hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.hud-item {
    position: absolute;
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--accent-color);
    background: rgba(1, 10, 18, 0.9);
    padding: 6px 12px;
    border-left: 3px solid var(--accent-color);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.hud-label-main {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    font-weight: 950;
    white-space: nowrap;
}

.hud-label-main::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    margin-right: 15px;
    vertical-align: middle;
    animation: blink 0.5s infinite;
}

.item-tl {
    top: 10px;
    left: 10px;
}

.item-tr {
    top: 10px;
    right: 10px;
    border-left: 0;
    border-right: 3px solid var(--accent-color);
}

.item-bl {
    bottom: 10px;
    left: 10px;
}

.item-br {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-right: 3px solid var(--accent-color);
}

.item-cl {
    top: 50%;
    left: -40px;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--accent-color);
    color: #000;
    border: none;
}

.blink-stat {
    animation: blink 0.8s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 1;
    }
}

.experience-shield {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #000;
    border: 2px solid var(--accent-color);
    color: #ffffff;
    padding: 35px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 0 50px rgba(0, 198, 255, 0.4);
    z-index: 15;
    backdrop-filter: blur(10px);
}

.experience-shield strong {
    display: block;
    font-size: 3.5rem;
    font-weight: 950;
    line-height: 1;
    color: var(--accent-color);
}

.experience-shield span {
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

.tech-data-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 950;
    letter-spacing: 3px;
    z-index: 30;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 18px;
    border-radius: 2px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 198, 255, 0.1);
    white-space: nowrap;
}

.tech-data-point:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    transform: translateY(-5px);
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.tech-data-point.p1 {
    top: 25%;
    left: -40px;
}

.tech-data-point.p2 {
    bottom: 25%;
    right: -40px;
}

.data-pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color);
    animation: markerPulse 1.5s infinite;
}

/* Responsive Redesign - Story Card */
@media (max-width: 991px) {
    .elite-story-card {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px;
    }

    .tech-data-point {
        display: none;
    }
}

/* Responsive Redesign - Innovation Timeline v2.0 */
@media (max-width: 900px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-node {
        width: 100%;
        left: 0 !important;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left !important;
        margin-bottom: 80px;
    }

    .timeline-node.left .node-header {
        flex-direction: row;
    }

    .timeline-node.left .node-year,
    .timeline-node.right .node-year {
        left: 80px;
        right: auto;
        font-size: 4rem;
        top: -30px;
    }

    .timeline-node.left .node-marker,
    .timeline-node.right .node-marker {
        left: 15px;
        right: auto;
    }

    .timeline-node.left::after,
    .timeline-node.right::after {
        left: 30px;
        width: 50px;
    }

    .node-content {
        padding: 30px;
    }

    .innovation-timeline .section-title {
        font-size: 2.5rem;
    }
}

/* 4. Engineering Process - Services Page */
.process-section {
    background: #010a12;
    background: radial-gradient(circle at 50% 50%, #021a2e 0%, #010a12 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 198, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.process-section .section-title.text-white {
    color: #ffffff !important;
    font-size: 4.5rem;
    font-weight: 950;
    letter-spacing: -3px;
    text-shadow: 0 0 40px rgba(0, 198, 255, 0.3);
    margin-bottom: 20px;
}

.pipeline-container {
    position: relative;
    margin-top: 120px;
}

.pipeline-line {
    position: absolute;
    top: 85px;
    /* Aligned with rings: 30px padding + 55px (ring center) */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(0, 198, 255, 0) 0%,
            rgba(0, 198, 255, 0.4) 20%,
            rgba(255, 165, 0, 0.4) 80%,
            rgba(255, 165, 0, 0) 100%);
    z-index: 1;
}

.pipeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    box-shadow: 0 0 20px #fff;
    animation: flowLine 4s infinite linear;
}

@keyframes flowLine {
    0% {
        left: -100px;
    }

    100% {
        left: 100%;
    }
}

/* Process Styles Removed for Optimization */

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* 5. Final CTA - Premium Light Matrix */
.cta-light-matrix {
    background: #f8fbff;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(0, 198, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 165, 0, 0.05) 0%, transparent 30%);
}

.cta-light-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-white-card {
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 10, 20, 0.08);
    position: relative;
    z-index: 5;
    border: 1px solid rgba(0, 198, 255, 0.1);
}

.cta-white-card h2 {
    font-size: 4rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: #010a12;
}

.cta-white-card h2 span {
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-white-card p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-btns-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Extreme Buttons for CTA */
.extreme-btn {
    padding: 20px 45px;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    background: #010a12;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid #010a12;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.extreme-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.extreme-btn.ghost-dark {
    background: transparent;
    color: #010a12;
    border-color: #010a12;
}

.extreme-btn.ghost-dark:hover {
    background: #010a12;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-white-card h2 {
        font-size: 2.2rem;
    }

    .cta-white-card p {
        font-size: 1rem;
    }

    .cta-btns-row {
        flex-direction: column;
        gap: 15px;
    }

    .extreme-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }
}


/* ==========================================================================
   TITAN RESPONSIVE ENGINE (FINAL OVERRIDE)
   ========================================================================== */

/* 1. Global Typography Scaling */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .titan-hero h1 {
        font-size: 5rem;
        letter-spacing: -3px;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 14px;
    }

    .hero h1,
    .about-hero h1,
    .services-hero h1,
    .pricing-hero h1 {
        font-size: 3rem !important;
        letter-spacing: -2px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {

    .titan-hero h1,
    .hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* 2. Grid System Collapsing */
@media (max-width: 1024px) {

    .titan-grid,
    .pricing-grid-vip,
    .nexus-grid,
    .process-grid,
    .phi-grid,
    .features-grid,
    .footer-grid,
    .faq-grid,
    .faq-grid-elite {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }

    .tech-capability-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .titan-grid,
    .pricing-grid-vip,
    .nexus-grid,
    .process-grid,
    .phi-grid,
    .features-grid,
    .footer-grid,
    .faq-grid,
    .faq-grid-elite,
    .highlights-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 40px !important;
    }

    /* Force Flex containers to column */
    .advantage-wrapper,
    .about-content,
    .industry-flex,
    .cta-flex-box,
    .cta-elite-flex,
    .elite-story-card,
    .story-stats-elite {
        flex-direction: column !important;
        height: auto !important;
    }

    /* Industry Accordion Fix - Mobile Stack */
    .industry-flex {
        flex-direction: column !important;
        height: auto !important;
    }

    .industry-panel {
        width: 100% !important;
        height: 250px !important;
        /* Fixed height for mobile cards */
        flex: none !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .industry-panel.active {
        width: 100% !important;
        height: 250px !important;
        /* No expansion on mobile, standard card view */
    }

    /* Reset vertical text for mobile */
    .panel-content h3 {
        writing-mode: horizontal-tb !important;
        transform: rotate(0deg) !important;
        opacity: 1 !important;
        font-size: 1.5rem !important;
        margin-bottom: 10px;
        white-space: normal;
    }

    .panel-content p {
        opacity: 1 !important;
        display: block !important;
        font-size: 0.9rem;
        max-width: 100%;
    }

    .panel-content {
        bottom: 20px;
        left: 20px;
        opacity: 1;
        /* Always visible on mobile */
        pointer-events: auto;
        transform: translateY(0);
        padding-right: 20px;
    }

    .panel-number {
        top: 20px;
        left: 20px;
        font-size: 3rem;
        opacity: 0.3;
    }

    .panel-btn {
        margin-top: 15px;
        display: inline-flex !important;
        /* Ensure button is visible */
    }

    .industry-panel.active {
        width: 100% !important;
        height: 250px !important;
    }
}


/* 3. Pricing Table Scroll Fix */
.spec-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.tech-spec-table {
    min-width: 600px;
    /* Force minimum width to trigger scroll */
}

/* 4. Footer & Bottom Elements */
@media (max-width: 768px) {
    .footer-watermark {
        font-size: 5rem;
        bottom: 0;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-hero,
    .pricing-hero {
        padding-top: 15vh !important;
    }
}

/* 5. Mobile Menu & Interactive Elements */
@media (max-width: 1024px) {
    .nav-links {
        background: rgba(1, 10, 18, 0.98);
        /* Ensure solid background */
    }

    .menu-toggle {
        display: flex;
        /* Force show toggle */
    }
}

/* 6. Fix for Pricing Grid Items */
.faq-grid-elite {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .faq-grid-elite {
        grid-template-columns: 1fr;
    }

    .tier-card-titan.featured {
        transform: scale(1);
        border-width: 2px;
        z-index: 1;
    }

    .price-value-mass .amount {
        font-size: 3rem;
    }
}

/* 7. General Container Spacing & Global Fixes */
@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
    }

    .section-padding,
    section {
        padding: 50px 0 !important;
    }

    .container {
        padding: 0 20px !important;
    }

    /* Hero Buttons Fix */
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100%;
        align-items: center;
    }

    .hero .btn {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 280px;
    }

    /* Portfolio Filters Fix */
    .portfolio-filter {
        gap: 10px !important;
        margin-bottom: 40px !important;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 10px 15px !important;
        font-size: 0.65rem !important;
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
        text-align: center;
    }

    /* Portfolio Card & Stats Fix */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    .project-card {
        height: auto !important;
        min-height: 450px;
    }

    .project-overlay {
        padding: 20px !important;
    }

    .project-overlay h3 {
        font-size: 1.5rem !important;
    }

    .p-stats {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .p-stat-item {
        width: 100%;
    }

    /* Footprint Grid Fix */
    .footprint-grid {
        flex-direction: column !important;
        align-items: center;
    }

    .footprint-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0 !important;
    }

    .footprint-item::after {
        display: none !important;
    }

    /* Strategy Strip Fix */
    .strategy-flex-refined {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .strat-item {
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Logo Fix */
    .logo img {
        height: 35px !important;
    }

    /* Footer Watermark Fix */
    .footer-watermark {
        font-size: 3.5rem !important;
        bottom: 10px !important;
        opacity: 0.05 !important;
    }

    /* Advantage/Why Choose Us Tiles */
    .advantage-tiles {
        grid-template-columns: 1fr !important;
    }

    /* Real Estate section specifically (if it uses distinct classes) */
    .product-stats,
    .spec-grid {
        grid-template-columns: 1fr !important;
    }
}

/* 8. Super Small Device Fixes (iPhone SE etc) */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.75rem !important;
    }

    .filter-btn {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   MODERN ENGINEERING PIPELINE - NEXUS UPGRADE (PRIORITY LOAD)
   ========================================================================== */
.process-section-nexus {
    padding: 100px 0;
    background: #010a12 !important;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-section-nexus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.process-header-v2 {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.line-tag {
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
}

.line-tag span {
    padding: 3px 10px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 4px;
    font-size: 0.65rem;
}

.title-v2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1;
    color: #fff !important;
}

.title-v2 strong {
    color: var(--accent-color);
    background: linear-gradient(135deg, #fff 30%, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-v2 {
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 500;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.flow-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 35px;
    border-radius: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.card-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--step-color), transparent 70%);
    opacity: 0;
    transition: 0.6s;
    pointer-events: none;
}

.flow-card:hover .card-bg-glow {
    opacity: 0.08;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.step-idx {
    font-size: 3rem;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--step-color);
    position: relative;
    transition: 0.5s;
}

.icon-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px dashed var(--step-color);
    border-radius: 25px;
    opacity: 0.15;
    animation: rotateHub 15s linear infinite;
}

.flow-card:hover .step-icon-wrap {
    background: var(--step-color);
    color: #000;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px var(--step-color);
}

.flow-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff !important;
}

.flow-card p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.step-tags li {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.flow-card:hover .step-tags li {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.flow-card:hover {
    transform: translateY(-20px);
}

.flow-card:hover .card-inner {
    border-color: var(--step-color);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .title-v2 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .flow-grid {
        grid-template-columns: 1fr;
    }

    .process-section-nexus {
        padding: 80px 0;
    }

    .title-v2 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   PREMIUM WHITE CTA - SERVICES PAGE (PRIORITY LOAD)
   ========================================================================== */
.cta-premium-white {
    position: relative;
    padding: 140px 0;
    background: #f8faff !important;
    overflow: hidden;
    color: var(--primary-color) !important;
}

.cta-white-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 198, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-glass-vault {
    position: relative;
    z-index: 10;
    background: #ffffff !important;
    border: 1px solid rgba(0, 198, 255, 0.1);
    padding: 90px 60px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(1, 22, 39, 0.06);
    max-width: 1100px;
    margin: 0 auto;
}

.vault-tag {
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cta-glass-vault h2 {
    font-size: 5rem;
    font-weight: 950;
    color: var(--primary-color) !important;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.cta-glass-vault h2 strong {
    color: var(--accent-color);
    display: block;
    text-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.cta-glass-vault p {
    font-size: 1.3rem;
    color: #555 !important;
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: 500;
    line-height: 1.8;
}

.cta-action-row-v2 {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-titan {
    padding: 22px 50px;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    min-width: 250px;
    gap: 12px;
}

.btn-titan.primary {
    background: var(--accent-color);
    color: #000;
    border: 2px solid var(--accent-color);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
}

.btn-titan.outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-titan:hover {
    transform: translateY(-8px);
}

.btn-titan.primary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-titan.outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.vault-footer {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vault-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 950;
    color: var(--primary-color);
}

.stat-lab {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-top: 5px;
}

@media (max-width: 991px) {
    .cta-glass-vault {
        padding: 70px 30px;
        margin: 0 20px;
    }

    .cta-glass-vault h2 {
        font-size: 3.5rem;
    }

    .cta-premium-white {
        padding: 100px 0;
    }

    .vault-footer {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .cta-glass-vault h2 {
        font-size: 2.5rem;
    }

    .cta-action-row-v2 {
        flex-direction: column;
        gap: 15px;
    }

    .btn-titan {
        width: 100%;
        min-width: auto;
    }

    .vault-footer {
        flex-direction: column;
        gap: 30px;
    }
}