/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #C9D1D9;
    background-color: #0D1117;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== NEURAL CANVAS BACKGROUND ===== */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #010409 0%, #0D1117 50%, #161B22 100%);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #F0F6FC;
    letter-spacing: -0.025em;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #F0F6FC;
    letter-spacing: -0.03em;
    position: relative;
    padding: 0 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: rgba(234, 179, 8, 0.4);
    border-radius: 1px;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    text-align: center;
    color: #8B949E;
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 1rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.comparison-bar {
    width: 100% !important;
}

/* ===== UNIFIED ICON SYSTEM ===== */

/* Icon Size Standards */
.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 40px; height: 40px; }
.icon-2xl { width: 48px; height: 48px; }
.icon-3xl { width: 64px; height: 64px; }
.icon-4xl { width: 80px; height: 80px; }

/* Icon Base Styles */
.icon-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Icon Color Variants */
.icon-primary { color: #c2922e; }
.icon-secondary { color: rgba(255, 255, 255, 0.8); }
.icon-accent { color: #d4a332; }
.icon-muted { color: rgba(255, 255, 255, 0.6); }

/* Icon Hover Effects */
.icon-hover-scale:hover {
    transform: scale(1.1);
}

.icon-hover-rotate:hover {
    transform: rotate(5deg);
}

.icon-hover-glow:hover {
    filter: drop-shadow(0 4px 12px rgba(194, 146, 46, 0.4));
}

.icon-hover-3d:hover {
    transform: translateZ(5px) rotateY(10deg);
}

/* Icon Container Styles */
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.icon-container:hover {
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.2), rgba(194, 146, 46, 0.1));
    border-color: rgba(194, 146, 46, 0.4);
    box-shadow: 0 8px 25px rgba(194, 146, 46, 0.3);
    transform: translateZ(5px);
}

/* Specific Icon Containers */
.icon-container-sm {
    width: 40px;
    height: 40px;
    padding: 8px;
}

.icon-container-md {
    width: 50px;
    height: 50px;
    padding: 10px;
}

.icon-container-lg {
    width: 60px;
    height: 60px;
    padding: 12px;
}

.icon-container-xl {
    width: 80px;
    height: 80px;
    padding: 16px;
}

/* Emoji Icons and Feature Icons */
.benefit-icon,
.feature-icon,
.compliance-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.15), rgba(194, 146, 46, 0.08));
    border-radius: 50%;
    border: 2px solid rgba(194, 146, 46, 0.3);
    filter: drop-shadow(0 4px 12px rgba(194, 146, 46, 0.3));
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    margin: 0 auto 1.5rem;
}

.benefit-icon:hover,
.feature-icon:hover,
.compliance-icon:hover {
    transform: scale(1.15) rotateY(15deg) translateZ(5px);
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.25), rgba(194, 146, 46, 0.12));
    border-color: rgba(194, 146, 46, 0.5);
    filter: drop-shadow(0 8px 20px rgba(194, 146, 46, 0.5));
    box-shadow: 0 10px 30px rgba(194, 146, 46, 0.4);
}

/* ===== 3D EFFECTS AND ALTERNATING LAYOUTS ===== */

/* Section Layout System */
.section-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    perspective: 1000px;
    padding: 4rem 0;
    position: relative;
}

.section-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50vw;
    right: -50vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(194, 146, 46, 0.3), transparent);
}

.section-layout.left-content .content-side {
    order: 1;
    padding-right: 3rem;
}

.section-layout.left-content .visual-side {
    order: 2;
    padding-left: 3rem;
}

.section-layout.right-content .content-side {
    order: 2;
    padding-left: 3rem;
}

.section-layout.right-content .visual-side {
    order: 1;
    padding-right: 3rem;
}

.section-layout.center-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.2), rgba(194, 146, 46, 0.05));
    border: 2px solid rgba(194, 146, 46, 0.3);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 5rem 0;
    position: relative;
}

/* Default strategy grid - 4 cards in single row */
.strategy-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    width: 100% !important;
    align-items: stretch !important;
    justify-content: space-between !important;
}

/* Tech Section - 4 Cards Single Row Layout */
#tech-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#tech-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

#tech-section .strategy-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    width: 100% !important;
    align-items: stretch !important;
    justify-content: space-between !important;
}

#tech-section .strategy-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.8));
    border: 2px solid rgba(194, 146, 46, 0.2);
    border-radius: 24px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(194, 146, 46, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 320px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
    overflow: hidden;
    transform-style: preserve-3d;
    flex: 1 !important;
    width: calc(25% - 0.75rem) !important;
    max-width: calc(25% - 0.75rem) !important;
    min-width: 200px !important;
    flex-shrink: 0 !important;
}

/* Meteor Impact Glow Effect */
#tech-section .strategy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(234, 179, 8, 0.4) 0%,
        rgba(194, 146, 46, 0.2) 25%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    pointer-events: none;
}

#tech-section .strategy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(234, 179, 8, 0.1) 0%,
        transparent 50%,
        rgba(194, 146, 46, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: -1;
    border-radius: 24px;
}

/* Hover Effects - Meteor Impact */
#tech-section .strategy-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    border-color: rgba(234, 179, 8, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(234, 179, 8, 0.3),
        0 0 80px rgba(194, 146, 46, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#tech-section .strategy-card:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
}

#tech-section .strategy-card:hover::after {
    opacity: 1;
}

/* Tech Section Typography & Content */
#tech-section .strategy-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
    position: relative;
    z-index: 2;
}

#tech-section .strategy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

#tech-section .strategy-card li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

#tech-section .strategy-card li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: rgba(234, 179, 8, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
}

#tech-section .strategy-card:hover li {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

#tech-section .strategy-card li:last-child {
    margin-bottom: 0;
}

/* ULTIMATE OVERRIDE - Force 4 cards in single row */
#tech-section .strategy-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.8rem !important;
    width: 100% !important;
    align-items: stretch !important;
    justify-content: space-between !important;
}

#tech-section .strategy-card {
    flex: 1 !important;
    width: 24% !important;
    max-width: 24% !important;
    min-width: 180px !important;
    flex-shrink: 1 !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    #tech-section {
        padding: 4rem 0;
    }
    
    #tech-section .strategy-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    #tech-section .strategy-card {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }
    
    #tech-section .strategy-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    #tech-section .strategy-card li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
}

.strategy-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-height: 280px;
    flex: 1 !important;
    width: calc(25% - 0.75rem) !important;
    max-width: calc(25% - 0.75rem) !important;
    min-width: 200px !important;
    flex-shrink: 0 !important;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.05), rgba(194, 146, 46, 0.02));
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.strategy-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.3), rgba(194, 146, 46, 0.1), rgba(194, 146, 46, 0.3));
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strategy-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(194, 146, 46, 0.15);
    border-color: rgba(194, 146, 46, 0.4);
}

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

.strategy-card:hover::after {
    opacity: 1;
}

@keyframes neon-glow {
    0% {
        box-shadow: 0 0 5px rgba(var(--glow-color), 0.2),
                    0 0 10px rgba(var(--glow-color), 0.2),
                    0 0 20px rgba(var(--glow-color), 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(var(--glow-color), 0.5),
                    0 0 40px rgba(var(--glow-color), 0.5),
                    0 0 60px rgba(var(--glow-color), 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(var(--glow-color), 0.2),
                    0 0 10px rgba(var(--glow-color), 0.2),
                    0 0 20px rgba(var(--glow-color), 0.2);
    }
}

.strategy-card.neon-glow {
    animation: neon-glow 1.5s ease-in-out;
    border-color: rgba(var(--glow-color), 0.8);
}

@keyframes number-glow {
    0%, 100% {
        text-shadow: 0 0 4px rgba(255, 224, 107, 0.3), 0 0 8px rgba(255, 224, 107, 0.3);
    }
    50% {
        text-shadow: 0 0 12px rgba(255, 224, 107, 0.8), 0 0 24px rgba(255, 224, 107, 0.8);
    }
}

.number-item h3.number-glow {
    animation: number-glow 1.5s ease-in-out;
}

/* Strategy card icons */
.strategy-icon, .tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.08));
    border-radius: 50%;
    border: 2px solid rgba(234, 179, 8, 0.3);
    transition: all 0.3s ease;
}

.strategy-icon:hover, .tech-icon:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(234, 179, 8, 0.12));
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3);
}

.strategy-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.strategy-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-top: auto;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.strategy-card li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.strategy-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(194, 146, 46, 0.8);
    font-weight: 600;
    font-size: 1rem;
}

.strategy-card li:last-child {
    margin-bottom: 0;
}

/* Responsive design for strategy cards */
@media (max-width: 1200px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .strategy-section .strategy-grid {
        display: grid !important;
    }
    
    .tech-section .strategy-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .strategy-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        display: grid !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    .strategy-section {
        padding: 4rem 1rem !important;
    }
    
    .strategy-section h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        margin-bottom: 3rem !important;
    }
    
    .strategy-card {
        padding: 2rem 1.5rem !important;
        min-height: 240px !important;
        max-width: none !important;
        min-width: auto !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .strategy-card h3 {
        font-size: clamp(1rem, 3vw, 1.25rem) !important;
        margin-bottom: 1.25rem !important;
    }
    
    .strategy-card h4 {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem) !important;
    }
    
    .strategy-card p {
        font-size: clamp(0.7rem, 2vw, 0.8rem) !important;
    }
    
    .tech-section .container {
        padding: 0 1rem !important;
    }
    
    .tech-section h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    }
    
    .tech-grid {
    display: flex;
    justify-content: center;
    gap: 0; /* Remove gap between cards */
}

.tech-card {
    width: 45%; /* Adjust width as needed */
    max-width: 500px; /* Optional: set a max-width */
}

.tech-section .strategy-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .strategy-section {
        padding: 3rem 0.5rem !important;
    }
    
    .strategy-card {
        padding: 1.5rem 1rem !important;
        min-height: 200px !important;
    }
    
    .strategy-card h3 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .strategy-card h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .strategy-card p {
        font-size: 0.7rem !important;
    }
}

/* ===== PERFORMANCE SECTION RESPONSIVE ===== */
.performance-section {
    padding: 4rem 1rem;
    text-align: center;
}

.performance-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 2rem;
    color: #ffffff;
}

.performance-section p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 3rem;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.performance-links {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.performance-links p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1rem;
}

.performance-card h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
}

.performance-card h4 {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 0.5rem;
}

.performance-card p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.5;
}

.performance-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-performance {
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.2), rgba(245, 158, 11, 0.1));
    border: 2px solid rgba(234, 179, 8, 0.4);
    color: #EAB308;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-performance:hover {
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.3), rgba(245, 158, 11, 0.2));
    border-color: rgba(234, 179, 8, 0.7);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.2);
}

@media (max-width: 768px) {
    .performance-section {
        padding: 3rem 1rem;
    }
    
    .performance-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin: 0 auto 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .performance-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .performance-section {
        padding: 2rem 1rem;
    }
    
    .performance-links {
        padding: 1rem;
        gap: 1rem;
    }
    
    .performance-card {
        padding: 1.5rem 1rem;
    }
}

/* ===== LICENSES SECTION RESPONSIVE ===== */
.licenses-section {
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
}

.licenses-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
    margin-bottom: 3rem;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
}

.license-card {
    position: relative;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1.35 / 1;
    border-radius: 22px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.85), rgba(22, 27, 34, 0.75));
    border: 1px solid rgba(234, 179, 8, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.license-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(234, 179, 8, 0.25), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.license-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(234, 179, 8, 0.25);
    border-color: rgba(234, 179, 8, 0.35);
}

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

.license-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.3);
    transition: filter 0.35s ease;
}

.license-card:hover .license-logo {
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 992px) {
    .licenses-section {
        padding: 4rem 1rem;
    }

    .licenses-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .licenses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .licenses-section {
        padding: 3rem 1rem;
    }

    .licenses-grid {
        gap: 1rem;
    }

    .license-card {
        max-width: 220px;
        padding: 1.5rem;
    }
}

/* ===== LICENSES & PARTNERS SECTIONS ===== */
.partners-section {
    padding: 4rem 1rem;
}

.licenses-section h2, .partners-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    margin-bottom: 3rem !important;
    padding: 0 1rem;
}

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

.logo-grid span {
    padding: 2rem 1rem !important;
}

.logo-grid img {
    max-width: 120px !important;
    width: 80% !important;
}

@media (max-width: 768px) {
    .licenses-section, .partners-section {
        padding: 3rem 1rem;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .logo-grid span {
        padding: 1.5rem 1rem !important;
    }
    
    .logo-grid img {
        max-width: 100px !important;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .licenses-section, .partners-section {
        padding: 2rem 0.5rem;
    }
}

/* ===== ABOUT SECTION RESPONSIVE ===== */
.about-section {
    padding: 4rem 1rem;
    text-align: center;
}

.about-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.about-intro {
    margin-bottom: 4rem;
}

.about-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.about-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: none;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(234, 179, 8, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.about-card-title {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
}

.about-card-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 2rem 1rem;
    }
    
    .about-intro {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2rem 1rem;
    }
    
    .about-card {
        padding: 1.5rem 1rem;
    }
    
    .about-intro {
        margin-bottom: 2rem;
    }
}

/* ===== JOIN SECTION ===== */
/* ===== JOIN SECTION RESPONSIVE ===== */
.join-section {
    padding: 4rem 1rem;
    text-align: center;
}

.join-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.join-intro {
    margin-bottom: 4rem;
}

.join-subtitle {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
}

.join-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.performance-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: space-between;
}

.join-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: none;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(234, 179, 8, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.join-card-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
}

.join-card-text {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .join-section {
        padding: 3rem 1rem;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-card {
        padding: 1.8rem 1.2rem;
    }
    
    .join-intro {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .join-section {
        padding: 2rem 1rem;
    }
    
    .join-card {
        padding: 1.5rem 1rem;
    }
    
    .join-intro {
        margin-bottom: 2rem;
    }
}

.join-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.join-section p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 0 1rem;
}

.join-section h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .join-section .strategy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== CONTACT SECTION RESPONSIVE ===== */
.contact-section {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    margin: 3rem auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.contact-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.contact-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #EAB308, #F59E0B);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3), 0 0 20px rgba(234, 179, 8, 0.2);
    transform: translateY(0);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

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

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.4), 0 0 30px rgba(234, 179, 8, 0.3);
    background: linear-gradient(135deg, #F59E0B, #EAB308);
}

.contact-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.5);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2.5rem 1rem;
        margin: 2rem 1rem;
        max-width: none;
    }
    
    .contact-button {
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
        margin: 1.5rem 0.5rem;
        border-radius: 15px;
    }
    
    .contact-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}

.contact-section h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.contact-section p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.contact-section a {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem) !important;
    padding: 0.6rem 1.2rem !important;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 1rem 0.5rem !important;
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin: 1rem 0.25rem !important;
        padding: 1rem !important;
    }
}

/* ===== PERFORMANCE SECTION - DOWNLOADS ===== */
.performance-downloads {
    margin-top: 4rem;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.download-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.download-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.download-icon img {
    width: 100%;
    height: 100%;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.25));
}

.download-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(194, 146, 46, 0.3);
}

.download-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
    padding: 8rem 0;
    position: relative;
    z-index: 4;
}


/* ===== TECHNOLOGY & INFRASTRUCTURE SECTION ===== */
.tech-infra-section {
    padding: 6rem 0;
    text-align: center;
}

.tech-infra-section .section-header {
    margin-bottom: 4rem;
}

.tech-infra-section .tech-grid {
    justify-items: center;
}

.uptime-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.uptime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.uptime-card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.uptime-card .card-icon {
    height: 40px;
    margin-right: 1rem;
}

.uptime-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c2922e; /* Gold accent color */
}

.uptime-card .card-body .uptime-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.uptime-card .card-body .uptime-status {
    font-size: 1.1rem;
    font-weight: 500;
    color: #10b981; /* Green for operational status */
    width: 48px;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    opacity: 0.9;
}

.tech-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

/* ===== Tech Showcase Section ===== */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 4rem;
}

.tech-main-visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
}

.tech-diagram {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.fpga-core {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #c2922e;
    box-shadow: 0 0 20px rgba(194, 146, 46, 0.3);
    text-align: center;
}

.core-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c2922e;
    margin-bottom: 1rem;
}

.processing-units {
    display: flex;
    gap: 0.5rem;
}

.processing-units .unit {
    background: rgba(194, 146, 46, 0.2);
    color: #c2922e;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.data-flow {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.flow-arrow {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.latency-indicator {
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.latency-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.latency-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tech-grid-reimagined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.tech-card-reimagined {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    background-color: rgba(22, 27, 34, 0.6);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.tech-card-reimagined::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -2;
}

.tech-card-reimagined::after {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, top 0.1s linear, left 0.1s linear;
    pointer-events: none;
    z-index: -1;
}

.tech-card-reimagined:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.tech-card-reimagined:hover::after {
    opacity: 1;
}

.tech-card-reimagined .icon-container {
    background: rgba(234, 179, 8, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    display: inline-flex;
}

.tech-card-reimagined .icon-container img {
    width: 32px;
    height: 32px;
}

.tech-card-reimagined h4 {
    color: #F0F6FC;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-card-reimagined p {
    color: rgba(240, 246, 252, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature-card {
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-feature-card:hover {
    transform: translateY(-5px);
    border-color: #8B949E;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-feature-card .tech-icon {
    background: rgba(194, 146, 46, 0.1);
    border-radius: 50%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}

.tech-feature-card .tech-icon svg {
    width: 24px;
    height: 24px;
    stroke: #c2922e;
    filter: drop-shadow(0 0 5px rgba(194, 146, 46, 0.5));
}

.tech-feature-card .tech-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c2922e;
    margin: 0;
}

.tech-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
}

.spec-value {
    color: #FFFFFF;
    font-weight: 500;
}

/* Responsive styles for tech showcase */
@media (max-width: 992px) {
    .tech-showcase {
        grid-template-columns: 1fr;
    }
}

.tech-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 0;
}

.contact-content {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-item, .social-links {
    text-align: left;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c2922e;
}

.social-grid {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1rem 4rem 1rem;
    margin-top: -2rem;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-section.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-section p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #EAB308, #F59E0B);
    color: #000;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.4);
    background: linear-gradient(135deg, #F59E0B, #EAB308);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: #EAB308;
    color: #EAB308;
    background: rgba(234, 179, 8, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 3rem 1rem;
        min-height: 90vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 0.5rem 2rem 0.5rem;
        min-height: 85vh;
    }
    
    .hero-section h1 {
        margin-bottom: 1.5rem;
    }
    
    .hero-section p {
        margin-bottom: 2rem;
    }
}

/* ===== CONTENT WRAPPER & SECTIONS ===== */
.content-wrapper {
    position: relative;
    z-index: 1;
    padding: 0;
}

.content-section {
    padding: 4rem 1rem;
    margin-bottom: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .content-section {
        padding: 6rem 2rem;
    }
}

/* ===== NUMBERS SECTION ===== */
.numbers-section {
    padding: 6rem 0;
    position: relative;
    overflow: visible;
}

.numbers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.numbers-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
    position: relative;
}

.numbers-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
    justify-items: stretch !important;
}

.number-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: none;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
}

/* Force specific grid positioning for 3x2 layout */
.number-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.number-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.number-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.number-item:nth-child(4) { grid-column: 1; grid-row: 2; }
.number-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.number-item:nth-child(6) { grid-column: 3; grid-row: 2; }

.number-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.number-value {
    font-size: clamp(1.2rem, 4vw, 1.68rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.6);
    background: linear-gradient(135deg, #EAB308, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.number-label {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

/* Responsive breakpoints for numbers section */
@media (max-width: 1200px) {
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .numbers-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .numbers-section {
        padding: 4rem 0;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
    }
    
    .numbers-container {
        padding: 0 1rem;
    }
    
    .numbers-title {
        margin-bottom: 3rem;
    }
    
    .number-item {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
}

@media (max-width: 480px) {
    .numbers-section {
        padding: 3rem 0;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .numbers-container {
        padding: 0 0.5rem;
    }
    
    .numbers-title {
        margin-bottom: 2rem;
    }
    
    .number-item {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
}

/* Remove old conflicting styles */
.numbers-section .container {
    padding: 0 1rem !important;
}

.numbers-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    margin-bottom: 3rem !important;
    padding: 0 1rem;
}

.numbers-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    padding: 0 !important;
}

.number-item {
    padding: 2rem 1rem !important;
    min-height: auto !important;
}

.number-item h3 {
    font-size: clamp(1.2rem, 4vw, 1.68rem) !important;
}

.number-item p {
    font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
}

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .number-item {
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .numbers-section {
        padding: 3rem 0 !important;
    }
}

/* ===== STRATEGIES SECTION ===== */
.strategy-section {
    padding: 6rem 0;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.strategies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.strategies-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
    position: relative;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    place-items: center;
}

.strategy-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: none;
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.strategy-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.strategy-icon svg {
    filter: drop-shadow(0 2px 8px rgba(234, 179, 8, 0.3));
}

.strategy-name {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
}

.strategy-subtitle {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.strategy-description {
    font-size: clamp(0.65rem, 1.8vw, 0.7rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Responsive breakpoints for strategies section */
@media (max-width: 1200px) {
    .strategy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        max-width: 800px;
        justify-items: center;
    }
    
    .strategy-card {
        max-width: 250px;
    }
    
    .strategies-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .strategy-section {
        padding: 4rem 0;
    }
    
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
        justify-items: center;
    }
    
    .strategy-card {
        max-width: 220px;
    }
    
    .strategies-container {
        padding: 0 1rem;
    }
    
    .strategies-title {
        margin-bottom: 3rem;
    }
    
    .strategy-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .strategy-section {
        padding: 3rem 0;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        justify-items: center;
    }
    
    .strategy-card {
        max-width: 260px;
    }
    
    .strategies-container {
        padding: 0 0.5rem;
    }
    
    .strategies-title {
        margin-bottom: 2rem;
    }
    
    .strategy-card {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
}


/* ===== About Lidya Section ===== */
.about-lidya-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-lidya-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(194, 146, 46, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-background 10s infinite ease-in-out;
}

@keyframes pulse-background {
    0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.about-lidya-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
    align-items: stretch; /* Ensure cards stretch to fill grid cell height */
}

.about-lidya-main-card {
    grid-column: 1 / 4;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

.main-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.main-card-icon-container {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: rgba(194, 146, 46, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(194, 146, 46, 0.2);
}

.main-card-icon {
    width: 36px;
    height: 36px;
    color: #c2922e;
}

.main-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.main-card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.main-card-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.main-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.location-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-lidya-value-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-lidya-value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 146, 46, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.value-card-icon-container {
    width: 56px;
    height: 56px;
    background: rgba(194, 146, 46, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-lidya-value-card:hover .value-card-icon-container {
    background: rgba(194, 146, 46, 0.2);
    transform: scale(1.1);
}

.value-card-icon {
    width: 28px;
    height: 28px;
    color: #c2922e;
}

.value-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
}

.value-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-lidya-grid {
        grid-template-columns: 1fr;
    }
    .about-lidya-main-card {
        grid-column: 1 / -1; /* Span full width */
    }
}

/* ===== Trust & Compliance Section ===== */
.trust-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.trust-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.trust-card-icon-container {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: var(--icon-color);
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.trust-card:hover .trust-card-icon-container::before {
    opacity: 0.25;
}

.trust-card-icon {
    width: 32px;
    height: 32px;
    color: var(--icon-color);
    filter: drop-shadow(0 0 10px var(--icon-color));
}

.trust-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}

.trust-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    flex-grow: 1;
}

.trust-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card-footer span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== Redesigned Trust Section ===== */
.trust-section-redesigned {
    position: relative;
    padding: 8rem 0;
    background-color: #0c0c0f; /* Match dark background */
    overflow: hidden;
}

.trust-section-redesigned .section-header {
    position: relative;
    z-index: 2;
}

.trust-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trust-card-redesigned {
    position: relative;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.trust-card-redesigned::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    padding: 1px; /* Border thickness */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -2;
}

/* Spotlight Effect */
.trust-card-redesigned::after {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 146, 46, 0.15) 0%, rgba(194, 146, 46, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, top 0.1s linear, left 0.1s linear;
    z-index: -1;
}

.trust-card-redesigned:hover::after {
    opacity: 1;
}

.trust-card-redesigned:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-card-redesigned .trust-card-icon-container {
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card-redesigned .trust-card-icon {
    width: 32px;
    height: 32px;
    filter: invert(80%) sepia(58%) saturate(475%) hue-rotate(359deg) brightness(96%) contrast(93%); /* Gold color */
}

.trust-card-redesigned .trust-card-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-card-redesigned .trust-card-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trust-card-redesigned .trust-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== Redesigned Partners Section ===== */
.partners-section-redesigned {
    background-color: var(--background-dark-blue);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-section-redesigned .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo-card-redesigned {
    position: relative;
    background-color: rgba(18, 21, 37, 0.2); /* Harmonized background */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px); /* Harmonized blur */
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

/* Harmonized Gradient Border */
.partner-logo-card-redesigned::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    padding: 1px; /* Border thickness */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -2;
}

/* Harmonized Spotlight Effect */
.partner-logo-card-redesigned::after {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 146, 46, 0.15) 0%, rgba(194, 146, 46, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, top 0.1s linear, left 0.1s linear; /* Harmonized transition */
    pointer-events: none;
    z-index: -1;
}

.partner-logo-card-redesigned:hover {
    transform: translateY(-8px); /* Harmonized hover transform */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Harmonized shadow */
}

.partner-logo-card-redesigned:hover::after {
    opacity: 1;
}

.partner-logo-img {
    max-width: 80%;
    max-height: 60%;
    filter: grayscale(100%) brightness(1.5) contrast(1.2);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo-card-redesigned:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 6rem 0;
    text-align: center;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.partner-logo {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 146, 46, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%) brightness(1.5) contrast(1.2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* Service Dashboard Specifics */
.services-dashboard {
    background: radial-gradient(ellipse at top, #1a1a1a, #101010);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.service-card-redesigned {
    background: radial-gradient(300px circle at var(--x) var(--y), rgba(194, 146, 46, 0.15), transparent 80%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card-redesigned:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card-redesigned:hover::before {
    border-color: rgba(194, 146, 46, 0.6);
}

.card-header, .card-description, .card-features, .btn-primary-modern {
    position: relative;
    z-index: 2; /* Ensure content is above the spotlight gradient */
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.card-icon-wrapper {
    background-color: rgba(194, 146, 46, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.card-icon {
    width: 24px;
    height: 24px;
    filter: invert(75%) sepia(63%) saturate(456%) hue-rotate(357deg) brightness(93%) contrast(85%);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f0f0f0;
}

.card-description {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 24px;
}

.card-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.feature-icon {
    margin-right: 10px;
}

.feature-text {
    color: #c0c0c0;
}

.btn-primary-modern {
    background-color: transparent;
    border: 1px solid #c2922e;
    color: #c2922e;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary-modern:hover {
    background-color: #c2922e;
    color: #101010;
}

/* ===== Careers Section Redesigned ===== */
.careers-section-redesigned {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.careers-card {
    background: rgba(25, 30, 45, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem;
    backdrop-filter: blur(25px);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.careers-card-glow {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(194, 146, 46, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: subtle-pulse 8s infinite ease-in-out;
}

@keyframes subtle-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.career-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.career-pillar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.career-pillar:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(194, 146, 46, 0.4);
}

.pillar-icon-container {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: rgba(194, 146, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.career-pillar:hover .pillar-icon-container {
    background: rgba(194, 146, 46, 0.2);
}

.pillar-icon {
    width: 26px;
    height: 26px;
    color: #c2922e;
}

.pillar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pillar-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .career-pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .careers-card {
        padding: 3rem;
    }
}

/* ===== ENHANCED DASHBOARD STYLES ===== */

/* Strategy Dashboard */
.strategy-dashboard-header {
    background: linear-gradient(135deg, rgba(194, 146, 46, 0.1) 0%, rgba(194, 146, 46, 0.05) 100%);
    border: 1px solid rgba(194, 146, 46, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.dashboard-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.strategy-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.strategy-kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.kpi-value-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c2922e;
    margin: 0.5rem 0;
}

.trend-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.trend-indicator.up {
    color: #00ff88;
}

/* FPGA Infrastructure Styles */
.tech-command-center {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hero-metric-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.hero-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.latency-wave {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-top: 1rem;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(to top, #00ff88, rgba(0, 255, 136, 0.3));
    border-radius: 2px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Dynamic Island Navigation Styles */
.dynamic-island-nav {
    position: fixed;
    top: 15px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 98vw;
    overflow: hidden;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
}

.hamburger-line {
    width: 14px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.8);
    margin: 1.5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #EAB308;
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.2);
}

.mobile-nav-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.mobile-language-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
    gap: 4px;
}

.mobile-auth-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-auth-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
}

.mobile-auth-btn:hover {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
    color: #EAB308;
}

.dynamic-island-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(234, 179, 8, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(234, 179, 8, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    white-space: nowrap;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #EAB308;
    background: rgba(234, 179, 8, 0.1);
    transform: translateY(-1px);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: #000;
    background: #EAB308;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3);
}

.auth-buttons {
    display: flex;
    gap: 8px;
}

.auth-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.auth-btn:hover {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
    color: #EAB308;
    transform: translateY(-1px);
}

.register-btn svg {
    stroke-width: 1.5;
}

.login-btn svg {
    stroke-width: 1.5;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .dynamic-island-nav {
        max-width: 90vw;
        padding: 6px 12px;
        top: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .nav-controls {
        gap: 6px;
    }
}

@media (max-width: 768px) {
    .dynamic-island-nav {
        padding: 6px 12px;
        border-radius: 25px;
        max-width: 95vw;
        top: 15px;
        backdrop-filter: blur(30px);
    }
    
    .nav-content {
        gap: 8px;
        justify-content: space-between;
    }
    
    /* Hide nav links on mobile */
    .nav-links {
        display: none;
    }
    
    /* Show hamburger button */
    .hamburger-btn {
        display: flex;
        order: -1;
    }
    
    .nav-controls {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .lang-btn {
        font-size: 10px;
        padding: 4px 6px;
        min-width: 28px;
    }
    
    .auth-btn {
        width: 28px;
        height: 28px;
    }
    
    .auth-btn svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .dynamic-island-nav {
        padding: 5px 10px;
        top: 5vh !important;
        border-radius: 20px;
        max-width: 98vw;
    }
    
    .lang-btn {
        font-size: 9px;
        padding: 3px 5px;
        min-width: 26px;
    }
    
    .auth-btn {
        width: 26px;
        height: 26px;
    }
    
    .auth-btn svg {
        width: 10px;
        height: 10px;
    }
}

/* Fund Management Styles */
.fund-control-center {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.performance-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.performance-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.chart-line {
    position: relative;
    height: 60px;
    margin-top: 1rem;
}

/* ===== MODAL & CHATBOT RESPONSIVE FIXES ===== */

/* Registration Modal */
#registration-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2000 !important;
    padding: 1rem !important;
}

#registration-modal > div {
    width: 90% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
}

/* Email Form Modal */
#email-form-modal {
    padding: 1rem !important;
}

#email-form-modal > div {
    width: 90% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

/* Login Modal */
#login-modal {
    padding: 1rem !important;
}

#login-modal > div {
    width: 90% !important;
    max-width: 450px !important;
    margin: 0 auto !important;
}

/* AI Chatbot */
#ai-chatbot-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

#ai-chatbot-modal {
    position: absolute !important;
    bottom: 70px !important;
    right: 0 !important;
    width: 350px !important;
    height: 500px !important;
    max-width: calc(100vw - 40px) !important;
    max-height: calc(100vh - 120px) !important;
}

@media (max-width: 768px) {
    #ai-chatbot-container {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    #ai-chatbot-btn {
        width: 70px !important;
        height: 55px !important;
    }
    
    #ai-chatbot-modal {
        width: calc(100vw - 30px) !important;
        height: 400px !important;
        bottom: 60px !important;
        right: -15px !important;
    }
}

@media (max-width: 480px) {
    #ai-chatbot-container {
        bottom: 10px !important;
        right: 10px !important;
    }
    
    #ai-chatbot-btn {
        width: 60px !important;
        height: 50px !important;
    }
    
    #ai-chatbot-modal {
        width: calc(100vw - 20px) !important;
        height: 350px !important;
        bottom: 55px !important;
        right: -10px !important;
    }
    
    /* Modal responsive adjustments */
    #registration-modal, #email-form-modal, #login-modal {
        padding: 0.5rem !important;
    }
    
    #registration-modal > div,
    #email-form-modal > div,
    #login-modal > div {
        width: 95% !important;
        max-width: none !important;
    }
}

/* Logo Container Responsive */
.logo-container {
    position: fixed !important;
    top: 20px !important;
    left: 30px !important;
    z-index: 10 !important;
}

.main-logo {
    height: 47px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .logo-container {
        top: 15px !important;
        left: 20px !important;
    }
    
    .main-logo {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .logo-container {
        top: 10px !important;
        left: 15px !important;
    }
    
    .main-logo {
        height: 35px !important;
    }
}

/* General Mobile Overrides */
@media (max-width: 768px) {
    /* Override any fixed widths in inline styles */
    .container[style*="max-width"] {
        max-width: none !important;
        padding: 0 1rem !important;
    }
    
    /* Ensure all sections are properly padded */
    .content-section[style*="padding"] {
        padding: 3rem 1rem !important;
    }
    
    /* Fix any overflow issues */
    body, html {
        overflow-x: hidden !important;
    }
    
    /* Ensure text is readable */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
}

@media (max-width: 480px) {
    .container[style*="max-width"] {
        padding: 0 0.5rem !important;
    }
    
    .content-section[style*="padding"] {
        padding: 2rem 0.5rem !important;
    }
}

.fund-metrics-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fund-metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.metric-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0;
}

/* Enhanced Strategy Cards */
.strategy-performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.strategy-card.enhanced {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.strategy-card.enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mini-performance-line {
    position: relative;
    height: 40px;
    width: 80px;
}

.performance-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c2922e;
    border-radius: 50%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.metric-cell {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.details-btn {
    background: linear-gradient(135deg, #c2922e, #d4a853);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(194, 146, 46, 0.3);
}

/* Global Infrastructure Map */
.infrastructure-map {
    position: relative;
    height: 200px;
    margin: 2rem 0;
}

.location-node {
    position: absolute;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid #00ff88;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-node.us { top: 50%; left: 20%; }
.location-node.uk { top: 30%; left: 50%; }
.location-node.de { top: 40%; left: 60%; }
.location-node.tr { top: 60%; left: 80%; }

/* Tech Capabilities Showcase */
.tech-capabilities-showcase {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 24px;
    backdrop-filter: blur(15px);
}

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

.capabilities-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.capabilities-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.capability-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.capability-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(194, 146, 46, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 40px;
    height: 40px;
    color: #c2922e;
    background: rgba(194, 146, 46, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: 24px;
    height: 24px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.capability-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.capability-card {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 1rem;
}

.card-icon.fpga { color: #3b82f6; }
.card-icon.acceleration { color: #f59e0b; }
.card-icon.ai { color: #10b981; }
.card-icon.connectivity { color: #8b5cf6; }

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
}

.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.card-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spec-item {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #c2922e;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(194, 146, 46, 0.2);
}

/* Fund Control Center Redesigned */
.fund-control-center-redesigned {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 24px;
    backdrop-filter: blur(15px);
}

.fund-header-redesigned {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.fund-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fund-icon-container {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.fund-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.fund-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.regulatory-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.badge-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.badge-item.spk {
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.badge-item.tefas {
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.market-status-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
}

.status-dot.active {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
}

.next-update {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .fund-header-redesigned {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .regulatory-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===== Redesigned Service Cards ===== */
.service-card-redesigned {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(194, 146, 46, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards in a row have the same height */
    position: relative;
    overflow: hidden;
}

.service-card-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 146, 46, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.service-card-redesigned:hover::before {
    left: 100%;
}

.service-card-redesigned:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(194, 146, 46, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card-redesigned-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #c2922e;
    transition: transform 0.3s ease;
}

.service-card-redesigned:hover .service-card-redesigned-icon {
    transform: scale(1.1);
}

.service-card-redesigned-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-card-redesigned-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.service-card-redesigned-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-card-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-card-feature-icon {
    width: 24px;
    height: 24px;
    color: #10b981; /* Green for positive features */
}

.service-card-feature-item .icon-gold {
    color: #c2922e;
}

.service-card-feature-item .icon-blue {
    color: #3b82f6;
}

/* Ensure all content is above the pseudo-element */
.service-card-redesigned > * {
    position: relative;
    z-index: 1;
}

.btn-primary-modern {
    display: inline-block;
    background: linear-gradient(135deg, #c2922e, #a47d27);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(194, 146, 46, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    align-self: flex-start; /* Align button to the start of the flex container */
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, #d4a332, #b88e2c);
    box-shadow: 0 12px 30px rgba(194, 146, 46, 0.4);
    transform: translateY(-3px);
}

/* ===== FPGA Showcase Section ===== */
.fpga-showcase-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    padding: 4rem 0;
    overflow: hidden;
}

.fpga-visual-hub {
    position: absolute;
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(194, 146, 46, 0.8) 0%, rgba(194, 146, 46, 0.3) 60%, transparent 100%);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: pulse-core 3s infinite ease-in-out;
}

.hub-core::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(194, 146, 46, 0.5);
    border-radius: 50%;
    animation: pulse-border 3s infinite ease-in-out;
}

.hub-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(194, 146, 46, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-ring 20s linear infinite;
}

.hub-rings .ring1 { width: 160px; height: 160px; animation-duration: 20s; }
.hub-rings .ring2 { width: 220px; height: 220px; animation-duration: 25s; animation-direction: reverse; }
.hub-rings .ring3 { width: 280px; height: 280px; animation-duration: 30s; }

.hub-icon {
    position: absolute;
    z-index: 3;
    color: #fff;
}

.fpga-data-flow-lines .flow-line {
    position: absolute;
    background: linear-gradient(to right, transparent, rgba(194, 146, 46, 0.5), transparent);
    height: 1px;
    transform-origin: center;
    animation: flow-animation 10s linear infinite;
}

.fpga-metric-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(194, 146, 46, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    width: 200px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 146, 46, 0.3);
}

.card-left-top { top: 10%; left: 15%; }
.card-left-bottom { bottom: 10%; left: 15%; }
.card-right-top { top: 10%; right: 15%; }
.card-right-bottom { bottom: 10%; right: 15%; }

.metric-icon {
    margin-bottom: 1rem;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.metric-icon img { height: 100%; opacity: 0.8; }
.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #c2922e;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes pulse-core {
    0%, 100% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes pulse-border {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes rotate-ring {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== Licenses & Compliance Section ===== */
.licenses-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.compliance-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(194, 146, 46, 0.2);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    border-color: rgba(194, 146, 46, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.compliance-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compliance-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.compliance-feature .feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(194, 146, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2922e;
    transition: all 0.3s ease;
}

.compliance-feature:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(194, 146, 46, 0.15);
}

.compliance-feature .feature-icon svg {
    width: 28px;
    height: 28px;
}

.compliance-feature .feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem;
}

.compliance-feature .feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.compliance-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(194, 146, 46, 0.3), transparent);
}

.partners-grid-container {
    flex: 1.5;
}

.partners-section {
    padding: 6rem 0;
    background-color: #0c0c0f;
    position: relative;
    overflow: hidden;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.partner-logo-container {
    perspective: 800px;
    transition: transform 0.4s ease;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: rgba(18, 18, 22, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    filter: grayscale(80%) brightness(0.9);
}

.partner-logo-container:hover {
    transform: translateY(-10px);
}

.partner-logo-container:hover .partner-logo {
    filter: grayscale(0%) brightness(1.1);
    transform: translateZ(30px) rotateY(5deg);
    background: rgba(25, 25, 30, 0.7);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(194, 146, 46, 0.3);
}

.partner-logo img {
    max-width: 160px;
    height: auto;
}

/* ===== Redesigned Trust Section ===== */
.trust-section-redesigned {
    position: relative;
    padding: 8rem 0;
    background-color: #0c0c0f; /* Match dark background */
    overflow: hidden;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

.cta-social-links .social-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cta-social-links .social-icon:hover img {
    opacity: 1;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
    transform-style: preserve-3d;
}

.logo-3d-container {
    perspective: 500px;
    display: inline-block;
}

.logo-3d-container:hover .logo {
    transform: translateZ(20px) rotateY(10deg);
    filter: drop-shadow(0 0 10px var(--gold-accent));
}

.logo-container-3d {
    perspective: 800px;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container-3d:hover {
    transform: translateY(-5px);
}

.logo-container-3d .main-card-icon {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
    transform-style: preserve-3d;
}

.logo-container-3d:hover .main-card-icon {
    transform: translateZ(40px) rotateY(-10deg);
    filter: drop-shadow(0 0 15px var(--gold-accent));
}

/* ===== Contact CTA Card ===== */
.contact-section {
    padding: 6rem 0;
}

.contact-cta-card {
    position: relative;
    background: linear-gradient(140deg, rgba(40, 42, 54, 0.6), rgba(30, 32, 42, 0.5));
    border: 1px solid rgba(194, 146, 46, 0.2);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}

.cta-background-visuals .visual-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
    animation: float 20s infinite ease-in-out alternate;
}

.visual-shape.shape1 {
    width: 300px;
    height: 300px;
    background: #c2922e;
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.visual-shape.shape2 {
    width: 250px;
    height: 250px;
    background: #3b82f6;
    bottom: -80px;
    right: -80px;
    animation-duration: 22s;
    animation-delay: -5s;
}

.visual-shape.shape3 {
    width: 200px;
    height: 200px;
    background: #10b981;
    bottom: 100px;
    left: 50px;
    animation-duration: 18s;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(20px) translateX(0px) scale(1); }
    100% { transform: translateY(-20px) translateX(20px) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(194, 146, 46, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #c2922e;
    border: 1px solid rgba(194, 146, 46, 0.2);
}

.cta-icon svg {
    width: 32px;
    height: 32px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-button {
    margin-bottom: 2.5rem;
}

.cta-social-links {
    display: flex;
    gap: 1.5rem;
}

.cta-social-links .social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-social-links .social-icon:hover {
    background: rgba(194, 146, 46, 0.15);
    transform: translateY(-3px);
}

.cta-social-links .social-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cta-social-links .social-icon:hover img {
    opacity: 1;
}


/* ===== MODERN FOOTER SECTION ===== */
.footer {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(15, 15, 20, 0.98) 50%, 
        rgba(8, 8, 12, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(194, 146, 46, 0.2);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(194, 146, 46, 0.08) 0%, transparent 60%);
    z-index: -1;
}

.footer-3d-container {
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 120px;
    height: 40px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(194, 146, 46, 0.3));
}

.footer-logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #c2922e;
    margin: 0;
    text-shadow: 0 2px 10px rgba(194, 146, 46, 0.3);
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #c2922e, transparent);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.footer-link:hover {
    color: #c2922e;
    background: rgba(194, 146, 46, 0.08);
    border-color: rgba(194, 146, 46, 0.2);
    transform: translateX(5px);
}

.footer-link-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.footer-link:hover .footer-link-icon {
    color: #c2922e;
    transform: scale(1.1);
}

.footer-offices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.office-item:hover {
    background: rgba(194, 146, 46, 0.05);
    border-color: rgba(194, 146, 46, 0.15);
    transform: translateY(-2px);
}

.office-flag {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.office-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(194, 146, 46, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-contact-item:hover {
    background: rgba(194, 146, 46, 0.08);
    border-color: rgba(194, 146, 46, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 146, 46, 0.15);
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: #c2922e;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(194, 146, 46, 0.4));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(194, 146, 46, 0.3), 
        rgba(255, 255, 255, 0.1), 
        rgba(194, 146, 46, 0.3), 
        transparent);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-bottom-left .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-right .disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    text-align: right;
    max-width: 400px;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-main {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        width: 100px;
        height: 32px;
    }
    
    .footer-description {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-right .disclaimer {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        gap: 1rem;
    }
    
    .footer-contact-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .office-item {
        padding: 0.5rem;
        justify-content: center;
    }
    
    .footer-link {
        padding: 0.75rem;
        justify-content: center;
    }
}

/* ===== TECHNOLOGY SECTION ===== */
.tech-section {
    padding: 6rem 0;
    position: relative;
    overflow: visible;
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.tech-main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
    position: relative;
}

.tech-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 800;
    color: #F59E0B;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    place-items: center;
}

.tech-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: none;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.tech-name {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    line-height: 1.3;
}

.tech-card .tech-subtitle {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tech-description {
    font-size: clamp(0.7rem, 1.8vw, 0.75rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Responsive breakpoints for technology section */
@media (max-width: 1200px) {
    .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 1.25rem;
        max-width: 1000px;
        justify-items: center;
    }
    
    .tech-card {
        max-width: 240px;
    }
    
    .tech-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .tech-section {
        padding: 4rem 0;
    }
    
    .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 1rem;
        max-width: 500px;
        justify-items: center;
    }
    
    .tech-card {
        max-width: 220px;
        min-height: 180px;
        padding: 2rem 1.2rem;
    }
    
    .tech-container {
        padding: 0 1rem;
    }
    
    .tech-section .tech-subtitle {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .tech-section {
        padding: 3rem 0;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        max-width: 280px;
        justify-items: center;
    }
    
    .tech-card {
        max-width: 260px;
        min-height: 160px;
        padding: 1.5rem 1rem;
    }
    
    .tech-container {
        padding: 0 0.5rem;
    }
    
    .tech-main-title {
        margin-bottom: 1.5rem;
    }
    
    .tech-section .tech-subtitle {
        margin-bottom: 2rem;
    }
}

/* ===== PERFORMANCE SECTION ===== */
.performance-section {
    padding: 6rem 0;
    position: relative;
    overflow: visible;
    background: transparent;
    margin-bottom: 6rem;
}

.performance-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.performance-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
    position: relative;
    text-align: center;
}

.performance-description {
    text-align: center;
    margin-bottom: 4rem;
}

.performance-description p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.performance-links {
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: none;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.performance-link-item {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.performance-link-item:last-child {
    margin-bottom: 0;
}

.performance-link {
    color: #EAB308;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.performance-link:hover {
    color: #F59E0B;
}

.performance-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    align-items: stretch;
    justify-content: space-between;
}

.performance-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: none;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    width: calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
    min-width: 200px;
    flex-shrink: 0;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.performance-value {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 800;
    color: #EAB308;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(234, 179, 8, 0.4);
    line-height: 1.2;
}

.performance-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.performance-card .performance-description {
    font-size: clamp(0.7rem, 1.8vw, 0.75rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Responsive breakpoints for performance section */
@media (max-width: 1200px) {
    .performance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        max-width: 800px;
        justify-items: center;
    }
    
    .performance-card {
        max-width: 250px;
    }
    
    .performance-container {
        padding: 0 1.5rem;
    }
    
    .performance-links {
        max-width: 500px;
        padding: 2rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .performance-section {
        padding: 4rem 0;
        margin-bottom: 4rem;
    }
    
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
        justify-items: center;
    }
    
    .performance-card {
        max-width: 220px;
        min-height: 160px;
        padding: 2rem 1.2rem;
    }
    
    .performance-container {
        padding: 0 1rem;
    }
    
    .performance-title {
        margin-bottom: 3rem;
    }
    
    .performance-description {
        margin-bottom: 3rem;
    }
    
    .performance-links {
        max-width: 450px;
        padding: 1.5rem 1rem;
        margin: 0 auto 3rem auto;
    }
}

@media (max-width: 480px) {
    .performance-section {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        justify-items: center;
    }
    
    .performance-card {
        max-width: 260px;
        min-height: 140px;
        padding: 1.5rem 1rem;
    }
    
    .performance-container {
        padding: 0 0.5rem;
    }
    
    .performance-title {
        margin-bottom: 2rem;
    }
    
    .performance-description {
        margin-bottom: 2rem;
    }
    
    .performance-links {
        max-width: 350px;
        padding: 1.2rem 0.8rem;
        margin: 0 auto 2rem auto;
    }
}
