/*
 * Custom Theme Styles for berlinvn
 * Dark Theme with High-End Glassmorphism and Crimson Neon Accents
 */

:root {
    --bg-dark: #000000;
    --bg-dark-gray: #0E141B;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --color-crimson: #E11236;
    --color-crimson-glow: rgba(225, 18, 54, 0.8);
    --color-purple-glow: rgba(187, 39, 255, 0.2);
    --font-inter: 'Inter', sans-serif;
    --font-archivo: 'Archivo', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-inter);
}

.berlinvn-landing {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
}

section, 
.hero-intro-wrapper, 
.footer-banner-wrapper,
.top-nav-bar {
    max-width: 100vw;
    overflow-x: hidden;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-crimson);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-inter);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-crimson {
    color: var(--color-crimson) !important;
}

.text-black {
    color: #000000 !important;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

/* --- BUTTONS --- */
.btn-partner {
    background-color: var(--color-crimson);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    background-color: #ff2d52;
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--color-crimson-glow);
    color: var(--text-primary);
}

.btn-white {
    background-color: var(--text-primary);
    color: #1A1A1A;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #e5e5e5;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-crimson {
    background-color: var(--color-crimson);
    color: var(--text-primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-crimson);
}

.btn-crimson:hover {
    background-color: transparent;
    color: var(--color-crimson);
    transform: translateY(-2px);
}

.btn-cta-dark {
    background-color: #0E141B;
    color: var(--color-crimson);
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-cta-dark:hover {
    background-color: var(--color-crimson);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--color-crimson-glow);
}

.btn-glow-cta {
    background: linear-gradient(142deg, rgba(67, 0, 161, 0.76) 20%, rgba(168, 0, 165, 1) 100%);
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-glow-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(168, 0, 165, 0.5);
}

/* --- GLASSMORPHISM --- */
.glassmorphic {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.border-glow {
    border: 1px solid rgba(225, 18, 54, 0.15);
    box-shadow: 0 0 30px rgba(225, 18, 54, 0.05);
}

/* --- ACCENT GLOWS --- */
.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.glow-purple {
    background: #bb27ff;
    top: -100px;
    left: -100px;
}

.glow-red {
    background: var(--color-crimson);
    bottom: -100px;
    right: -100px;
}

.ellipse-glow {
    position: absolute;
    border-radius: 50%;
    background: var(--color-purple-glow);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

/* --- TOP NAVBAR --- */
.top-nav-bar {
    background: rgba(0, 0, 0, 0.45) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.brand-logo {
    max-height: 50px;
    object-fit: contain;
}

.nav-links-group .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff !important;
    padding: 8px 20px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links-group .nav-link:hover,
.nav-links-group .nav-link.active {
    color: #ffffff !important;
}

.nav-links-group .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--color-crimson);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links-group .nav-link:hover::after,
.nav-links-group .nav-link.active::after {
    transform: scaleX(1);
}

/* --- HERO & INTRO WRAPPER --- */
.hero-intro-wrapper {
    position: relative;
    background-size: 78.22% auto;
    background-position: left top;
    background-repeat: no-repeat;
    background-color: #000000;
}

.hero-intro-wrapper .hero-section,
.hero-intro-wrapper .intro-section {
    background-color: transparent !important;
    background-image: none !important;
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 750px;
    background-size: 78.22% auto;
    background-position: left top;
    padding-top: 150px;
    padding-bottom: 60px;
}

@keyframes heroBgPulse {
    0%, 100% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.36);
    }
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 78.22% auto;
    background-position: left top;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    transform-origin: left top;
    will-change: transform;
    animation: heroBgPulse 15s ease-in-out infinite;
}

.has-canvas-bg .glow-effect {
    display: none !important;
}

#hero-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.z-index-2 {
    z-index: 2 !important;
}

.hero-tag {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    border-left: 2px solid var(--color-crimson);
}

.hero-title {
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

@media (max-width: 1700px) {
    .hero-title {
        font-size: clamp(48px, 4vw, 96px);
    }
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 90%;
    color: #E6CDB8;
}

/* --- INTRO SECTION --- */
.intro-section {
    background-size: cover;
    background-position: center;
    padding: 60px 0 120px 0;
}

.geometric-accent {
    position: absolute;
    width: 431px;
    height: 550px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    top: 34px;
    left: 64px;
    z-index: 0;
    pointer-events: none;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    left: 40px;
    z-index: 2;
    min-width: 450px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.stats-icon-overlay {
    flex-shrink: 0;
}

.stats-number {
    font-size: 40px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.35s ease, color 0.35s ease;
    will-change: transform;
}

.stats-number.counter-pulse {
    transform: scale(1.08);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.9), 0 0 30px rgba(206, 178, 190, 0.8);
}

.stats-label {
    font-size: 12px;
    margin-top: 5px;
}

.divider-line {
    width: 40px;
    height: 2px;
    background-color: #CEB2BE;
}

.section-subtitle {
    font-size: 14px;
    color: #CEB2BE !important;
}

.section-title {
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.2;
}

.service-icon i {
    color: var(--color-crimson);
    font-size: 24px;
}

/* --- WHY CHOOSE BERLIN SECTION (EXACT REPLICA OF ECOAAI.COM HOW IT WORKS WORKFLOW) --- */
#why-choose-berlin {
    position: relative;
    background: linear-gradient(#000240, #0000);
    overflow: hidden;
    padding: 0px 0 40px 0;
}

#why-choose-berlin::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background-image: url('../images/workflow-glow.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

@media (max-width: 768px) {
    #why-choose-berlin::before {
        display: none !important;
    }
}

#why-choose-berlin .container {
    position: relative;
    z-index: 2;
}

#why-choose-berlin .section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

#why-choose-berlin .section-heading .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a371f7;
    background: rgba(163, 113, 247, 0.1);
    border: 1px solid rgba(163, 113, 247, 0.3);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

#why-choose-berlin .section-heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

#why-choose-berlin .section-heading p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 56ch;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.workflow-diagram {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
    padding: 0rem 6rem 4rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.workflow-step {
    position: relative;
    flex: 1;
    min-width: 260px;
    height: 320px;
}

.step-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(91, 156, 246, 0.6));
    z-index: 1;
}

@media (max-width: 900px) {
    .step-lines {
        filter: none;
    }
}

.path-main {
    position: absolute;
    top: 80px;
    bottom: 60px;
    left: 49px;
    right: 49px;
    border-left: 2px solid rgba(91, 156, 246, 0.7);
    border-bottom: 2px solid rgba(91, 156, 246, 0.7);
    border-right: 2px solid rgba(91, 156, 246, 0.7);
    border-radius: 0 0 24px 24px;
}

.path-exit {
    position: absolute;
    top: 49px;
    right: 27px;
    width: 24px;
    height: 31px;
    border-top: 2px solid rgba(91, 156, 246, 0.7);
    border-left: 2px solid rgba(91, 156, 246, 0.7);
    border-top-left-radius: 24px;
}

.path-line-out {
    position: absolute;
    top: 49px;
    right: -20px;
    width: 47px;
    border-top: 2px solid rgba(91, 156, 246, 0.7);
}

.top-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, filter 0.4s ease;
}

.workflow-step:nth-child(1) .top-badge.badge-active {
    box-shadow: 0 0 0 3px #ff2d55, 0 0 25px 6px rgba(255, 45, 85, 0.95), 0 0 50px rgba(255, 45, 85, 0.8);
}

.workflow-step:nth-child(2) .top-badge.badge-active {
    box-shadow: 0 0 0 3px #e600ff, 0 0 25px 6px rgba(230, 0, 255, 0.95), 0 0 50px rgba(230, 0, 255, 0.8);
}

.workflow-step:nth-child(3) .top-badge.badge-active {
    box-shadow: 0 0 0 3px #a020f0, 0 0 25px 6px rgba(160, 32, 240, 0.95), 0 0 50px rgba(160, 32, 240, 0.8);
}

.workflow-step:nth-child(4) .top-badge.badge-active {
    box-shadow: 0 0 0 3px #8a2be2, 0 0 25px 6px rgba(138, 43, 226, 0.95), 0 0 50px rgba(138, 43, 226, 0.8);
}

.workflow-step:nth-child(5) .top-badge.badge-active {
    box-shadow: 0 0 0 3px #0077ff, 0 0 25px 6px rgba(0, 119, 255, 0.95), 0 0 50px rgba(0, 119, 255, 0.8);
}

.workflow-step:nth-child(6) .top-badge.badge-active {
    box-shadow: 0 0 0 3px #00e5ff, 0 0 25px 6px rgba(0, 229, 255, 0.95), 0 0 50px rgba(0, 229, 255, 0.8);
}

.workflow-step:nth-child(6).checkmark-active::after {
    box-shadow: inset 0 -5px 15px rgba(0, 229, 255, 0.6), 0 0 0 3px #00e5ff, 0 0 20px 4px rgba(0, 229, 255, 0.9), 0 0 45px rgba(0, 229, 255, 0.7);
}

.workflow-step:nth-child(1) .top-badge {
    background: url('../images/top-badge-1-bg.png') center / 116% 116% no-repeat;
    box-shadow: 0 0 0 2px rgba(255, 45, 85, 0.9), 0 0 15px rgba(255, 45, 85, 0.7);
}
.workflow-step:nth-child(1) .step-lines {
    filter: drop-shadow(0 0 6px rgba(255, 45, 85, 0.8));
}
.workflow-step:nth-child(1) .path-main,
.workflow-step:nth-child(1) .path-exit,
.workflow-step:nth-child(1) .path-line-out {
    border-color: #ff2d55;
}
.workflow-step:nth-child(1) .number-badge {
    border-color: #ffa4b5;
    color: white;
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.6);
    background: #ff2d55;
}
.workflow-step:nth-child(1):hover .number-badge {
    background: #ff2d55;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.9);
}
.workflow-step:nth-child(1) .step-text h3 {
    color: #ff5577;
}
.workflow-step:nth-child(1) .glowing-dot {
    box-shadow: 0 0 10px 4px rgba(255, 45, 120, 0.9);
}

.workflow-step:nth-child(2) .top-badge {
    background: url('../images/top-badge-2-bg.png') center / 116% 116% no-repeat;
    box-shadow: 0 0 0 2px rgba(230, 0, 255, 0.9), 0 0 15px rgba(230, 0, 255, 0.7);
}
.workflow-step:nth-child(2) .step-lines {
    filter: drop-shadow(0 0 6px rgba(230, 0, 255, 0.8));
}
.workflow-step:nth-child(2) .path-main,
.workflow-step:nth-child(2) .path-exit,
.workflow-step:nth-child(2) .path-line-out {
    border-color: #e600ff;
}
.workflow-step:nth-child(2) .number-badge {
    border-color: #f27dff;
    color: #fff;
    box-shadow: 0 0 15px rgba(230, 0, 255, 0.6);
    background: #e600ff;
}
.workflow-step:nth-child(2):hover .number-badge {
    background: #e600ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(230, 0, 255, 0.9);
}
.workflow-step:nth-child(2) .step-text h3 {
    color: #f055ff;
}
.workflow-step:nth-child(2) .glowing-dot {
    box-shadow: 0 0 10px 4px rgba(230, 0, 255, 0.9);
}

.workflow-step:nth-child(3) .top-badge {
    background: url('../images/top-badge-3-bg.png') center / 116% 116% no-repeat;
    box-shadow: 0 0 0 2px rgba(160, 32, 240, 0.9), 0 0 15px rgba(160, 32, 240, 0.7);
}
.workflow-step:nth-child(3) .step-lines {
    filter: drop-shadow(0 0 6px rgba(160, 32, 240, 0.8));
}
.workflow-step:nth-child(3) .path-main,
.workflow-step:nth-child(3) .path-exit,
.workflow-step:nth-child(3) .path-line-out {
    border-color: #a020f0;
}
.workflow-step:nth-child(3) .number-badge {
    border-color: #bf58ff;
    color: #fff;
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.6);
    background: #a020f0;
}
.workflow-step:nth-child(3):hover .number-badge {
    background: #a020f0;
    color: #fff;
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.9);
}
.workflow-step:nth-child(3) .step-text h3 {
    color: #b855ff;
}
.workflow-step:nth-child(3) .glowing-dot {
    box-shadow: 0 0 10px 4px rgba(180, 32, 240, 0.9);
}

.workflow-step:nth-child(4) .top-badge {
    background: url('../images/top-badge-4-bg.png') center / 116% 116% no-repeat;
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.9), 0 0 15px rgba(138, 43, 226, 0.7);
}
.workflow-step:nth-child(4) .step-lines {
    filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.8));
}
.workflow-step:nth-child(4) .path-main,
.workflow-step:nth-child(4) .path-exit,
.workflow-step:nth-child(4) .path-line-out {
    border-color: #8a2be2;
}
.workflow-step:nth-child(4) .number-badge {
    border-color: #aa4fff;
    color: #fff;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    background: #8a2be2;
}
.workflow-step:nth-child(4):hover .number-badge {
    background: #8a2be2;
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.9);
}
.workflow-step:nth-child(4) .step-text h3 {
    color: #a055ff;
}
.workflow-step:nth-child(4) .glowing-dot {
    box-shadow: 0 0 10px 4px rgba(138, 43, 226, 0.9);
}

.workflow-step:nth-child(5) .top-badge {
    background: url('../images/top-badge-5-bg.png') center / 116% 116% no-repeat;
    box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.9), 0 0 15px rgba(0, 119, 255, 0.7);
}
.workflow-step:nth-child(5) .step-lines {
    filter: drop-shadow(0 0 6px rgba(0, 119, 255, 0.8));
}
.workflow-step:nth-child(5) .path-main,
.workflow-step:nth-child(5) .path-exit,
.workflow-step:nth-child(5) .path-line-out {
    border-color: #0077ff;
}
.workflow-step:nth-child(5) .number-badge {
    border-color: #4b9af4;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 119, 255, 0.6);
    background: #0077ff;
}
.workflow-step:nth-child(5):hover .number-badge {
    background: #0077ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 119, 255, 0.9);
}
.workflow-step:nth-child(5) .step-text h3 {
    color: #55aaff;
}
.workflow-step:nth-child(5) .glowing-dot {
    box-shadow: 0 0 10px 4px rgba(0, 119, 255, 0.9);
}

.workflow-step:nth-child(6) .top-badge {
    background: url('../images/top-badge-6-bg.png') center / 116% 116% no-repeat;
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.9), 0 0 15px rgba(0, 229, 255, 0.7);
}
.workflow-step:nth-child(6) .step-lines {
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.8));
}
.workflow-step:nth-child(6) .path-main,
.workflow-step:nth-child(6) .path-exit,
.workflow-step:nth-child(6) .path-line-out {
    border-color: #00e5ff;
}
.workflow-step:nth-child(6) .number-badge {
    border-color: #00e5ff;
    color: #66f0ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}
.workflow-step:nth-child(6):hover .number-badge {
    border-color: #4cedff;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    background: #00e5ff;
}
.workflow-step:nth-child(6) .step-text h3 {
    color: #55eeff;
}
.workflow-step:nth-child(6) .glowing-dot {
    box-shadow: 0 0 10px 4px rgba(0, 229, 255, 0.9);
}

.workflow-step:hover .top-badge {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(91, 156, 246, 0.8), 0 2px 10px rgba(130, 186, 255, 0.9);
}

.number-badge {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0f1e36;
    color: #82baff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(91, 156, 246, 0.5);
    border: 2px solid #5b9cf6;
    z-index: 10;
    transition: all 0.3s ease;
}

.workflow-step:hover .number-badge {
    background: #5b9cf6;
    color: #fff;
    box-shadow: 0 0 20px rgba(91, 156, 246, 0.8);
}

.glowing-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    box-shadow: 0 0 12px 6px rgba(255, 45, 85, 0.9), 0 0 24px 12px rgba(255, 45, 85, 0.5);
    z-index: 99;
    pointer-events: none;
    transition: background 0.15s linear, box-shadow 0.15s linear;
}

.step-text {
    position: absolute;
    top: 95px;
    left: 65px;
    right: 65px;
    text-align: center;
    z-index: 5;
}

.step-text h3 {
    font-size: 0.75rem;
    color: #82baff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    font-weight: 700;
}

.step-text h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-text p {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 901px) {
    .workflow-step:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }
    .workflow-step:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }
    .workflow-step:nth-child(6) {
        grid-column: 1;
        grid-row: 2;
    }

    .workflow-step:nth-child(n+4) .top-badge {
        left: auto;
        right: 20px;
    }

    .workflow-step:nth-child(n+4) .path-exit {
        right: auto;
        left: 27px;
        border-left: none;
        border-right: 2px solid rgba(91, 156, 246, 0.7);
        border-top-left-radius: 0;
        border-top-right-radius: 24px;
    }

    .workflow-step:nth-child(n+4) .path-line-out {
        right: auto;
        left: -20px;
    }

    .workflow-step:nth-child(n+4) .glowing-dot {
        right: auto;
        left: -5px;
    }

    .workflow-step:nth-child(3) .path-line-out {
        width: 67px;
        right: -40px;
        border-image: none;
    }

    .workflow-step:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 49px;
        right: -64px;
        width: 24px;
        height: calc(100% + 3rem + 2px);
        border-top: 2px solid #a020f0;
        border-right: 2px solid #a020f0;
        border-bottom: 2px solid #8a2be2;
        border-radius: 0 24px 24px 0;
        z-index: 0;
        filter: drop-shadow(0 0 6px rgba(160, 32, 240, 0.8));
    }

    .workflow-step:nth-child(4)::before {
        content: '';
        position: absolute;
        top: 49px;
        right: -40px;
        width: 60px;
        border-top: 2px solid #8a2be2;
        z-index: 0;
        filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.8));
    }

    .workflow-step:nth-child(3) .glowing-dot {
        display: block;
        right: -45px;
    }

    .workflow-step:nth-child(6) .path-line-out {
        left: -40px;
        width: 67px;
        border-image: none;
        border-top: 2px solid #00e5ff;
    }

    .workflow-step:nth-child(6)::after {
        content: '';
        position: absolute;
        top: 20px;
        left: -70px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center center, radial-gradient(circle at 30% 30%, #2f65a1, #0f1e36 80%);
        box-shadow: inset 0 -5px 15px rgba(91, 156, 246, 0.4), 0 0 40px rgba(91, 156, 246, 0.3), 0 3px 0 0 #82baff, 0 5px 12px 0 rgba(130, 186, 255, 0.6);
        z-index: 10;
    }

    .workflow-step:nth-child(6) .glowing-dot {
        display: none !important;
    }
}

@media (max-width: 900px) {
    /* Section Ambient Container (Matching Reference Image) */
    #why-choose-berlin {
        position: relative;
        padding: 45px 0 65px 0;
        background: 
            radial-gradient(circle at 15% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 45%),
            radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.18) 0%, transparent 45%),
            #03051e;
        overflow: hidden;
    }

    #why-choose-berlin .section-heading {
        margin-bottom: 2.8rem;
        padding: 0 20px;
        text-align: center;
    }

    #why-choose-berlin .section-heading .eyebrow {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #9d65ff !important;
        font-weight: 700 !important;
        letter-spacing: 0.18em !important;
        font-size: 0.8rem !important;
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
        text-transform: uppercase !important;
    }

    #why-choose-berlin .section-heading h2 {
        font-size: clamp(1.8rem, 6.5vw, 2.3rem) !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em !important;
        color: #ffffff !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
        margin-bottom: 1rem !important;
        line-height: 1.25 !important;
        text-shadow: none !important;
    }

    #why-choose-berlin .section-heading p {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        color: rgba(220, 230, 255, 0.82) !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        font-style: normal !important;
    }

    /* Workflow Diagram Stepper Container on Mobile */
    .workflow-diagram {
        display: flex !important;
        flex-direction: column !important;
        row-gap: 2.5rem !important;
        padding: 0 20px 0 25px !important;
        max-width: 100% !important;
        position: relative !important;
        counter-reset: step-counter;
        grid-template-columns: none !important;
    }

    /* Hide desktop timeline connectors */
    .workflow-diagram::before,
    .path-line-out, 
    .path-exit, 
    .path-main, 
    .step-lines, 
    .glowing-dot {
        display: none !important;
        animation: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Step Item Row Layout */
    .workflow-step {
        position: relative !important;
        height: auto !important;
        min-height: 130px !important;
        min-width: unset !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: 2 !important;
        counter-increment: step-counter;
    }

    /* Vertical Connecting Line strictly between top-badge and number-badge of the same step */
    .workflow-step::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        left: 29px !important;
        top: 55px !important;
        height: 48px !important;
        bottom: auto !important;
        width: 2px !important;
        border-radius: 2px !important;
        z-index: 1 !important;
    }

    .workflow-step:nth-child(1)::after { background: #ff2d55 !important; box-shadow: 0 0 10px rgba(255, 45, 85, 0.7) !important; }
    .workflow-step:nth-child(2)::after { background: #e600ff !important; box-shadow: 0 0 10px rgba(230, 0, 255, 0.7) !important; }
    .workflow-step:nth-child(3)::after { background: #a020f0 !important; box-shadow: 0 0 10px rgba(160, 32, 240, 0.7) !important; }
    .workflow-step:nth-child(4)::after { background: #8a2be2 !important; box-shadow: 0 0 10px rgba(138, 43, 226, 0.7) !important; }
    .workflow-step:nth-child(5)::after { background: #0077ff !important; box-shadow: 0 0 10px rgba(0, 119, 255, 0.7) !important; }
    .workflow-step:nth-child(6)::after { background: #00e5ff !important; box-shadow: 0 0 10px rgba(0, 229, 255, 0.7) !important; }

    /* Top Big Circular Icon Badge (Left Node) */
    .top-badge {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        border-radius: 50% !important;
        margin: 0 !important;
        z-index: 5 !important;
        flex-shrink: 0 !important;
        box-shadow: 0 0 20px rgba(91, 156, 246, 0.6) !important;
    }

    /* Small Circular Step Number Badge below the Icon Node */
    .number-badge {
        position: absolute !important;
        top: 98px !important;
        left: 16px !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        border-radius: 50% !important;
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin: 0 !important;
        z-index: 5 !important;
        background: #091224 !important;
        border: 2px solid #5b9cf6 !important;
        box-shadow: 0 0 12px rgba(91, 156, 246, 0.8) !important;
    }

    .workflow-step:nth-child(1) .number-badge { border-color: #ff2d55 !important; box-shadow: 0 0 12px rgba(255, 45, 85, 0.8) !important; }
    .workflow-step:nth-child(2) .number-badge { border-color: #e600ff !important; box-shadow: 0 0 12px rgba(230, 0, 255, 0.8) !important; }
    .workflow-step:nth-child(3) .number-badge { border-color: #a020f0 !important; box-shadow: 0 0 12px rgba(160, 32, 240, 0.8) !important; }
    .workflow-step:nth-child(4) .number-badge { border-color: #8a2be2 !important; box-shadow: 0 0 12px rgba(138, 43, 226, 0.8) !important; }
    .workflow-step:nth-child(5) .number-badge { border-color: #0077ff !important; box-shadow: 0 0 12px rgba(0, 119, 255, 0.8) !important; }
    .workflow-step:nth-child(6) .number-badge { border-color: #00e5ff !important; box-shadow: 0 0 12px rgba(0, 229, 255, 0.8) !important; }

    /* Step Text Content (Right Side) */
    .step-text {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-left: 80px !important;
        padding-top: 2px !important;
        text-align: left !important;
        width: calc(100% - 80px) !important;
        z-index: 3 !important;
    }



    .step-text h4 {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        letter-spacing: -0.015em !important;
        margin-bottom: 0.45rem !important;
        line-height: 1.3 !important;
        text-shadow: none !important;
    }

    .step-text p {
        font-size: 0.88rem !important;
        color: rgba(220, 230, 255, 0.82) !important;
        line-height: 1.55 !important;
        margin: 0 !important;
        font-weight: 400 !important;
    }
}


/* --- RESEARCH SECTION --- */
.research-section {
    padding: 0px 0 40px 0;
}


.research-glow-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;

    /* ─── Background gradient matching reference image ─── */
    background:
        /* [1] Vibrant indigo / royal purple glow in extreme top-right corner */
        radial-gradient(
            ellipse 65% 55% at 98% 2%,
            rgba(32, 0, 140, 0.98) 0%,
            rgba(45, 0, 130, 0.88) 20%,
            rgba(65, 0, 110, 0.70) 38%,
            rgba(75, 0, 80, 0.45) 55%,
            rgba(40, 0, 50, 0.20) 72%,
            transparent 88%
        ),
        /* [2] Deep magenta / violet bloom spreading inward across top-right */
        radial-gradient(
            ellipse 70% 65% at 85% 25%,
            rgba(105, 0, 75, 0.50) 0%,
            rgba(70, 0, 60, 0.32) 40%,
            rgba(35, 0, 40, 0.12) 70%,
            transparent 90%
        ),
        /* [3] Subtle top specular highlight refraction */
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 6%
        ),
        /* [4] Deep black base */
        #000000;

    /* ─── Crimson / Magenta glowing border line ─── */
    border: 1.5px solid rgba(255, 42, 100, 0.75);

    /* ─── Perimeter glow & inner depth ─── */
    box-shadow:
        0 0 16px rgba(255, 30, 95, 0.25),
        inset 0 0 15px rgba(255, 30, 95, 0.12);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* Shimmer overlay — pure iOS liquid glass top-edge shine */
.research-glow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 35%,
        transparent 65%,
        rgba(255, 255, 255, 0.02) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.research-glow-card > * {
    position: relative;
    z-index: 1;
}




.research-card-top {
    padding: 52px 48px 36px;
}

.card-headline {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* 3-column grid with vertical dividers */
.research-cols-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.research-col-item {
    padding: 24px 32px;
    text-align: center;
}

.research-col-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.research-col-item p {
    font-size: 14px;
    color: rgba(200, 200, 215, 0.82);
    line-height: 1.7;
    margin: 0;
}

.research-col-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    align-self: stretch;
    margin: 24px 0;
}

/* Bottom visual area */
.research-card-visual {
    position: relative;
    width: 50%;
    height: 340px;
    overflow: hidden;
    margin: 0 auto;
}

.research-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .research-card-top {
        padding: 36px 24px 24px;
    }
    .research-cols-grid {
        grid-template-columns: 1fr;
    }
    .research-col-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .research-col-item {
        padding: 20px 16px;
    }
    .research-card-visual {
        width: 100%;
        height: 240px;
    }
}

/* --- INNOVATIONS GRID --- */
.innovations-section {
    background: linear-gradient(180deg, #030007 0%, #050401 350px, #050401 100%) !important;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

/* Ambient Golden Background System */
.innovations-bg-glows {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.innovations-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform, opacity;
}

.innovations-orb.orb-top-left {
    top: -12%;
    left: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 195, 20, 0.24) 0%, rgba(255, 140, 0, 0.08) 50%, transparent 80%);
    animation: floatOrbTL 18s ease-in-out infinite alternate;
}

.innovations-orb.orb-top-right {
    top: 5%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 210, 45, 0.2) 0%, rgba(240, 150, 0, 0.07) 55%, transparent 80%);
    animation: floatOrbTR 22s ease-in-out infinite alternate;
}

.innovations-orb.orb-center-flare {
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 520px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.22) 0%, rgba(255, 160, 0, 0.08) 45%, transparent 75%);
    animation: pulseCenterFlare 6s ease-in-out infinite alternate;
}

.innovations-orb.orb-bottom-glow {
    bottom: -15%;
    left: 15%;
    width: 850px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(245, 180, 20, 0.2) 0%, rgba(200, 130, 0, 0.06) 55%, transparent 80%);
    animation: floatOrbBG 20s ease-in-out infinite alternate;
}

/* Top Separator Golden Light Beam - Hidden for seamless continuous background */
.innovations-bg-top-beam {
    display: none !important;
}

@keyframes floatOrbTL {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(60px, 40px) scale(1.15); opacity: 1; }
}

@keyframes floatOrbTR {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    100% { transform: translate(-50px, 50px) scale(1.1); opacity: 0.95; }
}

@keyframes pulseCenterFlare {
    0% { opacity: 0.65; transform: translateX(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes floatOrbBG {
    0% { transform: translate(0, 0) scale(1); opacity: 0.75; }
    100% { transform: translate(40px, -30px) scale(1.12); opacity: 0.95; }
}

/* Ambient Golden Light Background Layer */
.innovations-bot-light-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Volumetric Golden Radial Spotlight on Section */
.innovations-bot-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 900px;
    height: 900px;
    margin-left: -450px;
    margin-top: -450px;
    border-radius: 50%;
    background: radial-gradient(
        circle 450px at center,
        rgba(255, 215, 0, 0.35) 0%,
        rgba(255, 170, 0, 0.18) 35%,
        rgba(255, 120, 0, 0.05) 65%,
        rgba(0, 0, 0, 0) 85%
    );
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    filter: blur(50px);
    will-change: transform;
}

.innovations-bot-spotlight-core {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    height: 360px;
    margin-left: -180px;
    margin-top: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle 180px at center,
        rgba(255, 245, 190, 0.8) 0%,
        rgba(255, 210, 50, 0.42) 40%,
        rgba(255, 150, 0, 0.12) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    filter: blur(25px);
    will-change: transform;
}

/* AI Bot Wrapper */
.innovations-ai-bot-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 10;
    pointer-events: none;
    will-change: transform;
}

/* Sleek Sci-fi Halo Ring Directly Surrounding Bot */
.innovations-bot-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 1px solid rgba(255, 220, 110, 0.55);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.45), inset 0 0 10px rgba(255, 215, 0, 0.25);
    animation: botSpinRing 10s linear infinite;
    pointer-events: none;
}

@keyframes botSpinRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Character Sprite Container */
.innovations-bot-character {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.85));
}

.innovations-bot-character .bot-img {
    width: 85px;
    height: auto;
    object-fit: contain;
    animation: botFloatMascot 3.2s ease-in-out infinite alternate;
}

@keyframes botFloatMascot {
    0% { transform: translateY(-3px) scale(0.98); }
    100% { transform: translateY(3px) scale(1.02); }
}

/* Thruster / Core Aura below Bot */
.bot-thruster-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 22px;
    background: radial-gradient(ellipse at center, rgba(255, 245, 180, 0.95) 0%, rgba(255, 190, 40, 0.75) 45%, rgba(255, 130, 0, 0) 100%);
    border-radius: 50%;
    filter: blur(4px);
    animation: botThrusterPulse 0.4s ease-in-out infinite alternate;
}

@keyframes botThrusterPulse {
    0% { transform: translateX(-50%) scale(0.85); opacity: 0.75; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

/* Golden Stardust Particles Trailing Behind Bot */
.bot-golden-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffe366;
    box-shadow: 0 0 8px #ffd700, 0 0 16px #ffaa00;
    pointer-events: none;
    z-index: 5;
    animation: botFadeParticle 0.85s forwards ease-out;
}

@keyframes botFadeParticle {
    0% { opacity: 0.9; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0.2) translateY(20px); }
}

/* Premium Category Card Interaction (No Rectangular Frames or Stripes) */
.category-card {
    position: relative;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card::after,
.category-card::before {
    display: none !important;
}

.category-card.bot-illuminated {
    transform: translateY(-8px);
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    filter: none !important;
}

.category-card.bot-illuminated .card-icon-box {
    background: rgba(255, 215, 0, 0.25) !important;
    border-color: rgba(255, 235, 130, 0.7) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.75) !important;
    color: #ffeb85 !important;
}

.category-card.bot-illuminated .category-title {
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

.category-card.bot-illuminated .detail-link {
    color: #ffea78 !important;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.75);
}

.innovations-ring-wrapper {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outward Particle Canvas Layer */
.innovations-ring-particles-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 160%;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Radial Soft Neon Glow Pulse behind Ring */
.innovations-ring-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(224, 48, 255, 0.18) 0%, rgba(160, 30, 240, 0.08) 50%, transparent 72%);
    filter: blur(28px);
    animation: ringAuraPulse 4.5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes ringAuraPulse {
    0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.55; }
    100% { transform: translate(-50%, -50%) scale(1.16); opacity: 0.95; }
}

.innovations-ring-wrapper.bot-illuminated .innovations-ring-img,
.innovations-ring-img {
    position: relative;
    z-index: 2;
    max-width: 540px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    mix-blend-mode: normal;
    border-radius: 50%;
    filter: drop-shadow(0 0 25px rgba(224, 48, 255, 0.45)) drop-shadow(0 0 45px rgba(185, 74, 255, 0.3)) !important;
    box-shadow: none !important;
}

.innovations-section .section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.category-card {
    aspect-ratio: 816 / 920;
    width: 100%;
    padding: 12% 14% !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    border: none;
    border-radius: 0;
}

.category-list {
    padding: 0 14%;
    margin-top: -75px;
}

.category-card:hover {
    transform: translateY(-6px);
}

/* Card Background Images (Exact user attached image & ratio 816:920) */
.category-card.card-red {
    background-image: url('../images/card-bg-red.png');
}
.category-card.card-red:hover {
    filter: drop-shadow(0 14px 35px rgba(220, 0, 18, 0.45));
}

.category-card.card-purple {
    background-image: url('../images/card-bg-purple.png');
}
.category-card.card-purple:hover {
    filter: drop-shadow(0 14px 35px rgba(91, 0, 255, 0.45));
}

.category-card.card-teal {
    background-image: url('../images/card-bg-teal.png');
}
.category-card.card-teal:hover {
    filter: drop-shadow(0 14px 35px rgba(0, 184, 169, 0.45));
}

.category-card.card-yellow {
    background-image: url('../images/card-bg-yellow.png');
}
.category-card.card-yellow:hover {
    filter: drop-shadow(0 14px 35px rgba(204, 160, 0, 0.45));
}

.category-card.card-magenta {
    background-image: url('../images/card-bg-magenta.png');
}
.category-card.card-magenta:hover {
    filter: drop-shadow(0 14px 35px rgba(214, 0, 168, 0.45));
}

.category-card.card-blue {
    background-image: url('../images/card-bg-blue.png');
}
.category-card.card-blue:hover {
    filter: drop-shadow(0 14px 35px rgba(0, 102, 255, 0.45));
}

/* Icon Box Squircle */
.card-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.category-title {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
}

.detail-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    letter-spacing: 0.1px;
    position: relative;
    z-index: 2;
}

.detail-link:hover {
    color: #ffffff;
    opacity: 1;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    padding: 80px 0 45px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
}

.portfolio-section .container {
    position: relative;
    z-index: 3;
}

/* Dynamic Animated Background Glows */
.portfolio-bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.portfolio-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
    opacity: 0.75;
    will-change: transform, opacity;
}

.portfolio-orb.orb-1 {
    width: 650px;
    height: 650px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(224, 64, 251, 0.95) 0%, rgba(123, 0, 181, 0.5) 50%, transparent 80%);
    animation: floatOrb1 7s ease-in-out infinite alternate;
}

.portfolio-orb.orb-2 {
    width: 750px;
    height: 750px;
    top: 20%;
    right: -15%;
    background: radial-gradient(circle, rgba(79, 16, 245, 0.9) 0%, rgba(186, 24, 224, 0.55) 50%, transparent 80%);
    animation: floatOrb2 9s ease-in-out infinite alternate;
}

.portfolio-orb.orb-3 {
    width: 600px;
    height: 600px;
    bottom: -15%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.85) 0%, rgba(79, 16, 245, 0.5) 50%, transparent 80%);
    animation: floatOrb3 8s ease-in-out infinite alternate;
}

.portfolio-orb.orb-4 {
    width: 550px;
    height: 550px;
    bottom: 5%;
    right: 15%;
    background: radial-gradient(circle, rgba(200, 245, 55, 0.7) 0%, rgba(224, 64, 251, 0.45) 50%, transparent 80%);
    animation: floatOrb4 10s ease-in-out infinite alternate;
}

.portfolio-mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(5, 5, 12, 0.5) 100%);
    pointer-events: none;
}

@keyframes floatOrb1 {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate3d(180px, 120px, 0) scale(1.25) rotate(45deg);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(-100px, 220px, 0) scale(0.85) rotate(90deg);
        opacity: 0.65;
    }
    75% {
        transform: translate3d(140px, -80px, 0) scale(1.15) rotate(135deg);
        opacity: 0.85;
    }
    100% {
        transform: translate3d(-60px, 100px, 0) scale(1.05) rotate(180deg);
        opacity: 0.75;
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        opacity: 0.75;
    }
    25% {
        transform: translate3d(-220px, -140px, 0) scale(1.22) rotate(-60deg);
        opacity: 0.95;
    }
    50% {
        transform: translate3d(-140px, 180px, 0) scale(0.88) rotate(-120deg);
        opacity: 0.65;
    }
    75% {
        transform: translate3d(100px, -110px, 0) scale(1.15) rotate(-180deg);
        opacity: 0.85;
    }
    100% {
        transform: translate3d(-180px, 80px, 0) scale(1) rotate(-240deg);
        opacity: 0.7;
    }
}

@keyframes floatOrb3 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate3d(220px, -180px, 0) scale(1.3);
        opacity: 0.95;
    }
    66% {
        transform: translate3d(-150px, 110px, 0) scale(0.82);
        opacity: 0.6;
    }
    100% {
        transform: translate3d(120px, -90px, 0) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatOrb4 {
    0% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0.6;
    }
    33% {
        transform: translate3d(-180px, 160px, 0) scale(1.28);
        opacity: 0.85;
    }
    66% {
        transform: translate3d(130px, -130px, 0) scale(0.95);
        opacity: 0.55;
    }
    100% {
        transform: translate3d(-90px, 110px, 0) scale(1.15);
        opacity: 0.75;
    }
}

.portfolio-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.4) 35%, 
        rgba(0, 0, 0, 0.85) 75%, 
        #000000 100%
    );
    pointer-events: none;
    z-index: 2;
}

.portfolio-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    line-height: 1.25;
}

.portfolio-btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 24px;
    border-radius: 50px;
    background: linear-gradient(90deg, #7b00b5 0%, #4f10f5 100%);
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(123, 0, 181, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.portfolio-btn-gradient:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(79, 16, 245, 0.6);
    color: #ffffff !important;
}

.btn-arrow-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.portfolio-btn-gradient:hover .btn-arrow-circle {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.35);
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    padding: 24px 26px 18px 26px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 205px;
    overflow: hidden;
    z-index: 1;
    /* iOS Liquid Glass Specular Reflection & Shadow Overlay */
    box-shadow: 
        inset 0 1px 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 0 25px 0 rgba(255, 255, 255, 0.05),
        0 18px 40px rgba(0, 0, 0, 0.65);
}

/* iOS Glass Top Specular Glossy Sheen */
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    z-index: 1;
}

.portfolio-card:hover {
    transform: translateY(-5px) scale(1.01);
    filter: brightness(1.08);
}

/* Base style for card background pseudo-element - Set background opacity to match hover state */
.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

.portfolio-card:hover::after {
    opacity: 0.95;
}

/* Card Themes with Permanent Vibrant Glow & Gradients */
.card-theme-green {
    border-color: rgba(200, 245, 55, 0.4);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 14px 40px rgba(54, 115, 18, 0.55);
}
.card-theme-green::after {
    background: linear-gradient(180deg, #000000 0%, #050a03 35%, #1b3d09 70%, #367312 100%);
}

.card-theme-purple {
    border-color: rgba(224, 64, 251, 0.4);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 14px 40px rgba(79, 20, 139, 0.55);
}
.card-theme-purple::after {
    background: linear-gradient(180deg, #000000 0%, #080412 35%, #2a0b4d 70%, #4f148b 100%);
}

.card-theme-orange {
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 14px 40px rgba(117, 45, 11, 0.55);
}
.card-theme-orange::after {
    background: linear-gradient(180deg, #000000 0%, #100804 35%, #421b08 70%, #752d0b 100%);
}

.card-theme-blue {
    border-color: rgba(64, 196, 255, 0.4);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 14px 40px rgba(13, 94, 125, 0.55);
}
.card-theme-blue::after {
    background: linear-gradient(180deg, #000000 0%, #030e14 35%, #083345 70%, #0d5e7d 100%);
}

.card-theme-teal {
    border-color: rgba(29, 233, 182, 0.4);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 14px 40px rgba(13, 120, 79, 0.55);
}
.card-theme-teal::after {
    background: linear-gradient(180deg, #000000 0%, #03120b 35%, #07422b 70%, #0d784f 100%);
}

.card-theme-pink {
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 14px 40px rgba(120, 15, 54, 0.55);
}
.card-theme-pink::after {
    background: linear-gradient(180deg, #000000 0%, #12030a 35%, #42081d 70%, #780f36 100%);
}

.portfolio-card-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.portfolio-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-icon-wrap svg {
    width: 52px;
    height: 52px;
}

.portfolio-desc {
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 300;
    margin: 0;
}

.portfolio-card-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.portfolio-detail-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.portfolio-detail-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* DRIVERS GRID */
.drivers-timeline {
    margin-top: 50px;
    border-top: none;
}

.drivers-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
    text-align: center;
}

.drivers-grid {
    position: relative;
    padding-top: 24px;
}

.drivers-horizontal-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 1;
    overflow: hidden;
    border-radius: 2px;
}

.drivers-horizontal-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #ff0055 8%,
        #ff7700 20%,
        #ffdd00 35%,
        #00ff66 50%,
        #00ddff 65%,
        #3366ff 80%,
        #b520e8 92%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 16px rgba(0, 221, 255, 0.8);
    animation: rainbowBeamSweep 3s ease-in-out infinite;
}

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

.driver-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d926ff;
    border: none;
    box-shadow: 0 0 10px 3px rgba(217, 38, 255, 0.85), 0 0 22px 6px rgba(255, 0, 128, 0.45);
    z-index: 2;
    position: relative;
    margin: 0 auto 24px auto;
}

.driver-text {
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.driver-heading {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 2px;
}

.driver-sub {
    color: #ffffff;
    font-weight: 300;
    font-size: 13.5px;
}

/* --- TESTIMONIAL --- */
.testimonial-section {
    background-color: #000000;
    padding: 45px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    z-index: 1;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.testimonial-building-img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
}

.testimonial-card-wrapper {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .testimonial-card-wrapper {
        margin-left: -70px;
    }
}

.testimonial-card-layout {
    position: relative;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 42px 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
    overflow: hidden;
}

/* Top bright white light beam shine */
.testimonial-card-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    z-index: 3;
}

.testimonial-quote {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 400;
    color: #dedede;
    margin: 0;
    letter-spacing: 0.15px;
}

/* Pagination Dots */
.testimonial-dots-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-dot.active::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
}

/* --- CONTACT --- */
/* --- CONTACT --- */
.contact-section {
    padding: 70px 0 120px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 850px;
    height: 550px;
    background: radial-gradient(circle, rgba(220, 0, 30, 0.4) 0%, rgba(120, 0, 20, 0.12) 55%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.contact-box-wrapper {
    background: #0d0714;
    border-radius: 24px;
    padding: 2.5px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.3);
    max-width: 1020px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-box-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 200deg,
        rgba(255, 215, 0, 0.08) 230deg,
        rgba(255, 215, 0, 0.4) 275deg,
        #ffcc00 320deg,
        #ffffaa 352deg,
        #ffffff 357deg,
        #ffcc00 360deg
    );
    animation: yellowLightSpin 3.5s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.contact-box-wrapper > .row {
    position: relative;
    z-index: 1;
    border-radius: 21.5px;
    overflow: hidden;
    background: #0d0714;
}

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

.contact-left-col {
    background: linear-gradient(145deg, #180918 0%, #150614 60%, #110410 100%);
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-right-col {
    background: linear-gradient(145deg, #0e0716 0%, #09040e 100%);
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0088ff !important;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.contact-heading {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 30px;
    letter-spacing: -0.2px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.bg-red-opacity {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #ef4444 !important;
}

.bg-green-opacity {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e !important;
}

.bg-blue-opacity {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6 !important;
}

.bg-yellow-opacity {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b !important;
}

.contact-info-text {
    font-size: 13.5px;
    color: #ffffff;
    line-height: 1.45;
}

.contact-form-elements label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.contact-input,
.contact-textarea {
    background: #110b1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #554e66 !important;
}

.contact-input:focus,
.contact-textarea:focus {
    background: #160f22 !important;
    border-color: #a800c8 !important;
    box-shadow: 0 0 0 3px rgba(168, 0, 200, 0.2) !important;
    outline: none !important;
}

.contact-textarea {
    min-height: 125px;
    resize: none;
}

.btn-glow-cta {
    background: linear-gradient(90deg, #5b00b3 0%, #aa00c8 50%, #d60093 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 20px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-align: center;
    box-shadow: 0 4px 20px rgba(170, 0, 200, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(170, 0, 200, 0.6);
    color: #ffffff !important;
}

/* --- TRUST BANNER --- */
.trust-banner-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
    height: auto;
}

.trust-banner-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(5, 3, 12, 0.35) 35%, 
        rgba(6, 4, 14, 0.8) 75%, 
        #070512 100%
    );
    pointer-events: none;
    z-index: 2;
}

.trust-heading {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.trust-flags-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-flags-img {
    max-width: 680px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.trust-flags-img:hover {
    transform: scale(1.02);
}

/* --- FOOTER & CTA BANNER WRAPPER WITH BACKGROUND --- */
.footer-banner-wrapper {
    position: relative;
    background-image: url('../images/footer-banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #070512;
    overflow: hidden;
    margin-top: -1px;
}

.footer-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #070512 0%, rgba(7, 5, 18, 0.6) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Fallback background image for section-bottom-banner and footer-section if rendered standalone */
.section-bottom-banner,
.footer-section {
    background-image: url('../images/footer-banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #070512;
}

.footer-banner-wrapper .section-bottom-banner,
.footer-banner-wrapper .footer-section {
    background-image: none;
    background-color: transparent;
}

/* --- BOTTOM CTA BANNER --- */
.section-bottom-banner {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(28, 29, 40, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-heading {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.btn-cta-dark {
    background: rgba(12, 13, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ff2d55 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-cta-dark:hover {
    background: #ff2d55;
    color: #ffffff !important;
    border-color: #ff2d55;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.4);
}

/* --- MAIN FOOTER --- */
.footer-section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 25px;
    color: #8c8d9e;
    overflow: hidden;
}

.footer-section::after {
    display: none;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

.footer-brand-desc {
    color: #8c8d9e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 15px;
}

.footer-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #a0a3bd;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8c8d9e;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-info-text {
    font-size: 13px;
    color: #8c8d9e;
    line-height: 1.55;
    margin-bottom: 12px;
}

/* Social icons styling */
.social-icons-wrapper {
    margin-top: 18px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.icon-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.icon-x {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.2);
}

.icon-gmail {
    background: #ea4335;
}

.icon-facebook {
    background: #1877f2;
    border-radius: 50%;
}

.icon-youtube {
    background: #ff0000;
}

.icon-rss {
    background: #ff6600;
}

.icon-linkedin {
    background: #0a66c2;
}

/* Subscribe Pill Form */
.footer-subscribe-pill {
    background: #ffffff;
    border-radius: 50px;
    padding: 4px 4px 4px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.subscribe-input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 13px !important;
    color: #222222 !important;
    padding: 0 !important;
    width: 100%;
}

.subscribe-input::placeholder {
    color: #888888 !important;
    font-size: 13px;
}

.btn-subscribe-circle {
    background: #ff2d55;
    color: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-subscribe-circle:hover {
    background: #e60033;
    transform: scale(1.05);
}

/* Copyright line */
.copyright {
    font-size: 12px;
    color: #6c6d7e;
}

.copyright-link {
    color: #6c6d7e;
    text-decoration: underline;
    transition: color 0.2s ease;
}

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

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    /* Mobile Hero Red-Purple Glowing Orb (Doubled 2x Spot Size) */
    .hero-intro-wrapper {
        background-size: 210% auto !important;
        background-position: -20% -10px !important;
        background-repeat: no-repeat !important;
    }

    .hero-intro-wrapper::after {
        display: none !important;
    }

    .hero-section .glow-red {
        display: block !important;
        width: 580px !important;
        height: 580px !important;
        filter: blur(70px) !important;
        opacity: 0.85 !important;
        background: radial-gradient(circle at 45% 45%, rgba(255, 30, 90, 0.95) 0%, rgba(225, 18, 54, 0.75) 30%, rgba(170, 15, 140, 0.45) 55%, rgba(100, 5, 80, 0.15) 75%, transparent 100%) !important;
        top: -60px !important;
        left: -80px !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 1 !important;
    }

    .hero-section .glow-purple {
        display: block !important;
        width: 480px !important;
        height: 480px !important;
        filter: blur(80px) !important;
        opacity: 0.6 !important;
        background: radial-gradient(circle, rgba(187, 39, 255, 0.7) 0%, rgba(120, 0, 180, 0.35) 50%, transparent 80%) !important;
        top: -20px !important;
        left: 80px !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 1 !important;
    }

    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .stats-card {
        position: relative;
        bottom: 0;
        left: 0;
        min-width: auto;
        margin-top: 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-content-left, 
    .timeline-content-right {
        text-align: left !important;
        padding: 10px 20px;
    }
    
    .timeline-badge-col {
        order: -1;
        justify-content: flex-start !important;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .drivers-horizontal-line {
        display: none;
    }
    
    .driver-node {
        margin-bottom: 10px;
    }
    
    .section-bottom-banner {
        text-align: center;
    }
    
    .cta-heading, .trust-heading {
        font-size: 28px;
    }
}

/* --- FLOATING ROBOT (INTRO-STATS.PNG) ANIMATION STYLES --- */
.stats-icon-overlay {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.intro-stats-robot {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.intro-stats-robot.is-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Flying element wrapper */
.intro-stats-flying-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    z-index: 999;
    pointer-events: none;
    will-change: transform;
    transition: transform 1.3s cubic-bezier(0.34, 1.15, 0.64, 1);
}

.flying-robot-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    animation: robotFlyMovement 2.5s ease-in-out infinite alternate;
}

.robot-main-body {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    filter: none !important;
}

/* Layered Robot Arms for Waving Animation - disabled as arms are baked smoothly into intro-stats-animated.gif */
.robot-arm-overlay {
    display: none !important;
}

/* Overall Robot Flight Body Dynamics */
@keyframes robotFlyMovement {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-14px) rotate(0deg) scale(1.04);
    }
    100% {
        transform: translateY(8px) rotate(0deg) scale(0.96);
    }
}

/* Soft circular purple glowing light behind floating mascot - NO RECTANGLE BOX */
.intro-stats-flying-element::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(187, 39, 255, 0.65) 0%, rgba(255, 31, 81, 0.25) 55%, transparent 75%) !important;
    filter: blur(14px);
    z-index: -1;
    pointer-events: none;
    display: block !important;
    animation: robotGlowPulse 1.8s ease-in-out infinite alternate;
}

@keyframes robotGlowPulse {
    0% { opacity: 0.45; transform: scale(0.85); }
    100% { opacity: 0.95; transform: scale(1.25); }
}

/* Slot placeholder glow when robot is away - disabled for clean transparent robot */
.stats-icon-overlay.is-flying::after {
    display: none !important;
}

/* ==========================================================================
   SHAPING THE NEXT CENTURY OF AGRICULTURE SECTION
   ========================================================================== */
.shaping-century-section {
    background-color: #030007;
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

/* Center Dark Background Layer */
.shaping-bg-center-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
}

/* Left & Right Background Image Flare Wrappers */
.shaping-bg-flare {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
}

.shaping-bg-flare.left-flare {
    left: 0;
}

.shaping-bg-flare.right-flare {
    right: 0;
}

.shaping-bg-flare .flare-img {
    height: 100%;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
}

/* Synchronized Top-to-Bottom Light Sweep Effect (GPU Accelerated 60-120FPS) */
.shaping-bg-flare .flare-light-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    mix-blend-mode: plus-lighter;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.shaping-bg-flare.left-flare .flare-light-sweep {
    -webkit-mask-image: url('../images/left.png');
    mask-image: url('../images/left.png');
}

.shaping-bg-flare.right-flare .flare-light-sweep {
    -webkit-mask-image: url('../images/right.png');
    mask-image: url('../images/right.png');
}

/* Light Beam Glow Layer - Controlled via JS shaping-animation.js */
.shaping-bg-flare .light-beam-glow {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 28%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(200, 0, 220, 0.2) 15%,
        rgba(255, 90, 230, 0.65) 35%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 90, 230, 0.65) 65%,
        rgba(200, 0, 220, 0.2) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, -120%, 0);
    -webkit-transform: translate3d(0, -120%, 0);
    will-change: transform, opacity;
}

/* Section Headline */
.shaping-century-title {
    font-family: var(--font-inter), sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.01em;
    max-width: 700px;
}

/* Timeline Outer Wrapper */
.shaping-timeline-wrapper {
    max-width: 780px;
    padding: 30px 0;
}

/* Center Vertical Line */
.shaping-center-line {
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 40px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, 
        rgba(225, 18, 54, 0.15) 0%, 
        rgba(255, 0, 90, 0.85) 15%, 
        rgba(255, 0, 90, 0.85) 85%, 
        rgba(225, 18, 54, 0.15) 100%
    );
    box-shadow: 0 0 10px rgba(255, 0, 90, 0.6);
    z-index: 1;
    overflow: hidden;
}

/* Light Sweep Moving Down the Center Line */
.shaping-center-line .shaping-line-light {
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 0, 100, 0.6) 20%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 0, 100, 0.6) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: 0 0 15px #ffffff, 0 0 30px #ff0055;
    transform: translate3d(0, -150px, 0);
    -webkit-transform: translate3d(0, -150px, 0);
    will-change: transform, opacity;
}

/* Step Item Row */
.shaping-step-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100px;
    margin-bottom: 35px;
    z-index: 2;
}

.shaping-step-item:last-child {
    margin-bottom: 0;
}

/* Badge (Circle 1-6) Base State */
.shaping-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cc0044 0%, #990026 100%);
    color: #ffffff;
    font-family: var(--font-inter), sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(200, 0, 50, 0.4);
    opacity: 0.85;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
                background 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, box-shadow, background, opacity;
}

/* Active Glow State - Activated ONLY when light beam physically overlaps the badge */
.shaping-badge.active-glow {
    transform: translateX(-50%) scale(1.28) !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #ffffff 0%, #ff0055 50%, #e60039 100%) !important;
    box-shadow: 0 0 25px #ffffff, 0 0 50px #ff0055, 0 0 85px rgba(255, 0, 100, 1), inset 0 0 12px #ffffff !important;
    color: #ffffff !important;
}

/* Content Box positioning */
.shaping-content {
    width: calc(50% - 45px);
}

/* Step Right (Badge in middle, text on right) */
.shaping-step-item.step-right {
    justify-content: flex-end;
}

.shaping-step-item.step-right .shaping-content {
    text-align: left;
    padding-left: 25px;
    padding-right: 0;
}

/* Step Left (Badge in middle, text on left) */
.shaping-step-item.step-left {
    justify-content: flex-start;
}

.shaping-step-item.step-left .shaping-content {
    text-align: right;
    padding-right: 25px;
    padding-left: 0;
}

/* Item Typography */
.shaping-item-title {
    font-family: var(--font-inter), sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #e6004c;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.shaping-item-desc {
    font-family: var(--font-inter), sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #b0b5c0;
    line-height: 1.35;
    margin-bottom: 0;
}

/* Responsive adjust for tablets & mobile (Shaping Century) */
@media (max-width: 768px) {
    .shaping-century-section {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .shaping-bg-flare,
    .shaping-bg-flare.left-flare,
    .shaping-bg-flare.right-flare,
    .shaping-bg-flare .flare-light-sweep,
    .shaping-bg-flare .flare-img,
    .shaping-bg-flare .light-beam-glow {
        display: none !important;
        animation: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    .shaping-century-title {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .shaping-timeline-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .shaping-center-line {
        left: 28px;
        transform: none;
    }

    .shaping-badge {
        left: 28px;
        transform: translateX(-50%);
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .shaping-step-item.step-left,
    .shaping-step-item.step-right {
        justify-content: flex-start;
        padding-left: 60px;
        margin-bottom: 28px;
    }

    .shaping-content {
        width: 100% !important;
        padding: 14px 16px !important;
        background: rgba(14, 10, 24, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        text-align: left !important;
    }

    .shaping-item-title {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .shaping-item-desc {
        font-size: 0.88rem;
        line-height: 1.4;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE ULTIMATE AESTHETIC ENHANCEMENTS
   ========================================================================== */
@media (max-width: 991px) {
    /* Strict Mobile Viewport Full-Width & No-Overflow System */
    html, body, .berlinvn-landing, section, .hero-intro-wrapper, .footer-banner-wrapper {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .col-12, .col-lg-8, .col-xl-7, .col-lg-6, .col-lg-5, .col-lg-7, .col-lg-4, .col-md-6, .col-lg-3, .col-lg-2 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .glow-effect,
    .ellipse-glow,
    .innovations-orb,
    .innovations-bot-spotlight,
    .contact-section::before,
    .portfolio-bg-glows {
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    #shaping-century .shaping-bg-flare,
    #shaping-century .shaping-bg-flare.left-flare,
    #shaping-century .shaping-bg-flare.right-flare,
    #shaping-century .flare-light-sweep,
    #shaping-century .flare-img,
    #shaping-century .light-beam-glow {
        display: none !important;
        animation: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    /* Mobile Hardware-Accelerated High Performance Optimizations */
    .innovations-orb,
    .innovations-bot-spotlight,
    .shaping-line-light,
    .light-beam-glow,
    .glowing-dot,
    .innovations-ai-bot-wrapper {
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .innovations-orb {
        filter: blur(40px) !important;
    }

    .glassmorphic,
    .testimonial-card-layout,
    .stats-card,
    .shaping-content {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    /* 1. Header & Mobile Menu Drawer */
    .top-nav-bar {
        height: 70px;
        padding: 0 15px !important;
    }

    .brand-logo {
        max-height: 42px;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        box-shadow: 0 0 12px rgba(225, 18, 54, 0.25) !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px var(--color-crimson) !important;
    }

    .top-nav-bar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: auto !important;
        min-height: 70px !important;
        overflow: visible !important;
        z-index: 99999 !important;
    }

    .navbar-collapse {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 75px !important;
        left: 15px !important;
        right: 15px !important;
        width: calc(100vw - 30px) !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        background: rgba(10, 6, 20, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-top: 2px solid #ff2a64 !important;
        border-radius: 18px !important;
        padding: 24px 20px !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(225, 18, 54, 0.35) !important;
        z-index: 999999 !important;

        /* Ultra-Smooth 60fps Liquid Glass Transition */
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-16px) scale(0.96) !important;
        transform-origin: top center !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: transform, opacity !important;
    }

    .navbar-collapse.show {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }

    .navbar-toggler {
        transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease !important;
    }

    .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(255, 42, 100, 0.22) !important;
        border-color: rgba(255, 42, 100, 0.7) !important;
        transform: scale(1.05) !important;
    }

    .nav-links-group {
        text-align: center;
    }

    .nav-links-group .nav-link {
        font-size: 16px !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta {
        text-align: center;
        margin-top: 18px;
    }

    .nav-cta .btn-partner {
        width: 100%;
        display: block;
        padding: 12px 24px;
        font-size: 15px;
    }

    /* 2. Hero & Intro Section Mobile Liquid Glass Graphics & Styling */
    .hero-title .text-black {
        color: #ffffff !important;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    #our-introduction-section {
        position: relative !important;
        padding: 40px 0 55px 0 !important;
        background: 
            radial-gradient(circle at 10% 20%, rgba(225, 18, 54, 0.18) 0%, transparent 45%),
            radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.18) 0%, transparent 45%),
            linear-gradient(180deg, #050718 0%, #020412 100%) !important;
        overflow: hidden !important;
    }

    .geometric-accent {
        display: none !important;
    }

    .image-wrapper {
        border-radius: 22px !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(225, 18, 54, 0.2) !important;
    }

    .image-wrapper img {
        max-height: 380px !important;
    }

    .stats-card {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        min-width: 100% !important;
        margin-top: -25px !important;
        padding: 1rem 1.25rem !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(15, 10, 36, 0.82) 100%) !important;
        backdrop-filter: blur(30px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        box-shadow: inset 0 1.5px 1px rgba(255, 255, 255, 0.4), 0 15px 35px rgba(0, 0, 0, 0.7) !important;
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        z-index: 5 !important;
    }

    .stats-number {
        font-size: 32px !important;
        color: #ffffff !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }

    .stats-label {
        font-size: 11px !important;
        color: rgba(225, 235, 255, 0.85) !important;
    }

    .stats-icon-overlay {
        width: 85px !important;
        height: 85px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .intro-stats-robot {
        width: 85px !important;
        height: 85px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .intro-stats-flying-element {
        display: none !important;
    }

    /* Mobile Intro Content Styling */
    #our-introduction-section .d-flex.align-items-center.gap-2.mb-3 {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.4rem 1.1rem !important;
        border-radius: 9999px !important;
        background: linear-gradient(135deg, rgba(225, 18, 54, 0.22), rgba(225, 18, 54, 0.06)) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(255, 45, 85, 0.45) !important;
        box-shadow: 0 4px 20px rgba(225, 18, 54, 0.25) !important;
        margin-bottom: 1.25rem !important;
        margin-top: 1rem !important;
    }

    #our-introduction-section .divider-line {
        display: none !important;
    }

    #our-introduction-section .section-subtitle {
        color: #ff4d6d !important;
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.15em !important;
        text-transform: uppercase !important;
    }

    #our-introduction-section #intro-title-target {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem) !important;
        font-weight: 900 !important;
        letter-spacing: -0.02em !important;
        line-height: 1.25 !important;
        background: linear-gradient(135deg, #ffffff 0%, #ff8599 50%, #ffffff 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        margin-bottom: 1.2rem !important;
        text-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important;
    }

    #our-introduction-section #intro-desc-target {
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
        color: rgba(235, 242, 255, 0.85) !important;
        margin-bottom: 2rem !important;
    }

    /* 2x2 Services Grid Liquid Glass Cards on Mobile */
    #our-introduction-section #intro-services-target {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.9rem !important;
        margin-bottom: 2.2rem !important;
    }

    #our-introduction-section #intro-services-target > div {
        width: 100% !important;
        margin: 0 !important;
        padding: 1.1rem 1rem !important;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(18, 12, 35, 0.6) 100%) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        border-radius: 18px !important;
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 8px 25px rgba(0, 0, 0, 0.45) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        transition: transform 0.3s ease, border-color 0.3s ease !important;
    }

    #our-introduction-section #intro-services-target > div:active,
    #our-introduction-section #intro-services-target > div:hover {
        transform: translateY(-2px) scale(1.02) !important;
        border-color: rgba(255, 45, 85, 0.45) !important;
    }

    #our-introduction-section .service-icon {
        width: 38px !important;
        height: 38px !important;
        border-radius: 12px !important;
        background: linear-gradient(135deg, rgba(225, 18, 54, 0.3), rgba(225, 18, 54, 0.1)) !important;
        border: 1.2px solid rgba(255, 45, 85, 0.5) !important;
        box-shadow: 0 0 15px rgba(255, 45, 85, 0.4) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    #our-introduction-section .service-icon i {
        color: #ff2d55 !important;
        font-size: 1.15rem !important;
    }

    #our-introduction-section #intro-services-target h5 {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin-bottom: 0.2rem !important;
        letter-spacing: -0.01em !important;
    }

    #our-introduction-section #intro-services-target p {
        font-size: 0.8rem !important;
        color: rgba(230, 238, 255, 0.78) !important;
        line-height: 1.35 !important;
    }

    /* Crimson Liquid Glass Button */
    #our-introduction-section #intro-button-target {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 1rem 1.75rem !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        border-radius: 18px !important;
        background: linear-gradient(135deg, #ff2d55 0%, #c40026 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.35) !important;
        box-shadow: inset 0 1.5px 1px rgba(255, 255, 255, 0.45), 0 12px 30px rgba(255, 45, 85, 0.5) !important;
        color: #ffffff !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }

    #our-introduction-section #intro-button-target:active,
    #our-introduction-section #intro-button-target:hover {
        transform: scale(1.02) translateY(-2px) !important;
        box-shadow: inset 0 1.5px 1px rgba(255, 255, 255, 0.6), 0 15px 40px rgba(255, 45, 85, 0.7) !important;
    }

    /* 3. Testimonial Mobile Layout */
    .testimonial-section {
        padding: 30px 0 40px;
    }

    .testimonial-building-img {
        max-height: 320px;
        margin-bottom: 20px;
    }

    .testimonial-card-layout {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .testimonial-quote {
        font-size: 16px;
        line-height: 1.6;
    }

    /* 4. Contact & Footer Mobile Fixes & Enhancements */
    .contact-section {
        padding: 35px 0 25px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .contact-box-wrapper {
        border-radius: 20px !important;
        background: #0d0714 !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 136, 255, 0.2) !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 auto 2.5rem !important;
        max-width: 100% !important;
    }

    /* Remove spinning conic line on mobile to prevent vertical line bleed through card text */
    .contact-box-wrapper::before {
        display: none !important;
    }

    .contact-box-wrapper > .row {
        border-radius: 19px !important;
        overflow: hidden !important;
        background: #0d0714 !important;
        margin: 0 !important;
    }

    .contact-left-col {
        background: linear-gradient(145deg, #180918 0%, #150614 60%, #110410 100%) !important;
        padding: 24px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .contact-right-col {
        background: linear-gradient(145deg, #0e0716 0%, #09040e 100%) !important;
        padding: 24px 20px !important;
    }

    .contact-tag {
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.12em !important;
        color: #0088ff !important;
        margin-bottom: 10px !important;
        display: inline-block !important;
    }

    .contact-heading {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.35 !important;
        margin-bottom: 22px !important;
        letter-spacing: -0.01em !important;
    }

    .contact-info-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .contact-info-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        font-size: 14px !important;
    }

    .contact-info-text {
        font-size: 0.85rem !important;
        color: rgba(240, 245, 255, 0.9) !important;
        line-height: 1.45 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .contact-form-elements {
        gap: 1.1rem !important;
    }

    .contact-form-elements label {
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.08em !important;
        color: rgba(255, 255, 255, 0.85) !important;
        margin-bottom: 6px !important;
        display: block !important;
    }

    .contact-input,
    .contact-textarea {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        color: #ffffff !important;
        padding: 12px 14px !important;
        border-radius: 12px !important;
        font-size: 0.88rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-textarea {
        min-height: 110px !important;
    }

    .btn-glow-cta {
        background: linear-gradient(135deg, #aa00c8 0%, #d60093 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 14px !important;
        padding: 1rem 1.25rem !important;
        color: #ffffff !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        line-height: 1.45 !important;
        text-align: center !important;
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 8px 25px rgba(170, 0, 200, 0.5) !important;
        margin-top: 0.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }

    .trust-banner-section {
        height: auto;
        padding: 40px 15px 120px;
    }

    .trust-heading {
        font-size: 26px !important;
    }

    .cta-heading {
        font-size: 22px !important;
    }

    .footer-subscribe-pill {
        max-width: 100%;
    }

    /* Footer Mobile Enhancements: Centered Logo & Brand Desc, 2-Column EXPLORE links */
    .footer-section .footer-logo {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-section .footer-logo .brand-logo {
        display: block !important;
        margin: 0 auto !important;
    }

    .footer-section .footer-brand-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-section .footer-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 20px !important;
    }

    .footer-section .footer-links li {
        margin-bottom: 0 !important;
    }

    .footer-section .copyright {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 110px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .trust-flags-img {
        margin-bottom: 100px;
    }

    .section-bottom-banner {
        padding: 0 !important;
    }

    #contact {
        padding-bottom: 0 !important;
    }

    .footer-section {
        padding: 0 !important;
    }

    .footer-section .col-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .hero-title {
        font-size: clamp(30px, 8.5vw, 46px);
        line-height: 1.05;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-section .btn {
        width: 100%;
        text-align: center;
    }


    /* Research Section Mobile */
    .research-section {
        padding: 20px 0 30px 0;
    }

    .research-glow-card {
        border-radius: 18px !important;
        overflow: hidden !important;
        border: 1.5px solid rgba(255, 42, 100, 0.85) !important;
        box-shadow: 
            0 0 20px rgba(255, 30, 95, 0.35),
            inset 0 0 15px rgba(255, 30, 95, 0.15) !important;
    }

    .research-card-top {
        padding: 28px 18px 20px;
    }

    .card-headline {
        font-size: 21px;
        margin-bottom: 22px;
    }

    .research-cols-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .research-col-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 42, 100, 0.4), transparent);
        margin: 6px 0;
    }

    .research-col-item {
        padding: 8px 4px;
    }

    .research-col-item h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .research-col-item p {
        font-size: 13px;
    }

    .research-card-visual {
        width: 100% !important;
        height: 210px !important;
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
        overflow: hidden !important;
    }

    .research-bg-image {
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Innovations Section Mobile Cards & Ring */
    .innovations-section {
        padding: 45px 0 55px;
    }

    .innovations-section .section-title {
        font-size: 19px;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    .innovations-ring-wrapper {
        max-width: 300px;
    }

    .innovations-ring-img {
        max-width: 280px;
    }

    .category-list {
        padding: 0 12px;
        margin-top: -25px;
    }

    .category-card {
        aspect-ratio: 816 / 780;
        padding: 10% 12% !important;
        margin-bottom: 12px;
    }

    .category-title {
        font-size: 17px;
    }

    .card-icon-box {
        width: 42px;
        height: 42px;
        margin-bottom: 14px !important;
    }

    .innovations-ai-bot-wrapper {
        width: 75px;
        height: 75px;
        margin-left: -37.5px;
        margin-top: -37.5px;
    }

    .innovations-bot-glow-ring {
        width: 72px;
        height: 72px;
    }

    .innovations-bot-character .bot-img {
        width: 64px;
    }

    .innovations-bot-spotlight {
        width: 480px;
        height: 480px;
        margin-left: -240px;
        margin-top: -240px;
    }

    .innovations-bot-spotlight-core {
        width: 220px;
        height: 220px;
        margin-left: -110px;
        margin-top: -110px;
    }

    /* Portfolio Section & Drivers Mobile */
    .portfolio-section {
        padding: 45px 0 35px;
    }

    .portfolio-section-title {
        font-size: 22px;
        padding: 0 10px;
    }

    .portfolio-btn-gradient {
        padding: 10px 16px;
        font-size: 12.5px;
    }

    .portfolio-card {
        padding: 22px 18px;
    }

    .portfolio-desc {
        font-size: 13.5px;
    }

    .drivers-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .drivers-grid {
        padding-top: 0;
        padding-left: 15px;
        position: relative;
    }

    /* Vertical rainbow spectrum line connecting driver nodes on mobile */
    .drivers-grid::before {
        content: '';
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 21px;
        width: 3px;
        background: linear-gradient(180deg, #ff0055 0%, #ff7700 20%, #ffdd00 40%, #00ff66 60%, #00ddff 80%, #b520e8 100%);
        box-shadow: 0 0 10px rgba(0, 221, 255, 0.8);
        border-radius: 3px;
        z-index: 1;
    }

    .drivers-grid .row {
        row-gap: 24px;
    }

    .driver-node {
        margin: 0 0 0 0px !important;
        float: left;
        width: 14px;
        height: 14px;
    }

    .driver-text {
        text-align: left !important;
        padding-left: 35px;
    }

    .driver-sub {
        font-size: 13px;
        line-height: 1.45;
    }
}

/* --- PERFORMANCE & HARDWARE ACCELERATION OPTIMIZATIONS --- */
.flying-robot-wrapper,
.shaping-line-light,
.light-beam-glow,
.innovations-ai-bot-wrapper,
#innovations-bot-spotlight,
#innovations-bot-spotlight-core,
.bot-golden-particle {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.glowing-dot {
    will-change: transform, left, top;
    transform: translate(-50%, -50%) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Defer rendering of heavy off-screen sections until scrolled near */
#shaping-century,
#innovations,
#portfolio,
#contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

#contact {
    overflow: hidden;
}


