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

:root {
    --primary-color: #0071e3;
    --secondary-color: #1d1d1f;
    --text-color: #1d1d1f;
    --light-text: #86868b;
    --bg-light: #f5f5f7;
    --bg-white: #ffffff;
    --accent-blue: #0071e3;
    --accent-gray: #f5f5f7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 70px;
    width: auto;
    color: #1b1e3b;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.lang-switcher {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    background: rgba(0, 113, 227, 0.1);
    color: var(--primary-color);
}

.hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbfbfd;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    text-align: left;
    padding-right: 40px;
}

.hero-globe-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.globe-container {
    position: relative;
    width: 480px;
    height: 480px;
    transform: translateX(50%) translateY(80px);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.globe-video,
.globe-image-fallback,
.globe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: floatGlobe 3s ease-in-out infinite, rotateGlobe 30s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 113, 227, 0.2));
}

.globe-video {
    display: block;
}

.globe-text-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    animation: rotateText 20s linear infinite;
}

.rotating-text {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

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

.globe-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.globe-logo-svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(100, 100, 100, 0.3)) 
            drop-shadow(0 4px 12px rgba(80, 80, 80, 0.2))
            drop-shadow(0 6px 16px rgba(60, 60, 60, 0.15));
}

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

@keyframes floatGlobe {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

.hero-chip-column {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-robot-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 40px;
    overflow: visible;
    perspective: 1200px;
    perspective-origin: center center;
    transform: translateZ(0);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
}

.ai-robot-container:hover {
    transform: translateZ(0) scale(1.02);
}

.ai-robot-container:active {
    transform: translateZ(0) scale(0.98);
}


/* Sections with Robot */
section[id] {
    position: relative;
    padding: 80px 0;
}

/* Robot Section Spot - Talking Robot */
.section-robot-spot {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1000;
    will-change: opacity, transform;
}

.section-robot-spot.active {
    opacity: 1;
    animation: robotFloat 3s ease-in-out infinite;
}

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

.robot-clone {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.robot-clone .robot-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.25)) contrast(1.1);
    transition: transform 0.3s ease;
}

/* Talking Animation - when robot speaks */
.section-robot-spot.talking .robot-clone {
    animation: robotTalk 0.3s ease-in-out infinite;
}

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

/* Speech Control Button */
.speech-control {
    margin-top: 12px;
}

.speech-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0071e3, #005bb5);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.speech-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 113, 227, 0.4);
}

.speech-toggle:active {
    transform: scale(0.95);
}

.section-robot-spot.talking .speech-toggle {
    animation: pulseButton 0.6s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 113, 227, 0.6);
    }
}

/* Speech Permission Modal */
.speech-permission-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.speech-permission-modal.active {
    opacity: 1;
    pointer-events: all;
}

.speech-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.speech-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.speech-permission-modal.active .speech-modal-content {
    transform: scale(1);
}

.speech-modal-robot {
    font-size: 64px;
    margin-bottom: 20px;
    animation: robotBounce 2s ease-in-out infinite;
}

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

.speech-modal-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.speech-modal-content p {
    font-size: 16px;
    color: #86868b;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.section-name {
    font-size: 18px;
    font-weight: 600;
    color: #0071e3;
    margin: 16px 0 24px 0 !important;
    padding: 12px 20px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 12px;
}

.speech-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.speech-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.speech-btn-yes {
    background: linear-gradient(135deg, #0071e3, #005bb5);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.speech-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.speech-btn-yes:active {
    transform: translateY(0);
}

.speech-btn-no {
    background: rgba(0, 0, 0, 0.05);
    color: #86868b;
}

.speech-btn-no:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
}

@media (max-width: 768px) {
    .speech-modal-content {
        padding: 32px 24px;
        max-width: 90%;
    }
    
    .speech-modal-robot {
        font-size: 48px;
    }
    
    .speech-modal-content h3 {
        font-size: 22px;
    }
    
    .speech-modal-content p {
        font-size: 14px;
    }
    
    .section-name {
        font-size: 16px;
    }
    
    .speech-modal-buttons {
        flex-direction: column;
    }
    
    .speech-btn {
        padding: 14px 20px;
    }
}

@media (max-width: 768px) {
    .section-robot-spot {
        right: 10px;
    }
    
    .robot-clone {
        width: 90px;
        height: 90px;
    }
    
    .section-robot-spot.talking::before {
        font-size: 20px;
        top: -15px;
        right: -5px;
    }
}

.ai-robot-container::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.5;
}

.robot-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.08));
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    transition: filter 0.5s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* When minimized - add glow */
.ai-robot-container[style*="fixed"] .robot-svg {
    filter: drop-shadow(0 0 20px rgba(0, 113, 227, 0.3)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* GPU acceleration for moving parts */
.robot-svg rect[x="140"],
.robot-svg rect[x="248"],
.robot-svg rect[x="175"][y="305"],
.robot-svg rect[x="210"][y="305"],
.robot-svg circle[cx="146"],
.robot-svg circle[cx="254"],
.robot-head-main {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.speech-bubble {
    position: absolute;
    top: 10%;
    left: -20%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 18px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 240px;
    opacity: 0;
}

.bubble-1,
.bubble-2,
.bubble-3 {
    will-change: transform, opacity;
}

.interaction-bubble {
    position: absolute;
    top: 15%;
    left: -22%;
    z-index: 100;
    animation: none !important;
    pointer-events: none;
}

/* Robot Modal Styles */
.robot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.robot-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.robot-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.robot-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.robot-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.robot-avatar {
    font-size: 64px;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

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

.robot-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 8px 0;
}

.robot-modal-subtitle {
    font-size: 15px;
    color: #86868b;
    margin: 0;
}

.robot-modal-options {
    display: grid;
    gap: 12px;
}

.robot-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 113, 227, 0.03);
    border: 2px solid rgba(0, 113, 227, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.robot-option:hover {
    background: rgba(0, 113, 227, 0.08);
    border-color: rgba(0, 113, 227, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.15);
}

.robot-option-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.robot-option-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 4px 0;
}

.robot-option-text p {
    font-size: 13px;
    color: #86868b;
    margin: 0;
}

/* Form Modal Styles */
.robot-form-content {
    max-width: 450px;
}

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

.robot-input,
.robot-textarea,
.robot-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', -apple-system, sans-serif;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.robot-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.robot-input:focus,
.robot-textarea:focus,
.robot-form select:focus {
    outline: none;
    border-color: #0071e3;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.robot-form select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230071e3' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
}

.robot-textarea {
    resize: vertical;
    min-height: 100px;
}

.robot-submit-btn {
    background: linear-gradient(135deg, #0071e3, #005bb5);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.robot-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

.robot-submit-btn:active {
    transform: translateY(0);
}

/* Success Toast */
.robot-success-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    border-left: 4px solid #34c759;
}

.success-icon {
    width: 32px;
    height: 32px;
    background: #34c759;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.robot-success-toast strong {
    display: block;
    color: #1d1d1f;
    font-size: 15px;
    margin-bottom: 2px;
}

.robot-success-toast p {
    margin: 0;
    color: #86868b;
    font-size: 13px;
}

/* Dark Mode Support for Robot Forms */
.dark .robot-modal-content {
    background: #1f2937;
}

.dark .robot-modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.dark .robot-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dark .robot-modal-header h3 {
    color: #f3f4f6;
}

.dark .robot-modal-subtitle {
    color: #9ca3af;
}

.dark .robot-option {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.dark .robot-option:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.dark .robot-option-text h4 {
    color: #f3f4f6;
}

.dark .robot-option-text p {
    color: #9ca3af;
}

.dark .robot-input,
.dark .robot-textarea,
.dark .robot-form select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f3f4f6;
}

.dark .robot-input:focus,
.dark .robot-textarea:focus,
.dark .robot-form select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
}

.dark .robot-input::placeholder,
.dark .robot-textarea::placeholder {
    color: #9ca3af;
}

.dark .robot-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
}

/* Responsive Modal */
@media (max-width: 768px) {
    .robot-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .robot-modal-header h3 {
        font-size: 20px;
    }
    
    .robot-option {
        padding: 16px;
    }
    
    .robot-option-icon {
        font-size: 28px;
    }
    
}

.speech-bubble::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid rgba(255, 255, 255, 0.95);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.speech-bubble p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.speech-bubble .speech-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #86868b;
    margin-top: 4px;
    line-height: 1.4;
}


.hidden-chip-elements,
.chip-animation {
    display: none;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0px, transparent 1px, transparent 10px, rgba(0, 0, 0, 0.02) 11px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0px, transparent 1px, transparent 10px, rgba(0, 0, 0, 0.02) 11px);
    z-index: 0;
    border-radius: 24px;
}


.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chip-container {
    position: relative;
    width: 500px;
    height: 500px;
    transform-style: flat;
    transform: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chip-container:hover {
    transform: scale(1.01);
}


.chip-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
    transition: filter 0.4s ease;
}

.chip-container:hover .chip-svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.chip-shadow {
    fill: #000000;
    opacity: 0.03;
    filter: blur(6px);
}

.chip-body-outer {
    fill: url(#chipMetallic);
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
    filter: url(#depth3d);
    transition: all 0.4s ease;
}

.chip-container:hover .chip-body-outer {
    stroke: rgba(0, 168, 255, 0.3);
    stroke-width: 1.5;
}

.chip-bevel {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 0.5;
    opacity: 0.8;
}

.chip-highlight {
    fill: url(#chipHighlight);
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.chip-container:hover .chip-highlight {
    opacity: 0.8;
}

@keyframes chip-pulse {
    0%, 100% {
        stroke-width: 3;
        opacity: 0.8;
    }
    50% {
        stroke-width: 4;
        opacity: 1;
    }
}

.solder-pad {
    fill: radial-gradient(circle, #d4af37 0%, #b8941e 70%);
    fill: #c9a961;
    stroke: none;
    opacity: 0.6;
    filter: blur(0.5px);
    transition: opacity 0.3s ease;
}

.chip-container:hover .solder-pad {
    opacity: 0.75;
}

.pin {
    fill: url(#pinGradient);
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 0.5;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    opacity: 0.95;
}

.chip-container:hover .pin {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25)) 
            drop-shadow(0 0 6px rgba(0, 168, 255, 0.3));
}

.trace {
    fill: none;
    stroke: url(#traceGradient);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.4;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
}

.node {
    fill: #00a8ff;
    filter: url(#glow);
    opacity: 0.8;
}

.cpu-core {
    fill: #0f1729;
    stroke: #00d4ff;
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 0 20px rgba(0, 212, 255, 0.4))
            url(#innerShadow);
}

.chip-logo {
    color: #00d4ff;
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6)) 
            drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.chip-logo-group {
    opacity: 0.95;
}

.hologram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 100%
    );
    pointer-events: none;
    opacity: 0.4;
}

.process-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 113, 227, 0);
}

.process-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.label-icon {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-label:hover .label-icon {
    transform: scale(1.2) rotate(5deg);
    filter: grayscale(0);
}

.label-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.label-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.label-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.label-1 {
    top: 8%;
    left: -8%;
    opacity: 1;
}

.label-2 {
    top: 50%;
    right: -12%;
    transform: translateY(-50%);
    opacity: 1;
}

.label-3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.data-flow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-text-column h1 {
    text-align: left;
}

.hero-text-column h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.05;
    margin-bottom: 8px;
    color: var(--text-color);
}

.hero-tagline {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-description {
    font-size: clamp(19px, 2.5vw, 28px);
    line-height: 1.4;
    color: var(--light-text);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.link-primary {
    color: var(--primary-color);
    font-size: 21px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: #0077ed;
}

.link-secondary {
    color: var(--primary-color);
    font-size: 21px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: #0077ed;
}

/* Hero Visual Section */
.hero-visual {
    background: #f5f5f7;
    padding: 80px 24px;
}

.visual-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.visual-card {
    background: white;
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card-icon svg {
    display: block;
    margin: 0 auto;
}

.visual-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.visual-card p {
    font-size: 17px;
    color: var(--light-text);
    line-height: 1.5;
}


.btn {
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #0077ed;
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

section {
    padding: 100px 24px;
}

#teknolojiler,
#hizmetler,
#hakkimizda,
#projeler,
#ekip {
    max-width: 1200px;
    margin: 0 auto;
}

#teknolojiler {
    background: #ffffff;
}

#hizmetler {
    background: #f5f5f7;
    padding-left: 0;
    padding-right: 0;
}

#hizmetler > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

#hakkimizda {
    background: #ffffff;
}

#projeler {
    background: #f5f5f7;
    padding-left: 0;
    padding-right: 0;
}

#projeler > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

#ekip {
    background: #ffffff;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 21px);
    color: var(--light-text);
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.tech-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tech-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--bg-light);
    color: var(--primary-color);
}

.tech-icon svg {
    display: block;
}

.tech-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-card p {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-tag {
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 18px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--light-text);
    font-size: 17px;
    line-height: 1.6;
}

.service-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-icon svg {
    display: block;
}

.stats-section {
    background: #f5f5f7;
    color: var(--text-color);
    border-radius: 18px;
    padding: 60px 40px;
    margin: 60px auto;
    max-width: 1200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-item h3 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.stat-item p {
    font-size: 17px;
    color: var(--light-text);
}

.tech-showcase {
    background: #f5f5f7;
    padding: 100px 24px;
    margin: 0;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 60px;
}

.tech-logo-item {
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tech-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tech-logo-item .icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.tech-logo-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 240px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.project-category {
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.project-content {
    padding: 32px;
}

.project-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.project-content > p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.project-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item-small {
    display: flex;
    flex-direction: column;
}

.stat-item-small strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-item-small span {
    font-size: 12px;
    color: var(--light-text);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.avatar-placeholder {
    font-size: 64px;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.team-cta {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
}

.team-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.team-cta p {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 100px 40px;
    border-radius: 18px;
    margin: 80px 0;
}

.cta-section h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.9;
}

footer {
    background: #f5f5f7;
    color: var(--text-color);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d2d2d7;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-svg {
    height: 70px;
    width: auto;
    color: #1b1e3b;
    transition: transform 0.3s ease;
}

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

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-about p {
    color: var(--light-text);
    line-height: 1.6;
    margin-top: 12px;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--light-text);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-text);
    font-size: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-column {
        text-align: center;
        padding-right: 0;
    }

    .hero-globe-column {
        justify-content: center;
    }

    .globe-container {
        width: 350px;
        height: 350px;
        transform: translateX(0);
    }
    
    .globe-video,
    .globe-image-fallback,
    .globe-image {
        animation: floatGlobe 2s ease-in-out infinite, rotateGlobe 30s linear infinite;
    }
    
    .globe-logo-overlay {
        width: 100px;
        height: 100px;
    }
    
    .rotating-text {
        font-size: 10px;
        letter-spacing: 5px;
    }

    .hero-chip-column {
        min-height: 400px;
    }

    .chip-container {
        width: 320px;
        height: 320px;
    }

    .grid-background {
        width: 400px;
        height: 400px;
    }

    .process-label {
        padding: 12px 16px;
        font-size: 12px;
    }

    .label-icon {
        font-size: 18px;
    }

    .label-title {
        font-size: 13px;
    }

    .label-subtitle {
        font-size: 9px;
    }

    .hero-text-column h1 {
        font-size: clamp(40px, 10vw, 56px);
        text-align: center;
    }

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

    .speech-bubble {
        left: 5%;
        right: 5%;
        min-width: auto;
        top: 5%;
    }

    .speech-bubble p {
        font-size: 16px;
    }

    .speech-bubble .speech-subtitle {
        font-size: 12px;
    }

    .hero-tagline {
        font-size: clamp(24px, 6vw, 40px);
    }

    .hero-description {
        font-size: clamp(17px, 4vw, 21px);
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .link-primary, .link-secondary {
        font-size: 19px;
    }

    .visual-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 80px 24px;
    }

    .tech-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 40px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-top {
        padding: 60px 24px;
    }

    .footer-cta h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .footer-cta p {
        font-size: 16px;
    }

    .footer-cta-buttons {
        flex-direction: column;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }

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

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

    .team-cta {
        padding: 40px 24px;
    }

    .team-cta h3 {
        font-size: 24px;
    }
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 1;
    transform: scale(1);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 9999;
    transform-origin: left;
}

/* Success Modal */
.success-modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    margin: 0 !important;
    padding: 0 !important;
}

.success-modal.active {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.success-modal-content {
    background: white !important;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    margin: 0 auto !important;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    animation: checkmarkDraw 0.6s ease-out 0.2s both;
}

@keyframes checkmarkDraw {
    from {
        transform: scale(0) rotate(-45deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

.success-icon svg circle:first-child {
    animation: circleScale 0.5s ease-out 0.2s both;
}

.success-icon svg circle:nth-child(2) {
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    animation: circleDraw 0.6s ease-out 0.3s forwards;
}

.success-icon svg path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: checkDraw 0.4s ease-out 0.7s forwards;
}

@keyframes circleScale {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 0.1;
    }
}

@keyframes circleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Server Light Blinking Animation */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.2;
    }
}

/* Server Red Light - Realistic Server Activity */
@keyframes serverRedPulse {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 2px rgba(239, 68, 68, 0.3);
        transform: scale(1);
    }
    25% {
        opacity: 0.7;
        box-shadow: 0 0 4px rgba(239, 68, 68, 0.6), 0 0 8px rgba(239, 68, 68, 0.3);
        transform: scale(1.05);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(239, 68, 68, 1), 0 0 16px rgba(239, 68, 68, 0.6), 0 0 24px rgba(239, 68, 68, 0.3);
        transform: scale(1.1);
    }
    75% {
        opacity: 0.8;
        box-shadow: 0 0 6px rgba(239, 68, 68, 0.8), 0 0 12px rgba(239, 68, 68, 0.4);
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        box-shadow: 0 0 3px rgba(239, 68, 68, 0.5);
        transform: scale(1);
    }
}

.server-light {
    animation: blink 1.5s ease-in-out infinite;
}

.server-light.red-light {
    animation: serverRedPulse 2s ease-in-out infinite !important;
    background-color: #ef4444 !important;
}

/* Ensure red lights are visible and glowing */
.red-light {
    background-color: #ef4444 !important;
    animation: serverRedPulse 2s ease-in-out infinite !important;
}

.server-light:nth-child(1) {
    animation-delay: 0s;
}

.server-light:nth-child(2) {
    animation-delay: 0.2s;
}

.server-light:nth-child(3) {
    animation-delay: 0.4s;
}

.server-light:nth-child(4) {
    animation-delay: 0.6s;
}

.server-light:nth-child(5) {
    animation-delay: 0.8s;
}

.server-light:nth-child(6) {
    animation-delay: 1s;
}

.server-light:nth-child(7) {
    animation-delay: 1.2s;
}

.server-light:nth-child(8) {
    animation-delay: 0.1s;
}

/* Red light specific delays for staggered effect */
.server-light.red-light:nth-of-type(1) {
    animation-delay: 0s;
}

.server-light.red-light:nth-of-type(2) {
    animation-delay: 0.3s;
}

.server-light.red-light:nth-of-type(3) {
    animation-delay: 0.6s;
}

.server-light.red-light:nth-of-type(4) {
    animation-delay: 0.9s;
}

.server-light.red-light:nth-of-type(5) {
    animation-delay: 1.2s;
}

.server-light.red-light:nth-of-type(6) {
    animation-delay: 0.15s;
}

.server-light.red-light:nth-of-type(7) {
    animation-delay: 0.45s;
}

.server-light.red-light:nth-of-type(8) {
    animation-delay: 0.75s;
}

.server-light.red-light:nth-of-type(9) {
    animation-delay: 1.05s;
}

.server-light.red-light:nth-of-type(10) {
    animation-delay: 1.35s;
}

/* Code Editor Blinking Animation */
@keyframes codeBlink {
    0%, 60% {
        opacity: 1;
        filter: brightness(1);
        text-shadow: 0 0 0px currentColor;
    }
    61%, 100% {
        opacity: 0.4;
        filter: brightness(1.8);
        text-shadow: 0 0 8px currentColor, 0 0 12px currentColor;
    }
}

.code-keyword {
    animation: codeBlink 2.5s ease-in-out infinite;
    font-weight: 600;
}

.code-keyword:nth-of-type(1) {
    animation-delay: 0s;
}

.code-keyword:nth-of-type(2) {
    animation-delay: 0.3s;
}

.code-keyword:nth-of-type(3) {
    animation-delay: 0.6s;
}

.code-keyword:nth-of-type(4) {
    animation-delay: 0.9s;
}

.code-keyword:nth-of-type(5) {
    animation-delay: 1.2s;
}

.code-keyword:nth-of-type(6) {
    animation-delay: 1.5s;
}

.code-keyword:nth-of-type(7) {
    animation-delay: 0.15s;
}

.code-keyword:nth-of-type(8) {
    animation-delay: 0.45s;
}

.code-keyword:nth-of-type(9) {
    animation-delay: 0.75s;
}

.code-keyword:nth-of-type(10) {
    animation-delay: 1.05s;
}

/* Code Editor Styles - Make code more visible */
.code-line {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.8;
}

.code-line span {
    display: inline-block;
}

.code-line .text-purple-400 {
    color: #c084fc !important;
}

.code-line .text-blue-300 {
    color: #93c5fd !important;
}

.code-line .text-yellow-300 {
    color: #fde047 !important;
}

.code-line .text-green-300 {
    color: #86efac !important;
}

.code-line .text-orange-400 {
    color: #fb923c !important;
}

.code-line .text-gray-400 {
    color: #9ca3af !important;
}

/* Logo Slider Animation */
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    perspective: 1000px;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.dark .logo-slider::before {
    background: linear-gradient(
        to right,
        rgba(17, 24, 39, 1) 0%,
        rgba(17, 24, 39, 0.95) 20%,
        rgba(17, 24, 39, 0.7) 50%,
        rgba(17, 24, 39, 0) 100%
    );
}

.dark .logo-slider::after {
    background: linear-gradient(
        to left,
        rgba(17, 24, 39, 1) 0%,
        rgba(17, 24, 39, 0.95) 20%,
        rgba(17, 24, 39, 0.7) 50%,
        rgba(17, 24, 39, 0) 100%
    );
}

.logo-track {
    display: flex;
    gap: 5rem;
    animation: scroll 50s linear infinite;
    width: max-content;
}

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

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) opacity(0.3) blur(1px);
    transform: scale(0.8);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dark .logo-item {
    background: rgba(255, 255, 255, 0.05);
}

.logo-item:hover {
    transform: scale(1.35) translateY(-12px) rotateY(5deg);
    filter: grayscale(0%) opacity(1) blur(0px) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    z-index: 10;
}

.dark .logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    filter: grayscale(0%) opacity(1) blur(0px) drop-shadow(0 25px 50px rgba(255, 255, 255, 0.15));
}

.logo-item img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
    }
}

.logo-item:nth-child(odd) {
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-item:nth-child(even) {
    animation: logoFloat 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Mobile adjustments for logo slider */
@media (max-width: 768px) {
    .logo-slider {
        padding: 2rem 0;
        margin: 0 -24px;
    }
    
    .logo-slider::before,
    .logo-slider::after {
        width: 0px;
        display: none;
    }
    
    .logo-track {
        gap: 2.5rem;
        animation: scroll 35s linear infinite;
    }
    
    .logo-item {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-item:hover {
        transform: scale(1.1) translateY(-4px);
    }
    
    .logo-item img {
        height: 3rem !important;
    }
}

/* Mobile responsive styles for hero section */
@media (max-width: 1023px) {
    /* Add more padding on mobile */
    #home {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    /* Make hero section code and server rack visible and properly positioned on mobile */
    #home .lg\:grid-cols-2 > div:last-child {
        position: relative;
        margin-top: 3rem;
        overflow: visible;
    }
    
    /* Adjust code editor size on mobile */
    #home .lg\:grid-cols-2 > div:last-child > div {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    /* Adjust server rack position for mobile */
    #home .lg\:grid-cols-2 > div:last-child .absolute {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 2rem auto 0;
        max-width: 200px;
    }
    
    /* Adjust code font size for mobile */
    .code-line {
        font-size: 12px;
        line-height: 1.6;
    }
}

.success-modal-content h2 {
    margin: 0 0 16px 0;
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
}

.success-modal-content p {
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.success-detail {
    font-size: 14px;
    color: #999;
    margin-bottom: 32px !important;
}

.success-detail strong {
    color: #34C759;
    font-weight: 600;
}

.success-close-btn {
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.success-close-btn:active {
    transform: translateY(0);
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 24px 80px;
    background: #f5f5f7;
    scroll-margin-top: 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1d1d1f;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    position: relative;
    z-index: 1;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: white;
}

.dark .form-group input,
.dark .form-group select,
.dark .form-group textarea {
    background: #374151;
    border-color: #4b5563;
    color: #f3f4f6;
}

.dark .form-group input:focus,
.dark .form-group select:focus,
.dark .form-group textarea:focus {
    background: #4b5563;
    border-color: #3b82f6;
    color: #ffffff;
}

.dark .form-group label {
    color: #e5e7eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-status {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #10b981;
    display: block;
}

.form-status.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 2px solid #ef4444;
    display: block;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 32px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Contact Info Cards */
.contact-info-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .success-modal-content {
        padding: 40px 24px;
    }
    
    .success-modal-content h2 {
        font-size: 28px;
    }
    
    .success-modal-content p {
        font-size: 15px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon svg {
        width: 70px;
        height: 70px;
    }
}

/* Products Page Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Line clamp utility for text truncation */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trusted Companies Section */
.trusted-companies {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    text-align: center;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-companies .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.trusted-companies .section-subtitle {
    font-size: 21px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.company-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    filter: grayscale(0%);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.15);
    transform: scale(1.1);
}

/* Company logos are now loaded from external sources with their original colors */

@media (max-width: 768px) {
    .trusted-companies {
        padding: 60px 24px;
    }
    
    .trusted-companies .section-title {
        font-size: 36px;
    }
    
    .trusted-companies .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .company-logo {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .company-logo {
        width: 80px;
        height: 40px;
    }
}
