/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #00ff88;
    --border: #1f1f1f;
    --cosmic-tilt-x: 0px;
    --cosmic-tilt-y: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Green Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 6px;
    border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: #00dd77;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0;
    gap: 20px;
    overflow: visible;
}

@media (max-width: 768px) {
    .header-content {
        height: 60px;
        gap: 12px;
    }
}

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

.logo-img {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: -40px 0;
}

@media (max-width: 1024px) {
    .logo-img {
        height: 100px;
        margin: -18px 0;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 85px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
        margin: 0;
    }
}

.nav {
    display: flex;
    gap: 32px;
}

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

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

.btn-connect {
    padding: 6px 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-connect {
        padding: 5px 10px;
        font-size: 11px;
    }
}

.btn-connect:hover {
    background: var(--border);
    border-color: var(--text-secondary);
}

/* Marquee Ticker */
.marquee-wrapper {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 12px 0;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    letter-spacing: 0.5px;
}

.marquee-content .separator {
    color: var(--text-secondary);
    padding: 0 15px;
}

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

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-sidebar {
    position: sticky;
    top: 100px;
}

.nav-numbers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-number {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-number.active {
    color: var(--text-primary);
}

.nav-number:hover {
    color: var(--text-primary);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent) 0%, #00ddff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.hero-buttons::-webkit-scrollbar {
    height: 4px;
}

.hero-buttons::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.4);
    border-radius: 999px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.pricing-btn,
.cookie-btn,
.btn-connect,
.project-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    isolation: isolate;
    overflow: hidden;
    color: #d8ffee;
    border: 2px solid transparent;
    background:
        radial-gradient(circle at 25% 25%, rgba(8, 51, 65, 0.95) 0%, rgba(3, 11, 20, 0.9) 45%, rgba(1, 5, 8, 0.85) 100%) padding-box,
        linear-gradient(140deg, rgba(16, 255, 162, 0.95) 0%, rgba(86, 255, 190, 0.85) 45%, rgba(0, 186, 255, 0.8) 70%, rgba(16, 255, 162, 0.95) 100%) border-box;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-size: 135% 135%, 220% 220%;
    background-position: 24% 48%, 0% 52%;
    animation: borderShift 9s ease-in-out infinite;
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.65), inset 0 1px 3px rgba(255, 255, 255, 0.1);
    transition: color 0.35s ease, border-color 0.35s ease, background-position 1.2s ease;
    min-height: 48px;
}

.btn::before,
.btn-primary::before,
.btn-secondary::before,
.btn-outline::before,
.pricing-btn::before,
.cookie-btn::before,
.btn-connect::before,
.project-btn::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.95), transparent 60%),
        radial-gradient(2px 2px at 80% 70%, rgba(64, 255, 191, 0.7), transparent 55%),
        url("./sparkling.BV_vcdw9.webp");
    background-size: 200% 200%, 150% 150%, 260% 260%;
    background-position: 0% 0%, 60% 30%, 42% 72%;
    mix-blend-mode: screen;
    opacity: 0.9;
    pointer-events: none;
    will-change: transform, background-position;
    animation: starFloat 16s ease-in-out infinite;
    transform: translate3d(var(--cosmic-tilt-x, 0px), var(--cosmic-tilt-y, 0px), 0);
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.btn::after,
.btn-primary::after,
.btn-secondary::after,
.btn-outline::after,
.pricing-btn::after,
.cookie-btn::after,
.btn-connect::after,
.project-btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(16, 255, 162, 0.55);
    background: linear-gradient(120deg, rgba(16, 255, 162, 0.15), rgba(0, 186, 255, 0.2), rgba(16, 255, 162, 0.15));
    opacity: 0.35;
    animation: borderGlow 6s ease-in-out infinite;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.pricing-btn:hover,
.cookie-btn:hover,
.btn-connect:hover,
.project-btn:hover {
    color: #ffffff;
    border-color: rgba(16, 255, 162, 0.95);
    animation: borderShiftFast 6s linear infinite;
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-outline:hover::before,
.pricing-btn:hover::before,
.cookie-btn:hover::before,
.btn-connect:hover::before,
.project-btn:hover::before {
    animation: starRush 9s ease-in-out infinite;
    opacity: 0.95;
}

.header .btn-connect {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 12px;
}

.header .btn-connect::before {
    inset: 2px;
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.external-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.external-link svg {
    transition: transform 0.3s ease;
}

.external-link:hover svg {
    transform: translate(2px, -2px);
}

.scroll-indicator {
    margin-top: 60px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Section Styles */
.section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
}

.section-sidebar {
    position: sticky;
    top: 100px;
}

.section-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.section-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.section-text-large {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
}

.section-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

/* Matrix Background Effect */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.matrix-bg::before,
.matrix-bg::after {
    content: '0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101';
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 15px;
    color: rgba(0, 255, 136, 0.25);
    word-wrap: break-word;
    white-space: pre-wrap;
    letter-spacing: 2px;
    width: 100%;
}

.matrix-bg::before {
    top: 0;
    animation: matrix-fall-1 60s linear infinite;
}

.matrix-bg::after {
    top: -100%;
    animation: matrix-fall-2 80s linear infinite;
}

@keyframes matrix-fall-1 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes matrix-fall-2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(200%);
    }
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.copyright {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-sidebar,
    .hero-links {
        display: none;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .nav {
        display: none;
    }

    .tech-preview {
        padding: 50px 30px;
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-text-large {
        font-size: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

.hero-content,
.section-content {
    animation: fadeIn 0.8s ease-out;
}

/* Pricing Section - Grid with Slider */
.pricing-section {
    padding: 80px 0;
}

.pricing-slider-wrapper {
    position: relative;
    margin-top: 40px;
    padding: 0 60px;
    max-height: 520px;
}

.pricing-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    touch-action: pan-x;
}

@media (max-width: 768px) {
    .pricing-grid {
        min-height: 650px;
    }
}

.pricing-grid .pricing-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateX(100px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.pricing-grid .pricing-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.pricing-grid .pricing-card.prev {
    transform: translateX(-100px);
}

.pricing-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.pricing-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.pricing-prev {
    left: 5px;
}

.pricing-next {
    right: 5px;
}

.pricing-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: -72px;
    position: relative;
    z-index: 10;
}

.pricing-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 5px;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
    max-height: 480px;
}

@media (max-width: 768px) {
    .pricing-card {
        max-height: 620px;
        padding: 16px 18px;
    }
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), var(--bg-secondary));
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.pricing-header p {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 18px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-right: 8px;
}

.price-old {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.pricing-features {
    list-style: none;
    margin-bottom: 18px;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px 10px;
    column-gap: 10px;
}

.pricing-features li {
    font-size: 10px;
    color: var(--text-secondary);
    padding: 2px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.3;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.pricing-features .feature-header {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    grid-column: 1 / -1;
}

.pricing-features .feature-header::before {
    content: "";
}

.pricing-btn {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
}

/* Contact Form Section */
.contact-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
}

.contact-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.contact-form .btn {
    width: 100%;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Language Switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 8px;
        flex-wrap: wrap;
    }
}

.language-switcher {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

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

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.project-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), var(--bg-secondary));
}

.project-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.project-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.project-tag {
    font-size: 12px;
    padding: 4px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--accent);
    font-weight: 600;
}

.project-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

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

.tech-badge {
    font-size: 12px;
    padding: 6px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-weight: 500;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
}

.project-btn svg {
    width: 14px;
    height: 14px;
}

/* Tech Stack Grid */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.tech-preview {
    position: relative;
    margin-top: 48px;
    margin-bottom: 40px;
    border-radius: 28px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 60px 40px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(0, 255, 136, 0.1), transparent 60%), #050913;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 0 40px rgba(0, 255, 136, 0.05);
    min-height: 360px;
}

.tech-preview::before {
    content: "";
    position: absolute;
    inset: -80px;
    background: url("./sparkling.BV_vcdw9.webp") repeat;
    background-size: 260% 260%;
    opacity: 0.35;
    animation: starFloat 30s linear infinite;
}

.tech-preview-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.08), transparent 60%);
    filter: blur(8px);
    pointer-events: none;
}

.parallax-asset {
    position: absolute;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --parallax-shift-x: 0px;
    --parallax-shift-y: 0px;
    --base-translate-x: 0px;
    --base-translate-y: 0px;
    transform: translate3d(calc(var(--base-translate-x) + var(--parallax-shift-x)), calc(var(--base-translate-y) + var(--parallax-shift-y)), 0);
}

.device {
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65));
}

.device-img {
    display: block;
    width: 110%;
    height: auto;
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 30px;
}

.device-desktop {
    width: clamp(300px, 38vw, 520px);
    top: -35px;
    right: 6%;
}

.device-mobile {
    width: clamp(130px, 18vw, 220px);
    bottom: 20px;
    left: 8%;
}

.floating-desktop {
    animation: floatDesktop 12s ease-in-out infinite;
}

.floating-mobile {
    animation: floatMobile 10s ease-in-out infinite;
}

.tech-preview-caption {
    position: relative;
    z-index: 1;
    margin-top: 220px;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.tech-stack-item {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-stack-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.tech-stack-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.tech-stack-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-code-select {
    width: 130px;
    padding: 14px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-primary);
}

.phone-input {
    flex: 1;
}

.country-code-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent);
    padding: 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-link {
    color: var(--accent);
    text-decoration: underline;
    margin-left: 8px;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .pricing-grid .pricing-card {
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    /* Section labels stay in place on mobile - no sticky behavior */
    .section-sidebar {
        position: static;
        top: auto;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-label {
        margin-bottom: 16px;
    }
    
    .pricing-slider-wrapper {
        padding: 0;
        max-height: 700px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid .pricing-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Hide pricing navigation arrows on mobile - swipe only */
    .pricing-nav {
        display: none;
    }
    
    /* 3 columns for pricing features on mobile */
    .pricing-features {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 4px 6px;
    }
    
    .pricing-features li {
        font-size: 9px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .tech-preview {
        padding: 36px 20px 120px;
        min-height: 420px;
    }

    .device-desktop {
        width: 88%;
        top: -10px;
        right: auto;
        left: 50%;
        --base-translate-x: -50%;
    }

    .device-mobile {
        width: 46%;
        left: 68%;
        bottom: 30px;
        --base-translate-x: -50%;
    }

    .tech-preview-caption {
        margin-top: 260px;
        text-align: center;
        font-size: 12px;
        letter-spacing: 0.05em;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
    }
    
    .country-code-select {
        width: 100%;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .language-switcher {
        order: -1;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
.cookie-btn {
        flex: 1;
    }
}

.floating-actions {
    position: fixed;
    bottom: 24px;
    z-index: 1200;
}

.floating-actions-left {
    left: 24px;
}

.floating-actions-right {
    right: 24px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    min-height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-btn::before {
    inset: 2px;
}

.floating-btn svg {
    pointer-events: none;
    color: currentColor;
}

@media (max-width: 640px) {
    .floating-actions {
        bottom: 16px;
    }

    .floating-actions-left {
        left: 16px;
    }

    .floating-actions-right {
        right: 16px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }
}

/* Animated Snake Border Button */
.btn-snake {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-snake::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        var(--accent) 0%, 
        var(--accent) 25%, 
        transparent 25%, 
        transparent 50%, 
        var(--accent) 50%, 
        var(--accent) 75%, 
        transparent 75%, 
        transparent 100%
    );
    background-size: 20px 20px;
    border-radius: 8px;
    animation: snake-border 1.5s linear infinite;
    z-index: -1;
}

.btn-snake::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    border-radius: 6px;
    z-index: -1;
}

.btn-snake:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

@keyframes snake-border {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

@keyframes borderShift {
    0% {
        background-position: 20% 40%, 0% 50%;
    }
    30% {
        background-position: 10% 60%, 40% 80%;
    }
    60% {
        background-position: 55% 25%, 110% 20%;
    }
    100% {
        background-position: 20% 40%, 0% 50%;
    }
}

@keyframes borderShiftFast {
    0% {
        background-position: 30% 30%, 0% 42%;
    }
    25% {
        background-position: 18% 62%, 45% 72%;
    }
    50% {
        background-position: 62% 40%, 115% 38%;
    }
    75% {
        background-position: 28% 74%, 65% 92%;
    }
    100% {
        background-position: 30% 30%, 0% 42%;
    }
}

@keyframes starFloat {
    0% {
        background-position: 0% 0%, 60% 30%, 40% 70%;
    }
    25% {
        background-position: 24% 38%, 85% 80%, 12% 20%;
    }
    45% {
        background-position: 60% 12%, 20% 45%, 78% 92%;
    }
    70% {
        background-position: 32% 82%, 6% 24%, 55% 8%;
    }
    100% {
        background-position: 0% 0%, 60% 30%, 40% 70%;
    }
}

@keyframes starRush {
    0% {
        background-position: 0% 0%, 60% 30%, 42% 72%;
    }
    20% {
        background-position: 55% 26%, 28% 62%, 60% 32%;
    }
    40% {
        background-position: 20% 48%, 70% 42%, 28% 64%;
    }
    60% {
        background-position: 50% 26%, 40% 44%, 48% 36%;
    }
    80% {
        background-position: 24% 62%, 22% 42%, 58% 60%;
    }
    100% {
        background-position: 0% 0%, 60% 30%, 42% 72%;
    }
}

@keyframes floatDesktop {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatMobile {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.015);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes borderGlow {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.55;
    }
}

/* SEO Content Section */
.seo-content-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seo-content-section .section-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content-section .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.seo-content-section .section-title:first-child {
    margin-top: 0;
}

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

.seo-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.seo-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .seo-content-section .section-title {
        font-size: 1.5rem;
    }
    
    .seo-content-section .section-text {
        font-size: 1rem;
    }
    
    .seo-list li {
        font-size: 1rem;
    }
}


