/*
Theme Name: Vyseit Theme
Theme URI: https://vyseit.com
Author: Vyseit
Author URI: https://vyseit.com
Description: Next-Gen Enterprise IT Solutions & Digital Agency Theme
Version: 1.0
Text Domain: vyseit
*/
:root {
    --bg-color: #05020d;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-purple: #7C3AED;
    --accent-glow: rgba(124, 58, 237, 0.6);
    --btn-primary-bg: #6D28D9;
    --btn-primary-hover: #8B5CF6;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

/* WCAG 2.4.1 - Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent-purple);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 99999;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* WCAG 2.4.7 - Visible Focus Indicators */
*:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 3px;
    border-radius: 4px;
}

/* WCAG 2.3.3 - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

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

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    position: relative;
    /* Subtle background grid/dots */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Background Gradients */
.bg-glow-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.4) 0%, transparent 60%);
    z-index: -1;
    filter: blur(80px);
}

/* Background Code Animation */
.hero-bg-image {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 1200px;
    z-index: -3;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
        url('assets/hero-bg-user.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    opacity: 0.5;
    /* Increased from 0.3 for more visibility */
    filter: blur(5px) brightness(0.9) contrast(1.1);
    /* Reduced blur from 12px to 5px for more detail */
    mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 95%);
    animation: slowFloat 20s ease-in-out infinite alternate;
}

@keyframes slowFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(2%, 2%) scale(1.05);
    }
}

.code-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    opacity: 0.3;
    /* Keep it subtle in the background */
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
}

.code-snippet {
    position: absolute;
    color: rgba(167, 139, 250, 0.6);
    /* Faint purple syntax color */
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-wrap;
    text-align: left;
    filter: blur(0.5px);
    animation: driftUp linear forwards;
}

@keyframes driftUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    to {
        transform: translateY(-200px);
        opacity: 0;
    }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Singular Page Styles */
.singular-page .entry-content p {
    margin-bottom: 24px;
}

.singular-page .entry-content h2, 
.singular-page .entry-content h3 {
    color: #fff;
    margin: 40px 0 16px 0;
}

.singular-page .entry-content ul, 
.singular-page .entry-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.singular-page .entry-content li {
    margin-bottom: 12px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0; /* Restored elegant, spacious padding */

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    padding-left: calc((100% - 1200px) / 2 + 24px);
    padding-right: calc((100% - 1200px) / 2 + 24px);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(5, 2, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: calc((100% - 1200px) / 2 + 24px);
    padding-right: calc((100% - 1200px) / 2 + 24px);
}

@media (max-width: 1248px) {
    .navbar, .navbar.scrolled {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem; /* Bigger text fallback */
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    height: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 36px; /* Further reduced to 36px for a minimalist look */

    width: auto;
    max-width: 180px;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
    user-select: none;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}




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

.nav-links a {
    color: #e4e4e7;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-link {
    color: #e4e4e7;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.login-link:hover {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--btn-primary-bg), #8B5CF6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg) scale(0);
    transition: transform 0.4s ease;
}

.btn-primary:hover::after {
    transform: rotate(45deg) scale(1);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: #e4e4e7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e4e4e7;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
}

.badge:hover {
    border-color: rgba(167, 139, 250, 0.4);
}

.floating-asset {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    opacity: 0.8;
}

.icona-float {
    top: 45%;
    right: 8%;
    width: 140px;
    height: 140px;
}

.icona-float img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(124, 58, 237, 0.5));
    mix-blend-mode: screen;
    animation: freeRotate 20s infinite linear;
}

.art-float-left {
    position: absolute;
    top: 40%;
    left: 8%;
    width: 100px;
    height: 100px;
    opacity: 0.7;
}

.art-float-left img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(124, 58, 237, 0.4));
    mix-blend-mode: screen;
}


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

    100% {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 0 50px rgba(124, 58, 237, 0.6), 0 0 100px rgba(0, 0, 0, 0.5);
    /* Stronger glow + black shadow for contrast */
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

/* Dashboard Mockup Display */
.dashboard-display {
    position: relative;
    width: 100%;
    max-width: 1060px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.glow-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -15px;
    /* glow drops slightly below */
    background: radial-gradient(ellipse at top, #d946ef 0%, #7c3aed 50%, transparent 70%);
    filter: blur(25px);
    opacity: 0.85;
    border-radius: 30px;
    z-index: 0;
}

.dashboard-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-wrapper:hover {
    transform: translateY(-8px);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* Animations adding some life */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.badge {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-title {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
    opacity: 0;
}

.hero-description {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.dashboard-display {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

/* Spinning Badge */
.spinning-badge {
    position: absolute;
    left: 2%;
    /* Positioned on the left side */
    top: 25%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Gentle floating */
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards, floatBadge 5s ease-in-out infinite 1s;
    opacity: 0;
}

.spinning-badge text {
    transform-origin: center;
    animation: spinText 15s linear infinite;
}

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

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

@keyframes floatBadge {

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

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@media (max-width: 1100px) {
    .spinning-badge {
        display: none;
        /* Hide on smaller screens */
    }
}

/* Trust Strip Section */
.trust-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    /* Reduced from 60px */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.02), transparent);
    overflow: hidden;
    /* Prevent horizontal scrollbars */
}

.strip-label {
    font-size: 0.7rem;
    /* Slightly smaller */
    font-weight: 700;
    color: #a1a1aa;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 25px;
    /* Reduced from 40px */
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards, shimmer 4s infinite linear 2s;
    background: linear-gradient(90deg, #a1a1aa, #ffffff, #a1a1aa);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.strip-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    overflow: hidden;
}

.strip-track {
    display: flex;
    gap: 80px;
    /* Reduced from 100px */
    /* Increased gap for better spacing */
    width: max-content;
    animation: scroll 30s linear infinite;
}

.strip-track:hover {
    animation-play-state: paused;
}

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

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

    /* Halfway through duplicated items */
}

.strip-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
}

.strip-item {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e4e4e7;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    position: relative;
    white-space: nowrap;
}

.strip-item:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
}

.strip-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: var(--accent-purple);
    transition: transform 0.3s ease;
}

.strip-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* General Section Styling */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.header-badge {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-purple);
    margin: 0 auto 16px auto;
    backdrop-filter: blur(8px);
    width: fit-content;
    animation: fadeUp 1s ease forwards, pulse 4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(124, 58, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 2px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px var(--accent-purple);
}

.section-subtitle {
    font-size: 1.35rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.highlight-text {
    color: #fff;
    font-weight: 700;
    position: relative;
    padding: 0 5px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(124, 58, 237, 0.2);
    z-index: -1;
}

/* Bento Grid - New Design Language */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Bento Pattern Overlay */
.bento-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.5s ease;
    background-image: radial-gradient(var(--accent-purple) 0.5px, transparent 0.5px);
    background-size: 15px 15px;
    pointer-events: none;
}

.bento-card:hover .bento-pattern {
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bento-card {
    background: rgba(10, 5, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    padding: 32px;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
    /* Subtle 3D Floating */
    animation: bentoFloat 8s ease-in-out infinite alternate;
}

@keyframes bentoFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.bento-card:nth-child(even) {
    animation-delay: -4s;
}

.bento-card:hover {
    animation-play-state: paused;
    border-color: rgba(124, 58, 237, 0.8);
    background: rgba(15, 10, 30, 0.7);
    transform: translateY(-15px) rotateX(6deg) rotateY(-3deg);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(124, 58, 237, 0.4),
        inset 0 0 30px rgba(124, 58, 237, 0.1);
}

/* Moving Border Glow Effect */
.bento-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
    background-size: 200% 100%;
    z-index: -1;
    border-radius: 34px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::after {
    opacity: 1;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 3D Content Depth */
.bento-content {
    transform: translateZ(40px);
    position: relative;
    z-index: 2;
}

.bento-wide .bento-content {
    max-width: 65%;
}

.bento-illustration {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: auto;
    height: 140px;
    z-index: 1;
    opacity: 0.85;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    mix-blend-mode: screen;
    /* Softly blends the harsh corners out into full transparency so no square edges are visible */
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 72%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 72%);
}

.bento-card:hover .bento-illustration {
    transform: translateY(-5px) scale(1.03);
    opacity: 1;
    /* Maintain the masked edges on hover */
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 48%, rgba(0, 0, 0, 0) 75%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 48%, rgba(0, 0, 0, 0) 75%);
}

.bento-wide .bento-illustration {
    right: 20px;
    bottom: -20px;
    height: 200px;
}

.bento-tall .bento-illustration {
    right: -20px;
    bottom: 20px;
    height: 160px;
}

/* Bento Sizing */
.bento-wide {
    grid-column: span 2;
}

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

/* Card Content Details */
.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.02em;
}

.bento-card p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Specialized Visual Elements */
.bento-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-visual {
    opacity: 0.25;
}

.viz-reinvention {
    background: radial-gradient(circle at bottom right, var(--accent-purple) 0%, transparent 60%);
    background-image: radial-gradient(var(--accent-purple) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

.viz-cloud {
    background: linear-gradient(135deg, transparent 40%, rgba(56, 189, 248, 0.2) 100%);
    mask-image: radial-gradient(circle at center, black, transparent);
}

.viz-security {
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(124, 58, 237, 0.05) 10px, rgba(124, 58, 237, 0.05) 11px);
}

.bento-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.capability-tag {
    font-size: 0.8rem;
    color: #71717a;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    color: #e4e4e7;
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li::before {
    content: '→';
    color: var(--accent-purple);
    font-weight: 700;
}

/* Velocity Stepper Section (V7 - Horizontal Flow) */
.velocity-stepper-container {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 16px;
    padding: 20px 24px;
}

.v-step-card {
    flex: 1;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.v-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.v-step-content h3 {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.v-step-content p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step Connector (The Arrow Button) */
.v-step-connector {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #a1a1aa;
    transition: all 0.3s ease;
}

.v-step-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

@media (max-width: 1100px) {
    .velocity-stepper-container {
        flex-direction: column;
        gap: 30px;
    }

    .v-step-connector {
        right: auto;
        bottom: -24px;
        top: auto;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}

/* Service Marquee Strip (V10) */
.service-marquee {
    background: var(--btn-primary-bg);
    color: var(--text-primary);
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 100;
    margin-top: 0;
    margin-bottom: 0;
    width: 105vw;
    /* Oversize for rotation */
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Ensure container doesn't have overflow-x issue */
body {
    overflow-x: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeMove 40s linear infinite;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.marquee-unit {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.m-star {
    font-size: 1.8rem;
    display: inline-block;
}

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

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

/* Update previous section to accommodate marquee */
.approach-section {
    padding-bottom: 0;
}

/* Impact Section - Redesign */
.impact-section-new {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('assets/bg.png') no-repeat center center;
    background-size: cover;
    width: 100%;
}

.impact-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.impact-new-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.impact-new-subtitle {
    color: #a1a1aa;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.impact-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.impact-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.impact-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.impact-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(124, 58, 237, 0.15);
}

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

.featured-glass-card {
    transform: scale(1.05);
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

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

.impact-value {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-suffix {
    font-size: 2.5rem;
    color: var(--accent-purple);
    -webkit-text-fill-color: var(--accent-purple);
}

.impact-heading {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.impact-detail {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Built for the Long Term - Redesign */
.long-term-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('assets/bg2.png') no-repeat center center;
    background-size: cover;
}

.long-term-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.lt-item {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lt-item:hover {
    background: rgba(124, 58, 237, 0.03);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lt-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.lt-item:hover .lt-icon-wrap {
    background: var(--accent-purple);
    color: #fff;
    transform: rotate(10deg);
}

.lt-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.lt-content p {
    color: #a1a1aa;
    line-height: 1.7;
    font-size: 1rem;
}

.lt-background-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .long-term-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Redesign */
@media (max-width: 1000px) {
    .impact-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }

    .featured-glass-card {
        transform: scale(1);
    }

    .featured-glass-card:hover {
        transform: translateY(-10px);
    }

    .long-term-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Expertise Section - Cinematic Redesign */
.expertise-cinematic {
    position: relative;
    background: #030303;
    overflow: hidden;
    padding: 140px 0;
}

.cine-bg-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.05em;
    transition: opacity 0.5s ease;
}

.expertise-cine-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

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

.expertise-cine-subtitle {
    color: #a1a1aa;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 20px auto 0;
    max-width: 600px;
}

.expertise-cine-banner {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.expertise-cine-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-cinematic:hover .expertise-cine-banner img {
    transform: scale(1.05);
}

.cine-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.6) 50%, rgba(3, 3, 3, 1) 100%);
}

.cine-glass-panel {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.cine-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.cine-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-unit {
    font-size: 1.25rem;
    color: var(--accent-purple);
    margin-left: 4px;
}

.stat-label {
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.expertise-cine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cine-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cine-card:hover {
    transform: translateY(-10px);
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.2);
}

.cine-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.cine-card:hover .cine-icon-wrap {
    background: var(--accent-purple);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.cine-card-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cine-card-desc {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

    .cine-glass-panel {
        padding: 20px 32px;
        gap: 32px;
    }

    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .expertise-cine-banner {
        height: 350px;
    }

    .expertise-cine-grid {
        grid-template-columns: 1fr;
    }

    .cine-glass-panel {
        width: 90%;
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .cine-divider {
        width: 80%;
        height: 1px;
    }
}

/* Modern FAQ Section - Redesigned */
.faq-section-modern {
    background: #050505;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.faq-section-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.faq-modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.icona-float-faq {
    position: absolute;
    top: 20px;
    right: -120px;
    width: 180px;
    height: 180px;
    opacity: 0.8;
}

.icona-float-faq img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.5));
    mix-blend-mode: screen;
    animation: freeRotate 25s infinite linear;
}


.faq-modern-subtitle {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

.faq-modern-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.faq-modern-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Moving Border Glow Effect (same as bento cards) */
.faq-modern-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
    background-size: 200% 100%;
    z-index: -1;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-modern-item:hover::after {
    opacity: 1;
    animation: borderMove 3s linear infinite;
}

.faq-modern-item:hover {
    border-color: rgba(124, 58, 237, 0.8);
    background: rgba(15, 10, 30, 0.7);
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(124, 58, 237, 0.2),
        inset 0 0 20px rgba(124, 58, 237, 0.05);
}

.faq-modern-header-row {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 1;
}

.faq-modern-header-row h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-modern-item:hover .faq-modern-header-row h3 {
    color: #c4b5fd;
}

.faq-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-modern-item:hover .faq-toggle-btn {
    background: rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}


.faq-toggle-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.faq-modern-item.active {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 10px 40px -10px rgba(124, 58, 237, 0.15);
}

.faq-modern-item.active .faq-toggle-btn {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.faq-modern-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.faq-modern-item.active .faq-modern-body {
    max-height: 300px;
    opacity: 1;
}

.faq-body-content {
    padding: 0 32px 32px;
}

.faq-body-content p {
    color: #a1a1aa;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Redesigned bottom contact prompt */
.faq-modern-footer {
    text-align: center;
    margin-top: 60px;
    color: #71717a;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.faq-modern-footer a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.faq-modern-footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-purple);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-modern-footer a:hover {
    color: #9f7aea;
}

.faq-modern-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background: #9f7aea;
}

@media (max-width: 768px) {
    .faq-modern-header-row {
        padding: 20px 24px;
    }

    .faq-modern-header-row h3 {
        font-size: 1.1rem;
    }

    .faq-body-content {
        padding: 0 24px 24px;
    }
}

/* IT Agency CTA Section */
.it-cta-section {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%), url('assets/bg6.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.it-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.it-cta-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #fff;
}

@media (max-width: 768px) {
    .it-cta-title {
        font-size: 3.5rem;
    }
}

.gradient-text-alt {
    background: linear-gradient(to right, #ffffff, var(--accent-purple), #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.it-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.it-cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.it-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: #22c55e;
}

.cta-actions-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-lg-glow {
    padding: 18px 48px;
    font-size: 1.15rem;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.btn-lg-glow:hover {
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
}

.cta-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

.proof-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

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

.it-cta-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.form-card-header h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-card-header p {
    color: #a1a1aa;
    font-size: 1rem;
    margin-bottom: 30px;
}

.it-audit-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-purple);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group select {
    color: rgba(255, 255, 255, 0.8);
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #18181b;
    color: #fff;
}

.btn-submit {
    margin-top: 10px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-purple), #4F46E5);
    border: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

@media (max-width: 900px) {
    .it-cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .it-cta-title {
        font-size: 3.5rem;
    }
}


/* Custom Footer Design */
.footer.new-design {
    background-color: #070707;
    background-image: repeating-linear-gradient(-45deg,
            #0a0a0a,
            #0a0a0a 25px,
            #070707 25px,
            #070707 50px);
    border-top: none;
    padding: 80px 24px 100px;
    font-family: 'Inter', sans-serif;
}

.footer-top-email {
    text-align: right;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.giant-email {
    font-size: 5rem;
    font-weight: 700;
    color: #ccff00;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.giant-email:hover {
    opacity: 0.8;
}

.footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background-color: #222;
    margin-bottom: 60px;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left-card h3 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.03em;
}

.circle-btn {
    width: 48px;
    height: 48px;
    background-color: #ccff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.circle-btn:hover {
    transform: scale(1.1) rotate(45deg);
}

.footer-left-card p {
    color: #000;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    margin-top: 60px;
    letter-spacing: -0.01em;
}

.footer-right-links {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.footer-col .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .footer-links li {
    margin-bottom: 20px;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-col .footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col .footer-links a:hover {
    color: #ccff00;
}

.footer-col.contact-col .footer-links li {
    margin-bottom: 12px;
}

@media (max-width: 1000px) {
    .footer-main-content {
        flex-direction: column;
    }

    .footer-right-links {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .giant-email {
        font-size: 3rem;
    }

    .footer-right-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-right-links {
        grid-template-columns: 1fr;
    }

    .footer-left-card {
        width: 100%;
    }
}

/* How We Work Section */
.hww-section {
    position: relative;
    padding: 100px 0;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 1;
    overflow: hidden;
}

/* Vertical Stripes Background */
.hww-bg-stripes {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}

.hww-bg-stripes .stripe {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.03));
}

.hww-bg-stripes .stripe:last-child {
    border-right: none;
}

/* Top Row */
.hww-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.hww-text-content {
    max-width: 650px;
}

.hww-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.hww-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e4e4e7;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Button styling moved to .btn-primary */

.hww-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hww-visual img {
    max-width: 300px;
    height: auto;
    animation: slowFloat 8s ease-in-out infinite alternate;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Cards Grid */
.hww-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hww-card {
    background: rgba(10, 5, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hww-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.8);
    background: rgba(15, 10, 30, 0.7);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(124, 58, 237, 0.4), inset 0 0 30px rgba(124, 58, 237, 0.1);
}

/* Card Glow Background */
.hww-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hww-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
}

.hww-card:nth-child(3)::before {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
}

.hww-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #18181b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Individual icon glows */
.hww-card:nth-child(1) .hww-icon-wrap {
    box-shadow: inset 0 0 20px rgba(74, 222, 128, 0.1), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hww-card:nth-child(2) .hww-icon-wrap {
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.15), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hww-card:nth-child(3) .hww-icon-wrap {
    box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.15), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hww-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.hww-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a1a1aa;
}

@media (max-width: 992px) {
    .hww-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

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

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

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

/* Premium Hexlab-Style Footer */
.hex-footer {
    background-color: #0a0514;
    /* Dark background matching the theme */
    color: #a1a1aa;
    padding: 80px 48px 40px;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* subtle top border */
}

.hex-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Divider before bottom strip */
}

.hex-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
}

.hex-dot {
    color: var(--accent-purple);
    /* matching accent color */
    font-size: 2rem;
    line-height: 0;
    margin-left: 2px;
}

.hex-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.hex-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hex-links,
.hex-col .widget_nav_menu ul,
.hex-col .widget_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hex-links li,
.hex-col .widget_nav_menu ul li,
.hex-col .widget_block ul li {
    margin-bottom: 14px;
}

.hex-links a,
.hex-col .widget_nav_menu ul a,
.hex-col .widget_block ul a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.hex-links a:hover,
.hex-col .widget_nav_menu ul a:hover,
.hex-col .widget_block ul a:hover {
    color: #ffffff;
}

/* Subscription Form Column */
.hex-subscribe-form {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    position: relative;
}

.hex-subscribe-form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.hex-subscribe-form input:focus {
    border-color: var(--accent-purple);
}

.hex-subscribe-form input::placeholder {
    color: #666;
}

.hex-btn-submit {
    background: linear-gradient(135deg, var(--accent-purple), #9f7aea);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    /* matching placeholder shape */
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    /* Glow effect */
}

.hex-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
}

/* Footer Bottom Strip */
.hex-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 0;
    font-size: 0.9rem;
    color: #a1a1aa;
}

.hex-inquiries {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.inq-label {
    color: var(--accent-purple);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.inq-email {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.inq-email:hover {
    opacity: 0.8;
}

@media (max-width: 1000px) {
    .hex-footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hex-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .hex-inquiries {
        align-items: center;
    }
}

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

    .hex-footer {
        padding: 50px 24px 30px;
    }
}

/* Recent Projects / Portfolio Section */
.projects-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.projects-circle {
    width: 14px;
    height: 14px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    position: relative;
    background: transparent;
}

.projects-circle::before,
.projects-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: var(--accent-purple);
    opacity: 0.5;
}

.projects-circle::before {
    right: 100%;
    margin-right: 15px;
}

.projects-circle::after {
    left: 100%;
    margin-left: 15px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2.5fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

/* Narrow Cards */
.vertical-title-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.narrow-content-top {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    text-align: center;
    z-index: 5;
}

.narrow-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00f2ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.vertical-title-container h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
}

/* Wide Card */
.wide-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.project-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-action-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
}

.wide-content h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: -5px;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.wide-content p {
    color: #e4e4e7;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1000px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .project-card {
        height: 400px;
    }

    .project-card.wide-card {
        grid-column: span 2;
        height: 450px;
    }

    .vertical-title-container {
        align-items: center;
    }

    .vertical-title-container h3 {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        width: 80%;
        white-space: normal;
        position: absolute;
        bottom: 20px;
    }
}

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

    .project-card.wide-card {
        grid-column: span 1;
    }

    .wide-overlay {
        flex-direction: column;
        left: 20px;
        bottom: 20px;
    }
}

/* Tech Marquee Strip */
.tech-strip-section {
    background-color: #212124;
    /* Premium Grey Color */
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator from section above */
    display: flex;
    align-items: center;
}

.tech-strip-track {
    display: flex;
    width: max-content;
    animation: techScroll 30s linear infinite;
    gap: 80px;
    padding: 0 40px;
}

.tech-strip-track:hover {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e4e4e7;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    opacity: 1;
}

.tech-item svg {
    width: 32px;
    height: 32px;
}

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

    100% {
        transform: translateX(calc(-50% - 40px));
        /* Half length to seamless loop */
    }
}

/* =========================================
   PREMIUM PRELOADER & SCROLL REVEAL
   ========================================= */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05020d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.preloader-logo {
    margin-bottom: 30px;
    animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-line-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-line {
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-purple);
    animation: lineLoad 2.5s infinite ease-in-out;
}

.preloader-text {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    opacity: 0.6;
    text-transform: uppercase;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        filter: drop-shadow(0 0 0px var(--accent-purple));
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--accent-purple));
    }
}

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

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* SCROLL REVEAL EFFECTS */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    filter: blur(15px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Specific Delay for Grid Iteration - "One by One" Effect (Faster & Smooth) */
.cine-card:nth-child(1) {
    transition-delay: 0.1s;
}

.cine-card:nth-child(2) {
    transition-delay: 0.25s;
}

.cine-card:nth-child(3) {
    transition-delay: 0.4s;
}

.bento-card:nth-child(1) {
    transition-delay: 0.1s;
}

.bento-card:nth-child(2) {
    transition-delay: 0.25s;
}

.bento-card:nth-child(3) {
    transition-delay: 0.4s;
}

.bento-card:nth-child(4) {
    transition-delay: 0.55s;
}

.project-card:nth-child(1) {
    transition-delay: 0.1s;
}

.project-card:nth-child(2) {
    transition-delay: 0.25s;
}

.project-card:nth-child(3) {
    transition-delay: 0.4s;
}

.project-card:nth-child(4) {
    transition-delay: 0.55s;
}

.faq-modern-item:nth-child(1) {
    transition-delay: 0.1s;
}

.faq-modern-item:nth-child(2) {
    transition-delay: 0.25s;
}

.faq-modern-item:nth-child(3) {
    transition-delay: 0.4s;
}

.faq-modern-item:nth-child(4) {
    transition-delay: 0.55s;
}

.faq-modern-item:nth-child(5) {
    transition-delay: 0.7s;
}

.faq-modern-item:nth-child(6) {
    transition-delay: 0.85s;
}

/* SMOOTH ENTRANCE FOR HERO (when preloader vanishes) */
.hero .hero-title,
.hero .hero-description,
.hero .hero-buttons,
.hero .badge,
.hero .spinning-badge {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.loaded .hero .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

body.loaded .hero .hero-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

body.loaded .hero .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

body.loaded .hero .badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

body.loaded .hero .spinning-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* =========================================
   MODERN MOTION EFFECTS (Parallax & Shimmer)
   ========================================= */

/* 1. Magnetic Effect Utility */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
}

/* 2. Interactive Card Glow (Dynamic Mouse Follow) */
.cine-card,
.bento-card,
.project-card {
    position: relative;
    overflow: hidden;
}

.cine-card::before,
.bento-card::before,
.project-card::before {
    content: "";
    position: absolute;
    top: calc(var(--my, 50%) - 150px);
    left: calc(var(--mx, 50%) - 150px);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* 3. Modern CSS Sweep Shimmer Overlay */
.shimmer-effect {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 55%);
    transform: none;
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.cine-card:hover .shimmer-effect,
.bento-card:hover .shimmer-effect,
.project-card:hover .shimmer-effect {
    animation: shimmerSweep 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes shimmerSweep {
    0% {
        top: -100%;
        left: -100%;
    }

    100% {
        top: 100%;
        left: 100%;
    }
}

/* 4. Mouse-Responsive Asset Parallax */
.parallax-asset {
    transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

/* 5. Section Smooth Entrance Filter Reveal */
.section-title.revealed {
    animation: splitTextIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes splitTextIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.98);
        filter: blur(15px);
    }

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

/* =========================================
   CHATBOT WIDGET
   ========================================= */

#chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

/* Toggle Button */
#chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 0 0 rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: chatPulse 2s ease-in-out infinite;
}

#chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.6);
}

#chatbot-toggle .close-icon {
    display: none;
}

#chatbot-toggle.active .chat-icon {
    display: none;
}

#chatbot-toggle.active .close-icon {
    display: block;
}

#chatbot-toggle.active {
    animation: none;
}

@keyframes chatPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 0 0 rgba(124, 58, 237, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 0 12px rgba(124, 58, 237, 0);
    }
}

/* Notification Badge */
.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #05020d;
}

/* Chat Panel */
#chatbot-panel {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    height: 500px;
    background: rgba(10, 6, 20, 0.95);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#chatbot-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Header */
.chatbot-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(124, 58, 237, 0.08);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 58, 237, 0.4);
}

.chatbot-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.chatbot-status {
    color: #a1a1aa;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    box-shadow: 0 0 6px #22c55e;
}

/* Messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    animation: msgIn 0.3s ease;
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.chat-msg.bot .chat-bubble {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e4e4e7;
    border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-time {
    font-size: 0.65rem;
    color: #52525b;
    margin-top: 4px;
    padding: 0 4px;
}

.chat-msg.user .chat-time {
    text-align: right;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Typing Indicator */
.chat-bubble.typing {
    display: flex;
    gap: 4px;
    padding: 14px 20px;
}

.chat-bubble.typing .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.6);
    animation: typingBounce 1.4s ease-in-out infinite;
}

.chat-bubble.typing .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-bubble.typing .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

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

    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Input */
.chatbot-input-wrap {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
}

#chatbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

#chatbot-input::placeholder {
    color: #52525b;
}

#chatbot-input:focus {
    border-color: rgba(124, 58, 237, 0.5);
}

#chatbot-send {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
    #chatbot-panel {
        width: calc(100vw - 30px);
        right: -15px;
        height: 420px;
    }
}

/* =========================================
   WCAG ACCESSIBILITY WIDGET
   ========================================= */

#a11y-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
}

#a11y-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.4);
    background: rgba(10, 6, 20, 0.9);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(124, 58, 237, 0.15);
    transition: all 0.3s ease;
}

#a11y-toggle:hover {
    transform: scale(1.1);
    border-color: rgba(124, 58, 237, 0.8);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 58, 237, 0.3);
}

#a11y-toggle .a11y-close {
    display: none;
}

#a11y-toggle.active .a11y-icon {
    display: none;
}

#a11y-toggle.active .a11y-close {
    display: block;
}

/* Panel */
#a11y-panel {
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 280px;
    background: rgba(10, 6, 20, 0.95);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(124, 58, 237, 0.08);
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#a11y-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.a11y-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
    font-size: 0.92rem;
    color: #fff;
}

.a11y-options {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.a11y-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: #a1a1aa;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.a11y-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.a11y-option.active {
    background: rgba(124, 58, 237, 0.15);
    color: #c4b5fd;
    border-left: 3px solid var(--accent-purple);
}

.a11y-option.active svg {
    stroke: #c4b5fd;
}

.a11y-reset {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
    padding-top: 14px;
    color: #ef4444;
}

.a11y-reset:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* =========================================
   ACCESSIBILITY MODE EFFECTS
   ========================================= */

/* High Contrast - exclude widget elements */
body.a11y-high-contrast main,
body.a11y-high-contrast footer {
    filter: contrast(1.4);
}

body.a11y-high-contrast *:not(#a11y-widget):not(#a11y-widget *):not(#chatbot-widget):not(#chatbot-widget *) {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Protect widgets from all accessibility overrides */
#a11y-widget,
#a11y-widget *,
#chatbot-widget,
#chatbot-widget * {
    filter: none !important;
    font-size: unset;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
}

/* Larger Text */
body.a11y-large-text {
    font-size: 120%;
}

body.a11y-large-text h1 {
    font-size: 3.5rem;
}

body.a11y-large-text h2 {
    font-size: 2.5rem;
}

body.a11y-large-text h3 {
    font-size: 1.6rem;
}

body.a11y-large-text p,
body.a11y-large-text span,
body.a11y-large-text a {
    font-size: 1.1rem;
}

/* Highlight Links - exclude widgets */
body.a11y-highlight-links a:not(#a11y-widget a):not(#chatbot-widget a) {
    outline: 2px solid #facc15 !important;
    outline-offset: 2px;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

/* Reduce Motion */
body.a11y-reduce-motion,
body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Dyslexia Friendly Font - exclude widgets */
body.a11y-dyslexia {
    font-family: 'Comic Sans MS', 'OpenDyslexic', cursive, sans-serif !important;
    letter-spacing: 0.05em;
    word-spacing: 0.15em;
    line-height: 1.8;
}

body.a11y-dyslexia *:not(#a11y-widget *):not(#chatbot-widget *) {
    font-family: inherit !important;
}