/* ============================================
   index-bundle.css
   Consolidated CSS bundle for index page
   Generated: 2026-02-24
   ============================================ */

/* === css/base/variables.css === */
:root {
    --primary: #6366f1;
    --primary-dark: #4338ca;
    --secondary: #06b6d4;
    --accent: #f43f5e;
    --accent2: #8b5cf6;
    --accent3: #10b981;
    --light: #f8fafc;
    --dark: #030712;
    --text: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --neon-glow: 0 0 10px rgba(99, 102, 241, 0.5), 0 0 20px rgba(99, 102, 241, 0.3), 0 0 30px rgba(99, 102, 241, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === css/base/reset.css === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Clash Display', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../../fonts/ClashDisplay-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    color: var(--text);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* perspective: 1000px; */ /* Removed: This breaks position:fixed behavior */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 4px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

/* Text Center Helper */
.text-center {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* === css/base/backgrounds.css === */
/* Background effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--dark) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 5% 25%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 95% 75%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.noise-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1IiBkPSJNMCAwaDMwMHYzMDBIMHoiLz48L3N2Zz4=');
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
    will-change: transform;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glitch::before {
    left: -2px;
    text-shadow: 2px 0 var(--accent);
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: 2px;
    text-shadow: -2px 0 var(--secondary);
    animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 85% { transform: none; opacity: 1; }
    86% { transform: skew(0.5deg, 0deg); opacity: 1; }
    87% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    88% { transform: skew(0.5deg, 0deg); opacity: 1; }
    89% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    90% { transform: skew(0.5deg, 0deg); opacity: 1; }
    91% { transform: skew(0deg, 0deg); opacity: 1; }
    92% { transform: skew(0.5deg, 0deg); opacity: 1; }
    93% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    94% { transform: skew(0.5deg, 0deg); opacity: 1; }
    95% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    96%, 100% { transform: none; opacity: 1; }
}

@keyframes glitch-2 {
    0%, 85% { transform: none; opacity: 1; }
    86% { transform: skew(0.5deg, 0deg); opacity: 1; }
    87% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    88% { transform: skew(0.5deg, 0deg); opacity: 1; }
    89% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    90% { transform: skew(0.5deg, 0deg); opacity: 1; }
    91% { transform: skew(0deg, 0deg); opacity: 1; }
    92% { transform: skew(0.5deg, 0deg); opacity: 1; }
    93% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    94% { transform: skew(0.5deg, 0deg); opacity: 1; }
    95% { transform: skew(-0.5deg, 0deg); opacity: 1; }
    96%, 100% { transform: none; opacity: 1; }
}

/* Gradient text with glitch effect */
.gradient-text.glitch {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.glitch::before,
.gradient-text.glitch::after {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clip-path: none;
    background-color: transparent;
}

/* New simplified glitch effect for all devices */
.glitch,
.glitch::before,
.glitch::after {
    backface-visibility: hidden;
}

/* Extra styles for better mobile compatibility */
@media all {
    .gradient-text.glitch::before,
    .gradient-text.glitch::after {
        clip-path: none !important;
        background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--accent)) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
}

/* Mobile compatibility layer */
@media (max-width: 768px) {
    /* Set important properties for glitch effect on mobile */
    .gradient-text.glitch {
        position: relative !important;
        display: inline-block !important;
    }
    
    .gradient-text.glitch::before,
    .gradient-text.glitch::after {
        content: attr(data-text) !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 5 !important;
        clip-path: none !important;
        background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--accent)) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
    
    .gradient-text.glitch::before {
        left: -2px !important;
        text-shadow: 2px 0 var(--accent) !important;
        animation: glitch-1 1.5s infinite linear alternate-reverse !important;
    }
    
    .gradient-text.glitch::after {
        left: 2px !important;
        text-shadow: -2px 0 var(--secondary) !important;
        animation: glitch-2 1.5s infinite linear alternate-reverse !important;
    }
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    bottom: 0;
    left: 0;
}

/* Specialized revoliucinius word glitch effect */
.glitch-revoliucinius {
    animation: text-shadow-pulse 1.5s infinite;
    position: relative;
    display: inline-block;
    overflow: hidden;
    filter: drop-shadow(0 0 2px rgba(99, 102, 241, 0.5));
}

.glitch-revoliucinius::before,
.glitch-revoliucinius::after {
    content: 'revoliucinius';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.glitch-revoliucinius::before {
    left: -2px;
    text-shadow: -2px 0 var(--accent);
    animation: glitch-anim-1 1.5s infinite alternate-reverse;
    opacity: 0.9;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-revoliucinius::after {
    left: 2px;
    text-shadow: 2px 0 var(--secondary);
    animation: glitch-anim-2 1.5s infinite alternate-reverse;
    opacity: 0.9;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-anim-1 {
    0% { transform: translate(-3px, -3px) skew(-1deg, 0deg); opacity: 0.9; }
    10% { transform: translate(2px, 2px) skew(1deg, 0deg); opacity: 0.9; }
    20% { transform: translate(-2px, 0px) skew(0deg, 1deg); opacity: 0.9; }
    30% { transform: translate(3px, -1px) skew(-1deg, 1deg); opacity: 0.9; }
    40% { transform: translate(2px, 2px) skew(1deg, 0deg); opacity: 0.9; }
    50% { transform: translate(-3px, 1px) skew(0deg, -1deg); opacity: 0.9; }
    60% { transform: translate(3px, 0px) skew(-1deg, 0deg); opacity: 0.9; }
    70% { transform: translate(-2px, -1px) skew(1deg, 1deg); opacity: 0.9; }
    80% { transform: translate(2px, 1px) skew(0deg, -1deg); opacity: 0.9; }
    90% { transform: translate(-2px, 2px) skew(-1deg, 0deg); opacity: 0.9; }
    100% { transform: translate(2px, -2px) skew(1deg, 1deg); opacity: 0.9; }
}

@keyframes glitch-anim-2 {
    0% { transform: translate(3px, 3px) skew(1deg, 0deg); opacity: 0.9; }
    10% { transform: translate(-2px, -2px) skew(-1deg, 0deg); opacity: 0.9; }
    20% { transform: translate(2px, 0px) skew(0deg, -1deg); opacity: 0.9; }
    30% { transform: translate(-3px, 1px) skew(1deg, -1deg); opacity: 0.9; }
    40% { transform: translate(-2px, -2px) skew(-1deg, 0deg); opacity: 0.9; }
    50% { transform: translate(3px, -1px) skew(0deg, 1deg); opacity: 0.9; }
    60% { transform: translate(-3px, 0px) skew(1deg, 0deg); opacity: 0.9; }
    70% { transform: translate(2px, 1px) skew(-1deg, -1deg); opacity: 0.9; }
    80% { transform: translate(-2px, -1px) skew(0deg, 1deg); opacity: 0.9; }
    90% { transform: translate(2px, -2px) skew(1deg, 0deg); opacity: 0.9; }
    100% { transform: translate(-2px, 2px) skew(-1deg, -1deg); opacity: 0.9; }
}

@keyframes text-shadow-pulse {
    0% {
        text-shadow: 0 0 4px rgba(244, 63, 94, 0.8), 0 0 8px rgba(99, 102, 241, 0.5);
    }
    33% {
        text-shadow: 0 0 8px rgba(6, 182, 212, 0.8), 0 0 12px rgba(244, 63, 94, 0.5);
    }
    66% {
        text-shadow: 0 0 6px rgba(139, 92, 246, 0.8), 0 0 14px rgba(6, 182, 212, 0.5);
    }
    100% {
        text-shadow: 0 0 4px rgba(244, 63, 94, 0.8), 0 0 8px rgba(99, 102, 241, 0.5);
    }
}

/* Add rgb split effect */
.glitch-revoliucinius::before {
    text-shadow: -3px 0 #ff0080;
    animation-delay: 0ms;
}

.glitch-revoliucinius::after {
    text-shadow: 3px 0 #0080ff;
    animation-delay: 50ms;
}

/* Additional hover effect */
.glitch-revoliucinius:hover::before,
.glitch-revoliucinius:hover::after {
    animation-duration: 0.5s;
}

/* Mobile-specific glitch effect for revoliucinius */
@media (max-width: 768px) {
    .glitch-revoliucinius::before,
    .glitch-revoliucinius::after {
        animation-duration: 1s !important;
    }
    
    .hero-title span.glitch-revoliucinius {
        display: inline-block !important;
        animation: mobile-pulse 1.5s infinite !important;
        text-shadow: 0 0 5px rgba(244, 63, 94, 0.8), 0 0 8px rgba(99, 102, 241, 0.5) !important;
    }
    
    @keyframes mobile-pulse {
        0% { transform: skew(-0.3deg, 0deg); text-shadow: -2px 0 rgba(244, 63, 94, 0.9), 2px 0 rgba(6, 182, 212, 0.9); }
        25% { transform: skew(0.3deg, -0.1deg); text-shadow: 2px 0 rgba(6, 182, 212, 0.9), -2px 0 rgba(99, 102, 241, 0.9); }
        50% { transform: skew(-0.3deg, 0.1deg); text-shadow: -2px 0 rgba(99, 102, 241, 0.9), 2px 0 rgba(244, 63, 94, 0.9); }
        75% { transform: skew(0.3deg, -0.1deg); text-shadow: 2px 0 rgba(244, 63, 94, 0.9), -2px 0 rgba(6, 182, 212, 0.9); }
        100% { transform: skew(-0.3deg, 0deg); text-shadow: -2px 0 rgba(6, 182, 212, 0.9), 2px 0 rgba(244, 63, 94, 0.9); }
    }
}

/* Glitch overlay effect */
.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 3;
    animation: glitch-overlay 2s infinite alternate-reverse;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes glitch-overlay {
    0% { transform: translate(-2px, 0) skew(0.5deg, 0deg); filter: hue-rotate(0deg); }
    20% { transform: translate(2px, 0) skew(-0.5deg, 0deg); filter: hue-rotate(45deg); }
    40% { transform: translate(0, 1px) skew(0deg, 0.5deg); filter: hue-rotate(90deg); }
    60% { transform: translate(0, -1px) skew(0deg, -0.5deg); filter: hue-rotate(180deg); }
    80% { transform: translate(-1px, 0) skew(0.25deg, 0deg); filter: hue-rotate(270deg); }
    100% { transform: translate(1px, 0) skew(-0.25deg, 0deg); filter: hue-rotate(360deg); }
}

/* Mobile specific glitch overlay */
@media (max-width: 768px) {
    .glitch-overlay {
        opacity: 0.7;
        animation-duration: 1.5s;
    }
}

/* RGB Channel Shift Effect */
#revoliucinius-word {
    position: relative;
    display: inline-block;
    overflow: visible;
}

#revoliucinius-word::before {
    content: 'revoliucinius';
    position: absolute;
    top: 0;
    left: -2px;
    width: 100%;
    height: 100%;
    color: transparent;
    mix-blend-mode: screen;
    text-shadow: 2px 0 #ff0080;
    animation: rgb-shift 2s linear infinite alternate-reverse;
    opacity: 0.8;
    pointer-events: none;
    z-index: 10;
}

#revoliucinius-word::after {
    content: 'revoliucinius';
    position: absolute;
    top: 0;
    left: 2px;
    width: 100%;
    height: 100%;
    color: transparent;
    mix-blend-mode: screen;
    text-shadow: -2px 0 #00ccff;
    animation: rgb-shift 2.5s linear infinite alternate-reverse;
    opacity: 0.8;
    pointer-events: none;
    z-index: 11;
}

@keyframes rgb-shift {
    0%, 80% { 
        transform: translate(0, 0); 
    }
    82% { 
        transform: translate(-2px, 1px); 
    }
    84% { 
        transform: translate(2px, -1px); 
    }
    86% { 
        transform: translate(-1px, -1px); 
    }
    88% { 
        transform: translate(1px, 1px); 
    }
    90% { 
        transform: translate(-2px, -2px); 
    }
    92% { 
        transform: translate(2px, 2px); 
    }
    94% { 
        transform: translate(-1px, 1px); 
    }
    96% { 
        transform: translate(1px, -1px); 
    }
    98%, 100% { 
        transform: translate(0, 0); 
    }
}

/* Mobile RGB Channel Shift Effect */
@media (max-width: 768px) {
    #revoliucinius-word::before,
    #revoliucinius-word::after {
        animation-duration: 1.5s;
    }
}

/* === css/components/cursor.css === */
/* Innovative Cursor */
.cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, border 0.3s ease;
    display: none;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, opacity 0.2s, transform 0.2s;
    display: none;
}

/* Kursorius formos laukeliams */
.cursor-input-mode .cursor-outer {
    width: 24px;
    height: 24px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
}

.cursor-input-mode .cursor-inner {
    opacity: 0.5;
    width: 4px;
    height: 16px;
    border-radius: 1px;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    .cursor-outer, .cursor-inner {
        display: block;
    }
}

/* === css/components/buttons.css === */
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
    border-radius: 30px;
}

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

.btn-primary:hover::before {
    transform: scaleY(1);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
    border-radius: 30px;
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* CTA Button */
.cta-button {
    position: relative;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--secondary);
    transition: var(--transition);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.cta-button:hover {
    box-shadow: var(--neon-glow);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Form Buttons */
.submit-btn,
.configurator-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
    height: 3.5rem;
    box-sizing: border-box;
    text-decoration: none;
}

.submit-btn:hover,
.configurator-button:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-5px);
}

.submit-btn {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.configurator-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0066ff 0%, #00c2ff 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.configurator-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0077ff 0%, #00d0ff 100%);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.5);
}

/* Back to Top Button */
.back-to-top,
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    border: none;
    cursor: pointer;
}

.back-to-top.active,
#back-to-top.active {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover,
#back-to-top:hover {
    background: var(--secondary);
    box-shadow: var(--neon-glow);
    transform: translateY(-5px);
}

/* Fix for blog pages to ensure consistent positioning */
.page-wrapper .back-to-top,
.page-wrapper #back-to-top,
body[class*="blog"] .back-to-top,
body[class*="blog"] #back-to-top {
    right: 2rem !important;
    left: auto !important;
}

/* Hero section buttons specific styles */
.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-buttons .btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile styles for buttons */
@media (max-width: 768px) {
    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
        touch-action: manipulation;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    
    .btn-primary:active {
        background: var(--primary-dark);
    }
    
    .btn-outline:active {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* === css/components/cta-button.css === */
/* CTA Button - Modern Futuristic Design */
header .cta-button,
nav .cta-button,
.header .cta-button,
a.cta-button,
.cta-button {
    position: relative !important;
    padding: 0.8rem 1.8rem !important;
    background: transparent !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    overflow: hidden !important;
    border: 1px solid var(--secondary) !important;
    transition: var(--transition) !important;
    z-index: 1 !important;
    box-shadow: none !important;
    transform: none !important;
    display: inline-block !important;
}

header .cta-button::before,
nav .cta-button::before,
.header .cta-button::before,
a.cta-button::before,
.cta-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
    z-index: -1 !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: var(--transition) !important;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
}

header .cta-button:hover,
nav .cta-button:hover,
.header .cta-button:hover,
a.cta-button:hover,
.cta-button:hover {
    box-shadow: var(--neon-glow) !important;
    transform: none !important;
}

header .cta-button:hover::before,
nav .cta-button:hover::before,
.header .cta-button:hover::before,
a.cta-button:hover::before,
.cta-button:hover::before {
    transform: scaleX(1) !important;
    transform-origin: left !important;
} 
/* === css/components/sections.css === */
/* Common Section Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    color: var(--text);
    font-size: 1.1rem;
}

/* Common Spacing */
section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* Container adjustments for sections */
.section-container {
    position: relative;
    z-index: 2;
}

/* Speciali klasė ilgesnėms antraštėms */
.long-title {
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Responsive adaptations */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* === css/layout/header.css === */
/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(3, 7, 18, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

.logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    animation: rotateLogo 8s linear infinite;
}

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

.logo-mask {
    position: absolute;
    width: 95%;
    height: 95%;
    background: var(--dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    background: var(--secondary);
    bottom: -8px;
    left: 0;
    border-radius: 5px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.nav-links a:hover::before {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--secondary);
}

.nav-links a.active::before {
    transform: scaleX(1);
}

.menu-btn {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    width: 24px;
    height: 20px;
    border-radius: 4px;
    padding: 10px;
    box-sizing: content-box;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-btn .bar {
    width: 24px;
    height: 2px;
    background: white;
    position: absolute;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 4px;
    left: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-btn .bar:nth-child(1) { top: 12px; }
.menu-btn .bar:nth-child(2) { top: 19px; width: 18px; left: 13px; }
.menu-btn .bar:nth-child(3) { top: 26px; }

.menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
    width: 24px;
}

.menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    width: 24px;
}

/* CTA button styles */
.cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    margin-left: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
        transition-delay: 0s;
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
    }
    
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.08);
        padding: 0.5rem 1.5rem;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Cascade delay effect for menu items */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }
    
    .menu-btn {
        display: block;
    }
    
    .menu-btn.active {
        position: fixed;
        right: 2rem;
        top: 1.5rem;
        border-color: rgba(255, 255, 255, 0.25);
        background-color: rgba(0, 0, 0, 0.2);
    }
    
    .cta-button {
        display: none;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem 0;
    }
    
    .logo-mark {
        width: 36px;
        height: 36px;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
    
    .menu-btn {
        width: 22px;
        height: 18px;
        border-radius: 6px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .menu-btn .bar {
        width: 22px;
        left: 9px;
        height: 1.5px;
    }
    
    .menu-btn .bar:nth-child(1) { top: 11px; }
    .menu-btn .bar:nth-child(2) { top: 18px; }
    .menu-btn .bar:nth-child(3) { top: 25px; }
    
    .menu-btn.active .bar:nth-child(1),
    .menu-btn.active .bar:nth-child(3) {
        top: 18px;
        width: 22px;
    }
    
    .nav-links.active a {
        margin-bottom: 5px;
    }
}

/* === css/layout/hero.css === */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
    position: relative;
    z-index: 2;
}

.hero-eyebrow-container {
    display: block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
    max-width: 100%;
    width: 100%;
    overflow: visible;
}

.hero-eyebrow {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 3px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--secondary);
    left: -70px;
    top: 50%;
}

.hero-title {
    display: block;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.hero-canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.rotating-cube {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
    transform-origin: center center;
}

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

.cube-face {
    position: absolute;
    width: 70%;
    height: 70%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    top: 15%;
    left: 15%;
    transform-origin: center center;
}

.cube-face:nth-child(1) {
    transform: translateZ(150px);
    background-image: linear-gradient(145deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.1));
}

.cube-face:nth-child(2) {
    transform: rotateY(180deg) translateZ(150px);
    background-image: linear-gradient(145deg, rgba(244, 63, 94, 0.2), rgba(99, 102, 241, 0.1));
}

.cube-face:nth-child(3) {
    transform: rotateY(90deg) translateZ(150px);
    background-image: linear-gradient(145deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.1));
}

.cube-face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(150px);
    background-image: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(244, 63, 94, 0.1));
}

.cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(150px);
    background-image: linear-gradient(145deg, rgba(16, 185, 129, 0.2), rgba(99, 102, 241, 0.1));
}

.cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(150px);
    background-image: linear-gradient(145deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.1));
}

.cube-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.9rem;
    padding: 1.5rem;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    word-break: break-word;
    hyphens: auto;
}

.cube-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    z-index: 10;
}

.scroll-indicator-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text);
}

.scroll-indicator-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.scroll-indicator-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    margin-top: 10px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Responsive Styles for Hero Section */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 100px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-eyebrow-container {
        text-align: center;
    }
    
    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-eyebrow::before {
        display: none;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 450px;
        margin: 0 auto 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* Pritaikome kubą per visą ekrano dydžio keitimo procesą */
    .cube-face:nth-child(1) { transform: translateZ(120px); }
    .cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(120px); }
    .cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(120px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(120px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(120px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(120px); }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        max-width: 380px;
        margin: 0 auto 70px;
    }
    
    .hero-eyebrow {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .cube-content {
        padding: 1.25rem;
        font-size: 1.1rem;
        word-break: break-word;
        hyphens: auto;
    }
    
    .cube-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    /* Pritaikome kubą per visą ekrano dydžio keitimo procesą */
    .cube-face:nth-child(1) { transform: translateZ(100px); }
    .cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(100px); }
    .cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(100px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }
    
    .hero-canvas {
        perspective: 900px;
    }

    /* Išjungiame blur efektą mobiliuose dėl performance */
    .cube-face {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-eyebrow-container {
        margin-bottom: 1.25rem;
    }
    
    .hero-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 2px;
        line-height: 1.3;
        padding: 0.5rem 1rem;
    }
    
    .hero-visual {
        max-width: 320px;
        margin: 0 auto 70px;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-indicator-text {
        font-size: 0.7rem;
    }
    
    .cube-content {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    /* Pritaikome kubą per visą ekrano dydžio keitimo procesą */
    .cube-face:nth-child(1) { transform: translateZ(80px); }
    .cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(80px); }
    .cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(80px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(80px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(80px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(80px); }
    
    .hero-canvas {
        perspective: 700px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 220px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-visual {
        max-width: 280px;
        margin: 0 auto 70px;
    }
    
    .hero-eyebrow-container {
        margin-bottom: 1rem;
    }
    
    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        padding: 0.4rem 0.8rem;
    }
    
    .cube-content {
        padding: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    /* Pritaikome kubą per visą ekrano dydžio keitimo procesą */
    .cube-face:nth-child(1) { transform: translateZ(70px); }
    .cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(70px); }
    .cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(70px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(70px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(70px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(70px); }
    
    .hero-canvas {
        perspective: 600px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        max-width: 260px;
        margin: 0 auto 70px;
    }
    
    .cube-content {
        padding: 0.7rem;
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    /* Pritaikome kubą per visą ekrano dydžio keitimo procesą */
    .cube-face:nth-child(1) { transform: translateZ(65px); }
    .cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(65px); }
    .cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(65px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(65px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(65px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(65px); }
    
    .hero-canvas {
        perspective: 550px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        height: auto;
        padding: 100px 0 60px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-visual {
        max-width: 250px;
        margin: 0 auto 40px;
    }
}

/* === css/layout/about.css === */
/* About Section Styles */
.about-section {
    padding: 7rem 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.section-gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: gradientBorder 6s ease infinite;
    z-index: 1;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-content {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light);
    opacity: 0.9;
    text-align: justify;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px; /* Ensures minimum height on all devices */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(99, 102, 241, 0.1);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    border-radius: 14px;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.about-image:hover::before {
    opacity: 0.8;
}

.about-image:hover {
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3), 0 0 0 2px rgba(99, 102, 241, 0.2);
    transform: translateY(-5px) scale(1.01);
}

.about-image img {
    max-width: 100%;
    width: 100%; /* Force full width */
    height: auto;
    min-height: 350px; /* Minimum height to maintain aspect */
    transform: translateY(0);
    transition: transform 0.5s ease, filter 0.5s ease;
    object-fit: contain; /* Ensures the entire SVG is visible */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.about-image:hover img {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.2));
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-value {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 4rem;
    font-weight: 800;
    filter: drop-shadow(0 0 3px rgba(99, 102, 241, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.stat-item:hover .counter-value {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.8));
}

.stat-number img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number img {
    transform: scale(1.05);
}

.stat-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    opacity: 0.8;
    margin-top: 0.75rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        width: 100%;
        max-width: 600px; /* Control max width on tablets */
        margin: 0 auto;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .about-image {
        max-width: 100%;
        min-height: 300px;
    }
    
    .about-image img {
        min-height: 300px;
    }
    
    .counter-value {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .about-image img {
        min-height: 250px;
    }
    
    .stat-item {
        flex: 1 0 100%;
    }
    
    .counter-value {
        font-size: 3rem;
    }
    
    .stat-number img {
        max-width: 90%;
        margin: 0 auto;
    }
} 
/* === css/layout/features.css === */
/* Split Section - Brand Features */
.split-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.split-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.split-sticky {
    position: sticky;
    top: 100px;
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content {
    max-width: 500px;
}

.split-number {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.split-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.split-subtitle {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.feature-card {
    position: relative;
    min-height: 50vh;
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

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

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover .feature-card-bg {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.feature-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 90deg, var(--primary) 180deg, var(--secondary) 270deg, transparent 360deg);
    opacity: 0;
    transition: var(--transition);
    animation: rotateGradient 4s linear infinite;
}

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

.feature-card:hover .feature-icon::before {
    opacity: 1;
    inset: -8px;
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(45deg, var(--secondary), #0891b2);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(45deg, var(--accent), #be123c);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(45deg, var(--accent2), #6d28d9);
}

.feature-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-description {
    color: var(--text);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.5;
    font-weight: 500;
}

.feature-more {
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    width: fit-content;
    transition: var(--transition);
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.3);
}

.feature-more i {
    transition: var(--transition);
}

.feature-more:hover {
    color: white;
}

.feature-more:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .split-section {
        min-height: auto;
        padding: 5rem 0;
    }
    
    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-sticky {
        position: relative;
        top: 0;
        height: auto;
        margin-bottom: 2rem;
    }
    
    .split-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .split-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .split-section {
        padding: 4.5rem 0;
    }
    
    .split-title {
        font-size: 2.7rem;
    }
    
    .split-subtitle {
        font-size: 1.05rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-description {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .split-section {
        padding: 4rem 0;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    .feature-card {
        min-height: auto;
        padding: 1.75rem;
    }
    
    .section-title,
    .split-title {
        font-size: 2.5rem;
    }
    
    .split-subtitle {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .split-section {
        padding: 3.5rem 0;
    }
    
    .split-title {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .split-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card-bg {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }
    
    .feature-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 600;
        line-height: 1.5;
    }
    
    .feature-more {
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--secondary);
        text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
    }
    
    .feature-icon-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .split-section {
        padding: 3rem 0;
    }
    
    .section-title,
    .split-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .split-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .feature-card-bg {
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .feature-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    
    .feature-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
        font-weight: 600;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    }
    
    .feature-more {
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--secondary);
        text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-card:hover .feature-icon::before {
        inset: -6px;
    }
}

@media (max-width: 380px) {
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* === css/layout/services.css === */
/* Services Section - Hexagon Grid */
.services-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.services-container {
    position: relative;
    z-index: 2;
}

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

.hexagon-wrapper {
    position: relative;
    width: 100%;
    padding-top: 115%; /* Aspect ratio for hexagon */
}

.hexagon-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* WEB versijoje kortelės rodomos įprastai, be animacijų */
@media (min-width: 769px) {
    .hexagon-item {
        opacity: 1;
    }
}

/* Tik mobiliems įrenginiams taikome animacijas ir kitą stilių */
@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
        gap: 1.5rem;
        margin: 0 auto;
    }
    
    .hexagon-wrapper {
        padding-top: 100%; /* Make more square-like on mobile */
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hexagon-content {
        padding: 15%;
        opacity: 1 !important; /* Užtikriname, kad turinys būtų matomas */
    }
    
    .hexagon-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: white !important; /* Iš karto matomas baltas */
        transform: scale(1.2); /* Iš karto didesnis */
        animation: pulseIcon 2s infinite alternate; /* Pridedame pulsavimo animaciją */
        opacity: 1 !important; /* Užtikriname, kad ikona būtų matoma */
    }
    
    .hexagon-title {
        font-size: 1.3rem;
        font-weight: 700;
        opacity: 1 !important; /* Užtikriname, kad antraštė būtų matoma */
        color: white !important; /* Baltas tekstas geriau matomas */
    }
    
    .hexagon-item {
        border-color: rgba(6, 182, 212, 0.3); /* Iš karto matomas švytintis kraštas */
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.1); /* Pridedame švytėjimą */
        opacity: 1 !important; /* Užtikriname, kad kortelė būtų matoma */
        visibility: visible !important; /* Užtikriname, kad elementas būtų matomas */
    }
    
    .hexagon-item:hover {
        /* Pakeičiame transformaciją, kad išvengtume vibracijos */
        transform: translate(-50%, -50%) scale(1.05);
    }
    
    /* Papildoma animacija, kai elementas pasirodo ekrane */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate(-50%, -40%);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }
    
    @keyframes pulseIcon {
        from {
            filter: drop-shadow(0 0 3px rgba(6, 182, 212, 0.5));
        }
        to {
            filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8));
        }
    }
}

/* Papildomi stiliai mobiliems įrenginiams */
@media (max-width: 768px) {
    .hexagon-icon {
        color: white !important; /* Paryškiname ikoną, kad būtų geriau matoma */
        filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.5)); /* Pridedame švytėjimą */
    }
    
    .hexagon-title {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Pridedame šešėlį tekstui */
    }
}

.hexagon-item:hover {
    /* Pakeičiame transformaciją, kad išvengtume vibracijos */
    transform: translate(-50%, -50%) scale(1.05);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.hexagon-content {
    text-align: center;
    padding: 20%;
    z-index: 1;
}

.hexagon-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.hexagon-item:hover .hexagon-icon {
    transform: scale(1.2);
    color: white;
}

.hexagon-title {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.hexagon-item:hover .hexagon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Hexagon Background Animation */
@keyframes hexBgGlow {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(30deg) brightness(1.2);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}

.hexagon-item:hover .hexagon-icon {
    transform: scale(1.2);
    color: white;
    animation: hexBgGlow 3s infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .services-section {
        padding: 5rem 0;
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .hexagon-grid {
        gap: 1.25rem;
    }
    
    .hexagon-wrapper {
        padding-top: 110%;
    }
    
    .hexagon-title {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .hexagon-icon {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 3.5rem 0;
    }
    
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hexagon-wrapper {
        padding-top: 100%;
        max-width: 300px;
    }
    
    .hexagon-content {
        padding: 12%;
    }
    
    .hexagon-icon {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
        color: white; /* Iš karto matomas baltas */
        transform: scale(1.2); /* Iš karto didesnis */
    }
    
    .hexagon-title {
        font-size: 1.2rem;
        font-weight: 700;
        opacity: 1; /* Užtikriname, kad antraštė būtų matoma */
    }
    
    .hexagon-item {
        border-color: rgba(6, 182, 212, 0.3); /* Iš karto matomas švytintis kraštas */
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.1); /* Pridedame švytėjimą */
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
    
    .hexagon-wrapper {
        padding-top: 115%; /* Restore aspect ratio for hexagon */
        max-width: 220px;
        margin: 0 auto;
    }
    
    .hexagon-content {
        padding: 10%;
    }
    
    .hexagon-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: white; /* Iš karto matomas baltas */
        transform: scale(1.2); /* Iš karto didesnis */
    }
    
    .hexagon-title {
        font-size: 1rem;
        font-weight: 700;
        opacity: 1; /* Užtikriname, kad antraštė būtų matoma */
    }
    
    /* Restore hexagonal shape instead of rounded square */
    .hexagon-item {
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        transform: translate(-50%, -50%) scale(0.9);
        border-color: rgba(6, 182, 212, 0.3); /* Iš karto matomas švytintis kraštas */
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.2); /* Pridedame švytėjimą */
    }
    
    .hexagon-item:hover {
        /* Pakeičiame transformaciją, kad išvengtume vibracijos */
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.3); /* Sustipriname švytėjimą paspaudus */
    }
}

@media (max-width: 380px) {
    .hexagon-wrapper {
        padding-top: 115%;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .hexagon-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
        color: white; /* Iš karto matomas baltas */
    }
    
    .hexagon-title {
        font-size: 0.9rem;
        font-weight: 700;
        opacity: 1; /* Užtikriname, kad antraštė būtų matoma */
    }
    
    .hexagon-item {
        transform: translate(-50%, -50%) scale(0.85);
        border-color: rgba(6, 182, 212, 0.3); /* Iš karto matomas švytintis kraštas */
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.2); /* Pridedame švytėjimą */
    }
    
    .hexagon-item:hover {
        /* Pakeičiame transformaciją, kad išvengtume vibracijos */
        transform: translate(-50%, -50%) scale(0.9);
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.3); /* Sustipriname švytėjimą paspaudus */
    }
}

/* === css/layout/projects.css === */
/* Projects Section - Dynamic Showcase */
.projects-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.projects-container {
    position: relative;
    z-index: 2;
}

.project-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.project-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-weight: 600;
}

.project-tab.active {
    color: white;
}

.project-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.project-tab.active::after {
    width: 100%;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 300px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    will-change: transform, opacity, box-shadow;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 5px 30px rgba(6, 182, 212, 0.2);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(15, 23, 42, 0.7);
    opacity: 0.9;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(3, 7, 18, 0.98) 0%, 
        rgba(3, 7, 18, 0.8) 50%, 
        rgba(3, 7, 18, 0.4) 100%);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
    justify-content: flex-end;
    z-index: 2;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 40%;
    height: 40%;
    background-image: url('../../images/icons/security-shield.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6));
}

.project-card:hover::after {
    opacity: 0.2;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
    transform: translate(-50%, -60%) scale(1.05);
    transition: all 0.4s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.project-card[data-category="e-commerce"]::after {
    background-image: url('../../images/icons/cart.svg');
}

.project-card[data-category="portals"]::after {
    background-image: url('../../images/icons/browser.svg');
}

.project-card[data-category="systems"]::after {
    background-image: url('../../images/icons/settings.svg');
}

.project-category {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    z-index: 3;
}

.project-title {
    margin-top: auto;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s, color 0.3s ease;
}

.project-description {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.project-link {
    align-self: flex-start;
    color: white;
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    background: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, background 0.3s ease;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.project-card:hover .project-category {
    transform: translateY(-5px);
    color: var(--accent);
}

.project-card:hover .project-title {
    transform: translateY(-5px);
    color: var(--light);
}

.project-card:hover .project-description {
    transform: translateY(-5px);
}

.project-card:hover .project-link {
    transform: translateY(-5px);
}

.project-link:hover {
    background: var(--secondary);
    transform: translateY(-7px) !important;
}

/* Responsive Design */
@media (max-width: 992px) and (min-width: 769px) {
    .projects-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 90%;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .project-card {
        max-width: 100%;
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 992px) {
    .projects-showcase {
        grid-template-columns: repeat(1, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .project-card {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .projects-section {
        padding: 5rem 0;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .project-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .project-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .project-card {
        height: 250px;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
    }
    
    .project-overlay {
        padding: 1.5rem;
        justify-content: flex-end;
    }
    
    .project-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        margin-top: 0;
    }
    
    .project-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
        line-height: 1.4;
    }
    
    .project-category {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 0.75rem;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 4rem 0;
    }
    
    .project-card {
        height: 220px;
    }
    
    .project-overlay {
        padding: 1.25rem;
        justify-content: flex-end;
    }
    
    .project-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .project-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .project-link {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .project-category {
        top: 1.25rem;
        left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 3.5rem 0;
    }
    
    .project-tabs {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .project-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .project-card {
        height: 200px;
        border-radius: 15px;
    }
    
    .project-overlay {
        padding: 1rem;
        justify-content: flex-end;
    }
    
    .project-title {
        margin-top: 0;
        margin-bottom: 0.4rem;
    }
    
    .project-description {
        margin-bottom: 1.25rem;
    }
    
    .project-link {
        padding: 0.35rem 1rem;
        font-size: 0.8rem;
    }
    
    .project-category {
        top: 1rem;
        left: 1rem;
        font-size: 0.7rem;
    }
    
    /* Optimizuoti ilgų pavadinimų rodymą */
    .project-title.long-title {
        font-size: 1rem;
    }
}

/* === css/layout/testimonials.css === */
/* Testimonials */
.testimonials-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    margin-top: 3rem;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    min-width: calc(50% - 1rem);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: white;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-item {
        min-width: 100%;
    }
    
    .testimonials-section {
        min-height: auto;
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-controls {
        margin-top: 1.5rem;
    }
    
    .testimonial-button {
        width: 45px;
        height: 45px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3.5rem 0;
    }
    
    .testimonial-track {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-item {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .testimonial-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-item {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .testimonial-track {
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    
    .testimonial-controls {
        margin-top: 1rem;
    }
    
    .testimonial-button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .testimonial-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 380px) {
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
}

/* === css/layout/contact.css === */
/* Contact Section */
.contact-section {
    position: relative;
    padding: 8rem 0 4rem;
    background-color: rgba(3, 7, 18, 0.8);
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-content {
    width: 100%;
    padding-right: 0;
}

.contact-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--secondary);
}

.contact-item:nth-child(3) .contact-icon {
    background: var(--accent);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-text {
    color: white;
}

.contact-text span {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.contact-form-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
}

.contact-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.contact-form {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.form-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 120px;
    max-height: 120px;
    resize: none;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent3);
}

.form-message.error {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: var(--accent);
}

.form-message.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Configurator Container */
.configurator-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    transform: translateY(0);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background-color: rgba(4, 17, 36, 0.95);
    border: 1px solid rgba(0, 122, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 149, 255, 0.2);
    background-image: linear-gradient(to bottom right, rgba(6, 25, 55, 0.95), rgba(4, 17, 36, 0.95));
}

.configurator-container:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(0, 122, 255, 0.7);
    box-shadow: 0 10px 25px rgba(0, 149, 255, 0.5);
    background-image: linear-gradient(to bottom right, rgba(10, 30, 70, 0.95), rgba(4, 17, 36, 0.95));
}

.configurator-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 2rem;
    height: 100%;
    justify-content: center;
    z-index: 1;
}

.configurator-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5680ff 0%, #00c2ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 24px;
    position: relative;
    transition: var(--transition);
}

.configurator-icon-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 90deg, #5680ff 180deg, #00c2ff 270deg, transparent 360deg);
    opacity: 0;
    transition: var(--transition);
    animation: rotateGradient 4s linear infinite;
}

.configurator-container:hover .configurator-icon-circle::before {
    opacity: 1;
    inset: -8px;
}

.configurator-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.configurator-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    max-width: 450px;
}

/* Responsive Design */
@media (min-width: 992px) {
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto;
        gap: 2rem;
        align-items: end;
    }
    
    .contact-content {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
    }
    
    .contact-form-wrapper {
        grid-column: 2;
        grid-row: 1 / span 2;
        height: 100%;
        margin-top: 0;
        margin-bottom: 0;
        align-self: stretch;
        display: flex;
        flex-direction: column;
    }
    
    .contact-form {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .configurator-container {
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
        margin-bottom: 0;
        height: auto;
        align-self: end;
    }
    
    .contact-content, .contact-form-wrapper, .configurator-container {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .contact-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .configurator-container {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
    
    .configurator-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 0 3rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .configurator-title {
        font-size: 1.5rem;
    }
    
    .configurator-description {
        font-size: 0.9rem;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        padding: 0.75rem 1rem;
    }
    
    .configurator-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 5rem 0 2.5rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .configurator-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .configurator-title {
        font-size: 1.3rem;
    }
    
    .configurator-wrapper {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 0 2rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .contact-item {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .contact-text {
        font-size: 0.95rem;
        font-weight: 600;
        color: white;
    }
    
    .contact-text span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 400;
    }
    
    .contact-form-wrapper {
        border-radius: 15px;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-form-bg {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    
    .form-label {
        color: white;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
        margin-bottom: 0.6rem;
    }
    
    .form-control {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: white;
        box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.1);
    }
    
    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
        font-weight: 400;
    }
    
    .form-control:focus {
        border-color: rgba(6, 182, 212, 0.8);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.1), 0 0 10px rgba(6, 182, 212, 0.3);
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    .form-message {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn.submit-btn {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
        font-weight: 700;
        letter-spacing: 1px;
        background: linear-gradient(135deg, #5680ff 0%, #00c2ff 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 149, 255, 0.4);
        text-transform: uppercase;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .btn.submit-btn:hover {
        box-shadow: 0 6px 20px rgba(0, 149, 255, 0.6);
        transform: translateY(-2px);
    }
    
    .configurator-wrapper {
        padding: 1.25rem;
    }
    
    .configurator-title {
        font-weight: 700;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    
    .configurator-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.5;
    }
    
    .configurator-container {
        border-radius: 15px;
        border: 1px solid rgba(0, 122, 255, 0.3);
        background-color: rgba(4, 17, 36, 0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .configurator-container .btn.btn-primary {
        font-weight: 700;
        letter-spacing: 1px;
        padding: 0.9rem 1.2rem;
        background: linear-gradient(135deg, #5680ff 0%, #00c2ff 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 149, 255, 0.4);
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .configurator-container .btn.btn-primary:hover {
        box-shadow: 0 6px 20px rgba(0, 149, 255, 0.6);
        transform: translateY(-2px);
    }
}

/* === css/layout/footer.css === */
/* Footer */
footer {
    padding: 6rem 0 2rem;
    position: relative;
    color: white;
}

/* Make sure blog footer has the same padding as other pages */
.blog footer, 
footer.footer, 
#footer,
body.blog-page footer,
.page-wrapper footer,
.blog-grid-section ~ footer,
footer#footer {
    padding: 6rem 0 2rem !important;
}

/* Fix "back to top" button position on blog pages */
.blog .back-to-top,
.blog-post-content-section ~ footer + .back-to-top,
#footer + .back-to-top,
.page-wrapper .back-to-top,
footer + .back-to-top,
body > .back-to-top {
    right: 2rem !important;
    left: auto !important;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-about {
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--secondary);
    bottom: -8px;
    left: 0;
}

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

.footer-link {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.footer-link i,
.footer-link svg {
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-link:hover i,
.footer-link:hover svg {
    transform: translateX(5px);
}

.footer-newsletter p {
    color: var(--text);
    margin-bottom: 5rem;
    font-weight: 600;
}

.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 1.2rem 2.5rem;
    padding-right: 4.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    height: 3.5rem;
    box-sizing: border-box;
}

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

.newsletter-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    font-size: 1.1rem;
    padding: 0;
}

.newsletter-btn:hover {
    background: var(--secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        display: block;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}

/* === css/responsive/mobile.css === */
/* Mobile responsiveness */
@media screen and (max-width: 1200px) {
    .container {
        width: 90%;
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-eyebrow-container {
        margin-top: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .split-container {
        flex-direction: column;
    }
    
    .split-sticky {
        position: relative;
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .split-content {
        text-align: center;
    }
    
    .split-grid {
        width: 100%;
        grid-gap: 1.5rem;
    }
    
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .projects-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 992px) {
    /* Naujas vidutinio dydžio įrenginių media query */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    header .container {
        padding: 1rem 0;
    }
    
    .nav-links a {
        margin-left: 1.2rem;
    }
    
    .testimonial-track {
        padding: 0 1.5rem;
    }
    
    /* Tablet projekto kortelių sucentravimas */
    .projects-showcase {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        width: 90% !important;
        max-width: 800px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .project-card {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 280px !important;
    }
    
    /* Container sucentravimas tablet */
    .container, .section-container, .projects-container {
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
        text-align: center;
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    /* Navegacija */
    header .container {
        padding: 0.75rem 1.5rem !important; /* Proper horizontal and vertical spacing */
    }
    
    /* Fix for mobile header */
    .hero {
        padding-top: calc(52px + 3rem);
    }
    
    /* Improve touch target for hero buttons on mobile */
    .hero-buttons .btn {
        padding: 1rem 2rem;
        margin-bottom: 1.5rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
        touch-action: manipulation;
    }
    
    /* Add more space between buttons for easier touch */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        animation: fadeInDown 0.3s ease;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem;
        text-align: center;
        margin-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-weight: 700;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    /* Sekcijų antraštės */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Kortelių dydžiai */
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Grid dėliojimas */
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Atsiliepimų slinkiklis */
    .testimonial-track {
        padding: 0 1rem;
    }
    
    /* Poraštė */
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    /* Kontaktų sekcija */
    .contact-container {
        flex-direction: column;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
    
    .contact-form-wrapper {
        width: 100%;
        margin-top: 2rem;
    }

    .configurator-container {
        width: 100%;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    /* Užtikrinti, kad visi konteineriai būtų centruoti */
    .container, .section-container, .hero-content, .services-container,
    .projects-container, .testimonials-container, .blog-container,
    .contact-container, .footer-container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Užtikrinti, kad projekto kortelės būtų centruotos */
    .projects-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Blokas ir hexagoninės kortelės */
    .hexagon-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Projekto tabai */
    .project-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .project-tab {
        flex: 0 0 auto;
    }
    
    /* Contact item mobile stiliai */
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    /* El. pašto ir telefono tekstų centravimas mobiliojoje versijoje */
    .contact-info .contact-item:nth-child(1) .contact-text,
    .contact-info .contact-item:nth-child(2) .contact-text,
    .contact-info .contact-item:nth-child(3) .contact-text {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    /* Centruoti el. pašto, telefono ir lokacijos tekstą ir span elementą */
    .contact-info .contact-item:nth-child(1) .contact-text span,
    .contact-info .contact-item:nth-child(2) .contact-text span,
    .contact-info .contact-item:nth-child(3) .contact-text span {
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Hide the mobile header CTA button */
    header .cta-button {
        display: none !important;
    }
}

@media screen and (max-width: 576px) {
    body {
        font-size: 0.95rem;
    }
    
    /* Add more padding on smaller screens */
    .hero {
        padding-top: calc(48px + 2.5rem);
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        font-weight: 700;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .logo-mark {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    /* Sekcijų pataisymai */
    section {
        padding: 3rem 0;
    }
    
    /* Improve touch target for hero buttons on smaller mobile devices */
    .hero-buttons .btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-height: 55px;
    }
    
    /* Tabo mygtukai */
    .project-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .project-tab {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    /* Mažesnės kortelės */
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    /* Centruoti tik el. pašto ir telefono tekstą, bet ne ikonėles */
    .contact-item:nth-child(1) .contact-text,
    .contact-item:nth-child(2) .contact-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    /* Atsiliepimų tekstas */
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    /* Projekto kortelės */
    .project-card .project-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .project-card .project-description {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .project-card .project-overlay {
        padding: 1rem;
        justify-content: flex-end;
    }
    
    .project-card .project-link {
        padding: 0.35rem 1rem;
        font-size: 0.8rem;
        align-self: flex-start;
        margin-top: 0.5rem;
    }
    
    /* Formos elementai */
    .form-control {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Matomas tik mažuose įrenginiuose */
    .mobile-only {
        display: block;
    }
    
    /* Paslėptas mažuose įrenginiuose */
    .mobile-hidden {
        display: none;
    }
    
    /* Mygtukai */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Mygtuko "SIŲSTI UŽKLAUSĄ" tekstas centruotas */
    .submit-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.5px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 280px !important;
    }
    
    /* Užtikrinti, kad kontaktų forma būtų centruota */
    .contact-form-wrapper .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-group {
        width: 100%;
    }
    

}

@media screen and (max-width: 380px) {
    /* Dar mažesni įrenginiai */
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hexagon-title {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .hexagon-icon {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        font-size: 1.4rem;
    }
    
    /* Extra mažos kortelės */
    .feature-card {
        padding: 1rem;
    }
}


/* Nustatymai mobiliems ekranams orientacijos pakeitimuose */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 2rem;
    }
}

/* === css/main.css extra styles (related-articles, services-grid, ai-visual) === */
/* Susiję straipsniai Section */
.related-articles-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
    position: relative;
    overflow: hidden;
}

.related-articles-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.featured-article-row {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    gap: 4rem;
    position: relative;
}

.featured-article-row::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.01) 0%, 
        rgba(99, 102, 241, 0.3) 50%, 
        rgba(99, 102, 241, 0.01) 100%);
}

.featured-article-row:last-child::after {
    display: none;
}

.featured-article-row.reverse {
    flex-direction: row-reverse;
}

.featured-article-text {
    flex: 1;
    padding: 1rem;
}

.article-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    line-height: 1.3;
}

.article-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(248, 250, 252, 0.8);
    max-width: 500px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.article-link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.article-link:hover {
    color: var(--primary);
}

.article-link:hover i {
    transform: translateX(5px);
}

.featured-article-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Technologijos visual */
.visual-wrapper img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.visual-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

/* Dirbtinis intelektas visual */
.ai-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-node {
    position: absolute;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.5);
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ai-node.crm {
    top: 40px;
    left: 50px;
}

.ai-node.erp {
    top: 110px;
    left: 30px;
}

.ai-node.marketing {
    bottom: 40px;
    left: 80px;
}

.ai-node.analytics {
    top: 60px;
    right: 50px;
}

.ai-node.finance {
    top: 170px;
    right: 70px;
}

.ai-node.operations {
    bottom: 60px;
    right: 40px;
}

.ai-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(236, 72, 153, 0.3);
    overflow: hidden;
}

.ai-connections::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(99, 102, 241, 0.1) 70%, transparent 100%);
    border-radius: 50%;
}

/* E-commerce dashboard visual */
.ecommerce-dashboard {
    width: 100%;
    max-width: 450px;
    padding: 1.5rem;
    background: #121a2e;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.dashboard-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.dashboard-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.metric {
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 8px;
}

.metric-name {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.metric-trend {
    font-size: 0.7rem;
    color: #4ade80;
}

.dashboard-chart {
    height: 100px;
    width: 100%;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.05), rgba(6, 182, 212, 0.2));
    margin-top: 1.5rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.dashboard-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, 
        transparent 0%, 
        transparent 10%, 
        rgba(6, 182, 212, 0.6) 10.1%, 
        rgba(6, 182, 212, 0.6) 10.5%, 
        transparent 10.6%, 
        transparent 20%, 
        rgba(6, 182, 212, 0.6) 20.1%, 
        rgba(6, 182, 212, 0.6) 20.5%, 
        transparent 20.6%, 
        transparent 30%, 
        rgba(6, 182, 212, 0.6) 30.1%, 
        rgba(6, 182, 212, 0.6) 30.5%, 
        transparent 30.6%, 
        transparent 40%, 
        rgba(6, 182, 212, 0.6) 40.1%, 
        rgba(6, 182, 212, 0.6) 40.5%, 
        transparent 40.6%, 
        transparent 50%, 
        rgba(6, 182, 212, 0.6) 50.1%, 
        rgba(6, 182, 212, 0.6) 50.5%, 
        transparent 50.6%, 
        transparent 60%, 
        rgba(6, 182, 212, 0.6) 60.1%, 
        rgba(6, 182, 212, 0.6) 60.5%, 
        transparent 60.6%, 
        transparent 70%, 
        rgba(6, 182, 212, 0.6) 70.1%, 
        rgba(6, 182, 212, 0.6) 70.5%, 
        transparent 70.6%, 
        transparent 80%, 
        rgba(6, 182, 212, 0.6) 80.1%, 
        rgba(6, 182, 212, 0.6) 80.5%, 
        transparent 80.6%, 
        transparent 90%, 
        rgba(6, 182, 212, 0.6) 90.1%, 
        rgba(6, 182, 212, 0.6) 90.5%, 
        transparent 90.6%, 
        transparent 100%);
    opacity: 0.3;
}

.dashboard-chart::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(6, 182, 212, 0.8);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

/* Responsive design */
@media (max-width: 991px) {
    .featured-article-row,
    .featured-article-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .featured-article-text,
    .featured-article-visual {
        width: 100%;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-description {
        font-size: 1rem;
    }
    
    .visual-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.5rem;
    }
    
    .dashboard-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-node {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }
}

/* Services Section Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 2rem; /* Space between cards */
    margin-top: 3rem; /* Space above the grid */
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    border-radius: 1rem; /* Rounded corners */
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.service-card-icon {
    font-size: 2.5rem; /* Icon size */
    color: var(--primary); /* Use primary color */
    margin-bottom: 1.5rem;
    width: 80px; /* Fixed width for icon container */
    height: 80px; /* Fixed height for icon container */
    background: rgba(var(--primary-rgb, 99, 102, 241), 0.1); /* Use primary color with alpha */
    border-radius: 50%; /* Circular background */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Define --primary-rgb if not already defined */
:root {
    --primary-rgb: 99, 102, 241; /* RGB values for #6366f1 */
}


.service-card:hover .service-card-icon {
     background: rgba(var(--primary-rgb, 99, 102, 241), 0.2);
}


.service-card-title {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allow description to take available space */
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary); /* Use secondary color for link */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto; /* Push link to the bottom */
}

.service-card-link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.service-card-link:hover {
    color: var(--primary);
}

.service-card-link:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }
}

/* === css/custom-fixes.css === */
/* Custom fixes for specific issues */

/* Language switcher dropdown styling for 11 languages */
.language-switcher {
    position: relative;
    margin-left: 1.25rem;
    font-size: 0.9rem;
}

.language-switcher .lang-current {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--light);
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.language-switcher .lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher .lang-current::after {
    content: '';
    border: solid rgba(248, 250, 252, 0.75);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.language-switcher:hover .lang-current::after,
.language-switcher:focus-within .lang-current::after {
    transform: rotate(-135deg);
    margin-bottom: -2px;
}

.language-switcher .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.language-switcher:hover .lang-dropdown,
.language-switcher:focus-within .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.language-switcher .lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(248, 250, 252, 0.75);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.language-switcher .lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.language-switcher .lang-option.active {
    color: var(--secondary);
    background: rgba(99, 102, 241, 0.1);
}

.language-switcher .lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.language-switcher .lang-current .lang-flag {
    width: 22px;
    height: 16px;
}

.language-switcher .lang-option .lang-flag {
    width: 20px;
    height: 15px;
}

.language-switcher .lang-option .lang-name {
    font-size: 0.85rem;
}

.language-switcher .lang-option:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: -2px;
}

/* Fallback inline style for legacy (keep for backwards compatibility) */
.language-switcher .lang-divider {
    color: rgba(248, 250, 252, 0.55);
    font-size: 0.8rem;
}

/* Mobile adjustments for language dropdown */
@media (max-width: 768px) {
    .language-switcher .lang-dropdown {
        right: -10px;
    }
}

/* Fix blog footer header alignment on mobile */
@media (max-width: 768px) {
    .blog-title, .blog-description {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Make sure contact form is fully responsive */
@media (max-width: 600px) {
    .contact-form-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Fix "Back to top" button position - ensure it's always on the right side */
.back-to-top,
a.back-to-top,
.page-wrapper + .back-to-top,
footer + .back-to-top,
body > .back-to-top,
#blog footer + .back-to-top,
.blog footer + .back-to-top,
.blog-grid-section ~ footer + .back-to-top,
.blog .back-to-top,
.blog-post-content-section ~ footer + .back-to-top,
#footer + .back-to-top,
.page-wrapper .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem !important; 
    left: auto !important;
    z-index: 99;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Active state for Back to top button */
.back-to-top.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover state */
.back-to-top:hover {
    background-color: var(--secondary);
}

/* Force correct z-index for blog page footer */
.blog footer, footer#footer, .blog-grid-section ~ footer {
    z-index: 1 !important;
}

/* ============================================
   Responsive Blog Tables - Horizontal Scroll
   ============================================ */

/* Table scroll wrapper - applied via JavaScript */
.table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 12px;
}

@media screen and (max-width: 768px) {
    .table-scroll-wrapper {
        /* Scroll shadow indicators */
        background:
            linear-gradient(to right, rgba(15, 23, 42, 1) 30%, transparent),
            linear-gradient(to left, rgba(15, 23, 42, 1) 30%, transparent),
            linear-gradient(to right, rgba(99, 102, 241, 0.3), transparent 15px),
            linear-gradient(to left, rgba(99, 102, 241, 0.3), transparent 15px);
        background-position: left center, right center, left center, right center;
        background-repeat: no-repeat;
        background-size: 40px 100%, 40px 100%, 15px 100%, 15px 100%;
        background-attachment: local, local, scroll, scroll;
    }

    .table-scroll-wrapper .comparison-table {
        min-width: 550px;
        margin: 0;
    }

    /* Scrollbar styling - webkit */
    .table-scroll-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .table-scroll-wrapper::-webkit-scrollbar-track {
        background: rgba(15, 23, 42, 0.5);
        border-radius: 4px;
    }

    .table-scroll-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 4px;
    }

    .table-scroll-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, var(--secondary), var(--primary));
    }

    /* Firefox scrollbar */
    .table-scroll-wrapper {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) rgba(15, 23, 42, 0.5);
    }

    /* Ensure table cells have proper padding */
    .table-scroll-wrapper .comparison-table td,
    .table-scroll-wrapper .comparison-table th {
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }

    /* Allow wrapping for content cells (not first column) */
    .table-scroll-wrapper .comparison-table td:not(:first-child),
    .table-scroll-wrapper .comparison-table th:not(:first-child) {
        white-space: normal;
        min-width: 140px;
    }
}

/* Smaller mobile devices - tighter spacing */
@media screen and (max-width: 480px) {
    .table-scroll-wrapper .comparison-table td,
    .table-scroll-wrapper .comparison-table th {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* === css/mobile-header-compact.css === */
/**
 * mobile-header-compact.css
 * 
 * Kompaktiškesnis header dizainas mobiliai versijai
 */

@media screen and (max-width: 768px) {
    /* Kompaktiškesnis header */
    header {
        padding: 0;
    }
    
    header .container {
        padding: 0 1.5rem !important; /* Force proper horizontal spacing */
    }
    
    nav {
        padding: 0.5rem 0; /* Sumažintas padding nuo 0.75rem */
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 52px;
    }
    
    /* Mažesnis logo */
    .logo-mark {
        width: 32px; /* Nuo 40px */
        height: 32px; /* Nuo 40px */
        margin-right: 8px; /* Nuo 12px */
    }
    
    .logo {
        font-size: 1.1rem; /* Nuo 1.25rem */
    }
    
    .logo-mask {
        font-size: 1.2rem; /* Nuo 1.5rem */
    }
    
    .logo span::after {
        bottom: -5px; /* Nuo -8px */
        height: 2px; /* Nuo 3px */
    }
    
    /* Kompaktiškesnis menu button */
    .menu-btn {
        padding: 6px; /* Nuo 10px */
        width: 22px; /* Nuo 24px */
        height: 18px; /* Nuo 20px */
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        align-self: center;
    }
    
    .menu-btn .bar {
        width: 22px; /* Nuo 24px */
        left: 6px; /* Nuo 10px */
    }
    
    .menu-btn .bar:nth-child(1) { 
        top: 8px; /* Nuo 12px */
    }
    
    .menu-btn .bar:nth-child(2) { 
        top: 14px; /* Nuo 19px */
        width: 16px; /* Nuo 18px */
        left: 9px; /* Nuo 13px */
    }
    
    .menu-btn .bar:nth-child(3) { 
        top: 20px; /* Nuo 26px */
    }
    
    /* Atnaujinta active state pozicija */
    .menu-btn.active .bar:nth-child(1),
    .menu-btn.open .bar:nth-child(1) {
        top: 14px; /* Nuo 19px */
        width: 22px; /* Nuo 24px */
    }
    
    .menu-btn.active .bar:nth-child(3),
    .menu-btn.open .bar:nth-child(3) {
        top: 14px; /* Nuo 19px */
        width: 22px; /* Nuo 24px */
    }
    
    /* Nav-links a stiliai */
    .nav-links a {
        padding: 0.75rem 1rem; /* Nuo 1rem */
        font-size: 0.95rem; /* Mažesnis šriftas */
    }
    
    /* Hero section padding adjustment */
    .hero-section {
        padding-top: calc(52px + 2rem); /* Adjusted for smaller header */
    }
    
    /* Blog post header adjustment - override inline styles */
    .blog-post-header {
        padding: calc(52px + 2rem) 0 4rem 0 !important; /* Force override inline styles */
    }
    
    /* Main content padding */
    main,
    .page-wrapper > section:first-of-type {
        padding-top: 52px; /* Adjusted for smaller header */
    }
    
    /* Blog post responsive adjustments for tablets */
    .blog-post-title {
        font-size: 2.8rem !important; /* Smaller title on tablet */
        line-height: 1.2 !important;
    }
    
    .blog-post-meta {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    header .container {
        padding: 0 1rem !important; /* Slightly less padding on very small screens */
    }
    
    nav {
        padding: 0.4rem 0; /* Dar kompaktiškesnis */
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 48px;
    }
    
    .logo-mark {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-mask {
        font-size: 1.1rem;
    }
    
    .nav-links a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Adjust content padding for extra small screens */
    .hero-section {
        padding-top: calc(48px + 1.5rem);
    }
    
    .blog-post-header {
        padding: calc(48px + 1.5rem) 0 3rem 0 !important; /* Force override inline styles */
    }
    
    main,
    .page-wrapper > section:first-of-type {
        padding-top: 48px;
    }
    
    /* Blog post responsive adjustments */
    .blog-post-title {
        font-size: 2.2rem !important; /* Smaller title on mobile */
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .blog-post-meta {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .blog-post-category {
        font-size: 0.8rem !important;
        padding: 0.25rem 0.8rem !important;
    }
}
/* === css/components/gdpr-banner.css === */
/* GDPR Cookie Banner */
.gdpr-banner {
    position: fixed !important; /* Force fixed positioning */
    bottom: 0 !important; /* Force positioning at viewport bottom */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: rgba(15, 23, 42, 0.98); /* More opaque for better readability */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid rgba(99, 102, 241, 0.5); /* Highlighted border with primary color */
    padding: 1.5rem 2rem; /* Slightly larger padding */
    z-index: 2147483647 !important; /* Maximum z-index value to ensure it's above everything */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: var(--light);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important; /* Force visibility */
    transform: translateY(0) !important; /* Force position */
    
    /* Additional properties to ensure banner is always visible */
    margin: 0 !important;
    max-height: none !important; 
    min-height: auto !important;
    overflow: visible !important;
    transition: transform 0.5s ease, opacity 0.5s ease !important;
}

.gdpr-banner.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(100%) !important;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease !important;
    pointer-events: none !important; /* Disable interaction when hidden */
}

.gdpr-content {
    flex: 1;
    padding-right: 2rem;
    max-width: 800px; /* Limit width for better readability */
}

.gdpr-title {
    font-weight: 700; /* Bolder title */
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #ffffff; /* Ensure high contrast */
}

.gdpr-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.gdpr-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-shrink: 0; /* Prevent shrinking on small screens */
}

.gdpr-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.gdpr-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.gdpr-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 100px; /* Ensure buttons are wide enough to be clickable */
    text-align: center;
}

.gdpr-btn-accept {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.gdpr-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.gdpr-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gdpr-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobiliems įrenginiams */
@media (max-width: 768px) {
    .gdpr-banner {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .gdpr-content {
        padding-right: 0;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .gdpr-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .gdpr-btn {
        padding: 0.8rem 1rem;
        min-width: 90px;
    }
}

/* Small mobile optimization */
@media (max-width: 480px) {
    .gdpr-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .gdpr-btn, .gdpr-link {
        width: 100%;
    }
}

/* === Inline SVG Icon Styles (replaces Font Awesome) === */
.cube-icon svg,
.feature-icon svg,
.hexagon-icon svg,
.service-card-icon svg,
.feature-more svg,
.service-card-link svg,
.article-link svg,
.testimonial-button svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    display: inline-block;
}

.cube-icon svg {
    width: 1.2em;
    height: 1.2em;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hexagon-icon svg {
    width: 1.2em;
    height: 1.2em;
}

.service-card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.feature-more svg,
.service-card-link svg,
.article-link svg {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.feature-more:hover svg,
.service-card-link:hover svg,
.article-link:hover svg {
    transform: translateX(5px);
}

.testimonial-button svg {
    width: 1em;
    height: 1em;
}


