:root {
    --primary-gradient: linear-gradient(135deg, #00fff5 0%, #7b2ff7 100%);
    --secondary-gradient: linear-gradient(135deg, #ff006e 0%, #fb5607 100%);
    --tertiary-gradient: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    --quaternary-gradient: linear-gradient(135deg, #06ffa5 0%, #00d4ff 100%);
    
    --bg-dark: #0a0f1f;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-overlay: rgba(10, 15, 31, 0.85);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-accent: #00fff5;
    
    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 40px rgba(0, 255, 245, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
    
    --font-display: Arial, Helvetica, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Neural Canvas Background */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(10, 15, 31, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.nav-logo:hover .logo-text {
    opacity: 0.9;
}

.logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-accent);
}

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

.nav-link-cta {
    background: var(--primary-gradient);
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--bg-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

body.menu-open {
    overflow: hidden;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 15% 40%, rgba(0, 255, 245, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 85% 35%, rgba(123, 47, 247, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(10, 15, 31, 0.4) 100%);
}

.hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 245, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 245, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem 3rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 255, 245, 0.08);
    border: 1px solid rgba(0, 255, 245, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--text-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 520px;
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-accent);
    transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-visual-glow {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 245, 0.2) 0%, rgba(123, 47, 247, 0.15) 45%, transparent 70%);
    filter: blur(28px);
    animation: heroGlowPulse 5s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-figure {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}

.hero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
}

.hero-strip-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem;
    min-height: 88px;
    background: #0c1224;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.hero-strip-item:last-child {
    border-right: none;
}

.hero-strip-item:hover {
    background: #121a32;
}

.hero-strip-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.hero-strip-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.hero-strip-item:hover .hero-strip-title {
    color: var(--text-accent);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 255, 245, 0.35), rgba(123, 47, 247, 0.35));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-gradient-backdrop {
    position: absolute;
    inset: -20px;
    background: var(--primary-gradient);
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 30px;
    z-index: -1;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background-color: var(--bg-card);
}

.hero-glow-core {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #00fff5 0%, #7b2ff7 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(0, 255, 245, 0.8),
                0 0 100px rgba(123, 47, 247, 0.6),
                inset 0 0 25px rgba(255, 255, 255, 0.4);
    animation: corePulse 3s ease-in-out infinite;
    z-index: 2;
}

.hero-industries-panel {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: #0f172a;
    border: 1px solid rgba(0, 255, 245, 0.15);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-industries-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.hero-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.industry-chip {
    display: block;
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.industry-chip:hover {
    color: var(--text-accent);
    border-color: rgba(0, 255, 245, 0.4);
    background: rgba(0, 255, 245, 0.08);
    transform: translateY(-2px);
}

/* Floating Glassmorphic Industry Badges */
.hud-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(8, 12, 28, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 0.45rem 0.9rem 0.45rem 0.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 10;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
}

.hud-widget:hover {
    transform: scale(1.08) translateY(-2px);
    border-color: var(--accent, rgba(0, 255, 245, 0.5));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6),
                0 0 16px var(--accent, rgba(0, 255, 245, 0.15));
}

.widget-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--accent, #00fff5);
    box-shadow: 0 0 8px var(--accent, #00fff5);
    animation: blinkDot 1.4s infinite alternate;
}

@keyframes blinkDot {
    to { opacity: 0.35; box-shadow: none; }
}

.widget-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}

/* Individual positions & drift animations */
.w-healthcare  { top: 2%;  left: 5%;  --accent: #ff4d6d; animation: drift1 6s ease-in-out infinite; }
.w-aerospace   { top: 0%;  right: 8%; --accent: #00fff5; animation: drift2 7s ease-in-out infinite; }
.w-education   { top: 22%; right: -8%; --accent: #4cc9f0; animation: drift3 6.5s ease-in-out infinite; }
.w-manufact    { bottom: 20%; right: -6%; --accent: #fb5607; animation: drift4 8s ease-in-out infinite; }
.w-media       { bottom: 4%; right: 10%; --accent: #ff006e; animation: drift5 7.5s ease-in-out infinite; }
.w-marketing   { bottom: 0%; left: 18%; --accent: #ffbe0b; animation: drift6 6.8s ease-in-out infinite; }
.w-automotive  { bottom: 18%; left: -2%; --accent: #4361ee; animation: drift7 7.2s ease-in-out infinite; }
.w-oilgas      { top: 55%;  left: -10%; --accent: #3a0ca3; animation: drift8 8.5s ease-in-out infinite; }
.w-protective  { top: 35%;  left: -8%;  --accent: #7209b7; animation: drift9 6s ease-in-out infinite; }
.w-navigation  { top: 18%;  left: 2%;   --accent: #f72585; animation: drift10 7s ease-in-out infinite; }
.w-retail      { top: 8%;   left: 30%;  --accent: #7b2ff7; animation: drift11 9s ease-in-out infinite; }
.w-enterprises { top: 32%;  right: -4%; --accent: #06d6a0; animation: drift12 7.8s ease-in-out infinite; }

/* Animation Keyframes */
@keyframes rotate3dX {
    0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); }
    100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); }
}

@keyframes rotate3dY {
    0% { transform: rotateX(-65deg) rotateY(-15deg) rotateZ(0deg); }
    100% { transform: rotateX(-65deg) rotateY(-15deg) rotateZ(360deg); }
}

@keyframes rotate3dZ {
    0% { transform: rotateX(15deg) rotateY(-70deg) rotateZ(0deg); }
    100% { transform: rotateX(15deg) rotateY(-70deg) rotateZ(360deg); }
}

/* Badge drift keyframes */
@keyframes drift1  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(8px,-12px)} }
@keyframes drift2  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-10px,8px)} }
@keyframes drift3  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-8px,-10px)} }
@keyframes drift4  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-12px,10px)} }
@keyframes drift5  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(6px,-8px)} }
@keyframes drift6  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-6px,12px)} }
@keyframes drift7  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(10px,8px)} }
@keyframes drift8  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(12px,-6px)} }
@keyframes drift9  { 0%,100%{transform:translate(0,0)}  50%{transform:translate(8px,10px)} }
@keyframes drift10 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(6px,-14px)} }
@keyframes drift11 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-8px,-6px)} }
@keyframes drift12 { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-10px,10px)} }

@keyframes blink {
    to { opacity: 0.3; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text-accent));
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Section Styling */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 245, 0.1);
    border: 1px solid rgba(0, 255, 245, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2,
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

/* Partners Carousel Section */
.partners-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 245, 0.03) 50%, transparent 100%);
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: partnerScroll 35s linear infinite;
}

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

@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 2.5rem;
    min-width: 200px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 255, 245, 0.5);
    box-shadow: 0 10px 40px rgba(0, 255, 245, 0.2);
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    white-space: nowrap;
}

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

/* Redesigned About Section */
.about-section {
    background: radial-gradient(circle at top right, rgba(123, 47, 247, 0.12) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(0, 255, 245, 0.06) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 245, 0.03) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: center;
}

.about-content .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3.5rem 0;
}

.stat-item {
    position: relative;
    padding: 2.2rem 1.5rem;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: var(--transition-bounce);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 245, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 245, 0.1);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon-wrapper {
    background: rgba(0, 255, 245, 0.1);
    border-color: rgba(0, 255, 245, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(0, 255, 245, 0.2);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-left: 2px;
}

.stat-item:nth-child(2) .stat-plus {
    color: #ff006e;
}
.stat-item:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #ffffff 30%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item:nth-child(2):hover .stat-icon-wrapper {
    background: rgba(255, 0, 110, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.2);
}

.stat-item:nth-child(3) .stat-plus {
    color: #4cc9f0;
}
.stat-item:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #ffffff 30%, #4cc9f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item:nth-child(3):hover .stat-icon-wrapper {
    background: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.3);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* About capabilities panel */
.about-visual {
    position: relative;
    width: 100%;
}

.capabilities-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-accent);
    margin-bottom: 1.25rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.capability-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.capability-card:hover {
    border-color: rgba(0, 255, 245, 0.35);
    transform: translateX(6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.capability-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.capability-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.capability-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.capability-cfd .capability-icon {
    background: rgba(76, 97, 238, 0.15);
    color: #4361ee;
    border: 1px solid rgba(76, 97, 238, 0.3);
}

.capability-web .capability-icon {
    background: rgba(255, 0, 110, 0.15);
    color: #ff006e;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.capability-ai .capability-icon {
    background: rgba(0, 255, 245, 0.15);
    color: #00fff5;
    border: 1px solid rgba(0, 255, 245, 0.3);
}

.capability-auto .capability-icon {
    background: rgba(251, 86, 7, 0.15);
    color: #fb5607;
    border: 1px solid rgba(251, 86, 7, 0.3);
}

.capability-ecom .capability-icon {
    background: rgba(123, 47, 247, 0.15);
    color: #7b2ff7;
    border: 1px solid rgba(123, 47, 247, 0.3);
}

/* Legacy hologram (unused) */
.about-visual-legacy {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    width: 100%;
}

.hologram-dashboard {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-globe {
    position: relative;
    width: 260px;
    height: 260px;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: floatGlobe 6s ease-in-out infinite;
}

.globe-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(0, 255, 245, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 255, 245, 0.05), inset 0 0 30px rgba(0, 255, 245, 0.05);
}

.ring-x {
    transform: rotateX(70deg) rotateY(0deg);
    animation: spinRingX 12s linear infinite;
    border-color: rgba(123, 47, 247, 0.4);
}

.ring-y {
    transform: rotateX(0deg) rotateY(70deg);
    animation: spinRingY 16s linear infinite;
    border-color: rgba(0, 255, 245, 0.4);
}

.ring-z {
    transform: rotateZ(0deg);
    border-style: solid;
    border-width: 1px;
    animation: spinRingZ 25s linear infinite;
    border-color: rgba(255, 255, 255, 0.1);
}

.globe-core {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #00fff5 0%, #7b2ff7 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(0, 255, 245, 0.8),
                0 0 100px rgba(123, 47, 247, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0.5);
    animation: corePulse 3s ease-in-out infinite;
}

/* Floating Orbiting Tech Panels */
.floating-panel {
    position: absolute;
    background: rgba(10, 15, 31, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.4rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
    cursor: pointer;
    z-index: 10;
    width: 250px;
}

.floating-panel:hover {
    transform: scale(1.08) translateY(-5px);
    border-color: rgba(0, 255, 245, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 255, 245, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.panel-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.panel-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.panel-cfd {
    top: 6%;
    left: -8%;
    animation: floatCFD 7s ease-in-out infinite;
}
.panel-cfd .panel-icon {
    background: rgba(76, 97, 238, 0.15);
    color: #4361ee;
    border: 1px solid rgba(76, 97, 238, 0.3);
}
.panel-cfd:hover {
    border-color: rgba(76, 97, 238, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(76, 97, 238, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.panel-web {
    top: 18%;
    right: -10%;
    animation: floatWeb 8s ease-in-out infinite;
}
.panel-web .panel-icon {
    background: rgba(255, 0, 110, 0.15);
    color: #ff006e;
    border: 1px solid rgba(255, 0, 110, 0.3);
}
.panel-web:hover {
    border-color: rgba(255, 0, 110, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 0, 110, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.panel-ai {
    top: 48%;
    left: -12%;
    transform: translateY(-50%);
    animation: floatAI 9s ease-in-out infinite;
}
.panel-ai .panel-icon {
    background: rgba(0, 255, 245, 0.15);
    color: #00fff5;
    border: 1px solid rgba(0, 255, 245, 0.3);
}
.panel-ai:hover {
    border-color: rgba(0, 255, 245, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 255, 245, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.panel-auto {
    bottom: 12%;
    left: -2%;
    animation: floatAuto 7.5s ease-in-out infinite;
}
.panel-auto .panel-icon {
    background: rgba(251, 86, 7, 0.15);
    color: #fb5607;
    border: 1px solid rgba(251, 86, 7, 0.3);
}
.panel-auto:hover {
    border-color: rgba(251, 86, 7, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(251, 86, 7, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.panel-ecom {
    bottom: 22%;
    right: -8%;
    animation: floatEcom 8.5s ease-in-out infinite;
}
.panel-ecom .panel-icon {
    background: rgba(123, 47, 247, 0.15);
    color: #7b2ff7;
    border: 1px solid rgba(123, 47, 247, 0.3);
}
.panel-ecom:hover {
    border-color: rgba(123, 47, 247, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(123, 47, 247, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.connecting-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.laser-beam {
    stroke-dasharray: 8 8;
    animation: laserPulse 1.5s linear infinite;
}

/* Animations for Redesigned Section */
@keyframes floatGlobe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes spinRingX {
    from { transform: rotateX(70deg) rotateY(0deg) rotateZ(0deg); }
    to { transform: rotateX(70deg) rotateY(0deg) rotateZ(360deg); }
}

@keyframes spinRingY {
    from { transform: rotateX(0deg) rotateY(70deg) rotateZ(0deg); }
    to { transform: rotateX(0deg) rotateY(70deg) rotateZ(360deg); }
}

@keyframes spinRingZ {
    from { transform: rotateZ(360deg); }
    to { transform: rotateZ(0deg); }
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px rgba(0, 255, 245, 0.8), 0 0 100px rgba(123, 47, 247, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 0 80px rgba(0, 255, 245, 0.95), 0 0 130px rgba(123, 47, 247, 0.8);
    }
}

@keyframes laserPulse {
    to {
        stroke-dashoffset: -16;
    }
}

@keyframes floatCFD {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, -8px); }
}

@keyframes floatWeb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 12px); }
}

@keyframes floatAI {
    0%, 100% { transform: translate(0, -50%); }
    50% { transform: translate(8px, -45%); }
}

@keyframes floatAuto {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -12px); }
}

@keyframes floatEcom {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 8px); }
}

/* Projects Section */
.projects-section {
    background: radial-gradient(circle at bottom left, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
}

.projects-carousel-container {
    position: relative;
}

.projects-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 2rem;
    padding-bottom: 2rem;
    scroll-behavior: smooth;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 245, 0.5);
    box-shadow: var(--shadow-card);
}

.project-image {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.project-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    transition: var(--transition-smooth);
}

.project-card:hover .project-gradient {
    opacity: 0.4;
}

.project-icon {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
}

.project-content {
    padding: 2rem;
}

.project-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 245, 0.1);
    border: 1px solid rgba(0, 255, 245, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.project-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -25px; }
.carousel-btn.next { right: -25px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-glass);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--text-accent);
    transform: scale(1.3);
}

/* Partnerships Section */
.partnerships-section {
    background: radial-gradient(circle at center, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
}

.partnerships-carousel {
    overflow: hidden;
}

.partnerships-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
}

.partnership-card {
    flex-shrink: 0;
    width: 350px;
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.partnership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 245, 0.5);
}

.partnership-icon {
    margin-bottom: 1.5rem;
}

.partnership-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    background: radial-gradient(circle at top left, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 245, 0.5);
}

.section-desc {
    max-width: 640px;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.review-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(0, 255, 245, 0.35);
    border-radius: 999px;
    background: rgba(0, 255, 245, 0.08);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
    font-style: normal;
}

/* Products Section */
.products-section {
    background: radial-gradient(circle at bottom right, rgba(6, 255, 165, 0.1) 0%, transparent 50%);
}

.products-carousel-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel-container::-webkit-scrollbar {
    display: none;
}

.products-carousel {
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

.product-card {
    flex-shrink: 0;
    width: 350px;
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 245, 0.5);
    box-shadow: var(--shadow-card);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.product-icon {
    margin-bottom: 2rem;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-price {
    font-weight: 600;
    color: var(--text-accent);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 245, 0.05) 100%);
    padding: 6rem 0 2rem;
    position: relative;
    margin-top: 8rem;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.footer-logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-accent);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

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

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: var(--bg-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.designer-credit {
    margin: 0;
}

.designer-link {
    position: relative;
    color: var(--text-accent);
    cursor: default;
}

.designer-link::before {
    content: attr(data-phone);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    visibility: hidden;
    padding: 0.4rem 0.75rem;
    background: #0f172a;
    border: 1px solid rgba(0, 255, 245, 0.35);
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 5;
}

.designer-link:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Listing Pages (Services / Industries) */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(123, 47, 247, 0.12) 0%, transparent 55%);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    margin: 1rem 0 1.25rem;
    line-height: 1.1;
}

.page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.75;
}

.listing-section {
    padding: 4rem 0 8rem;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.listing-card {
    padding: 2rem;
    background: #0f172a;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.listing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 245, 0.4);
}

.listing-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.listing-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.listing-card > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
}

.listing-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listing-points li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.listing-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-accent);
}

.web-digital-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center right, rgba(0, 255, 245, 0.06) 0%, transparent 55%);
}

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

.web-digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.web-digital-card {
    padding: 2rem;
    background: #0f172a;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.web-digital-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 245, 0.4);
}

.web-digital-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-accent);
    margin-bottom: 0.85rem;
}

.web-digital-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.98rem;
    margin: 0;
}

.web-digital-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.listing-section + .web-digital-section {
    padding-top: 2rem;
}

.page-cta {
    margin-top: 4rem;
    text-align: center;
}

.page-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Talent & Recruitment (Services page) */
.talent-sectors-section {
    padding-bottom: 4rem;
}

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

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

.sector-card .sector-icon {
    display: block;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.sector-card .listing-num {
    display: none;
}

.why-choose-section {
    padding: 4rem 0 6rem;
    background: radial-gradient(circle at center left, rgba(123, 47, 247, 0.08) 0%, transparent 55%);
}

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-choose-card {
    padding: 2rem;
    background: #0f172a;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-choose-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 245, 0.4);
}

.why-choose-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

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

.services-stats-section {
    padding: 2rem 0 6rem;
}

.services-stats {
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
}

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

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

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 5.75rem 1.5rem 2rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(10, 15, 31, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1001;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        border-bottom: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu .nav-link-cta {
        margin-top: 1.25rem;
        text-align: center;
        border-bottom: none;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 6.5rem;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: 2;
        min-height: 300px;
    }

    .hero-figure {
        max-width: 340px;
    }

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

    .hero-strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-strip-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-strip-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .hologram-container {
        width: 400px;
        height: 400px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

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

    .nav-container {
        padding: 1rem 1.25rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 1.25rem 2.5rem;
    }

    .hero-main {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-visual {
        display: none !important;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        justify-content: center;
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-strip {
        grid-template-columns: 1fr;
    }

    .hero-strip-item,
    .hero-strip-item:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-strip-item:last-child {
        border-bottom: none;
    }

    .page-hero {
        padding: 7rem 1.25rem 3rem;
    }

    .page-hero h1 {
        font-size: 2.15rem;
    }

    .listing-grid,
    .web-digital-grid {
        grid-template-columns: 1fr;
    }

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

    .section-header h2,
    .section-title {
        font-size: 1.85rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .projects-carousel {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        height: 45px;
        border-radius: 50px;
    }
}
