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

:root {
    --primary: #6b6b6b;
    --secondary: #8a8a8a;
    --accent: #aaaaaa;
    --purple: #7a7a7a;
    --pink: #9a9a9a;
    --blue: #5a5a5a;
    --cyan: #4a4a4a;
    --green: #6a6a6a;
    --yellow: #8a8a8a;
    --orange: #7a7a7a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 40%, white, transparent),
        radial-gradient(1px 1px at 33% 60%, white, transparent),
        radial-gradient(2px 2px at 55% 80%, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 3s linear infinite;
    opacity: 0.8;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 25% 25%, white, transparent),
        radial-gradient(1px 1px at 75% 75%, white, transparent),
        radial-gradient(1px 1px at 40% 60%, white, transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: sparkle 5s linear infinite reverse;
    opacity: 0.6;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 15% 45%, white, transparent),
        radial-gradient(1px 1px at 85% 25%, white, transparent);
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: sparkle 7s linear infinite;
    opacity: 0.4;
}

@keyframes sparkle {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(170, 170, 170, 0.2);
    padding: 15px 0;
    animation: slideDown 0.5s ease-out;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    height: 60px;
    overflow: visible;
}

.logo-img {
    height: 180px;
    width: auto;
    max-height: 180px;
    min-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(170, 170, 170, 0.5));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(170, 170, 170, 0.8)) drop-shadow(0 0 30px rgba(138, 138, 138, 0.6));
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

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

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    padding-left: 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    min-width: 70px;
}

.lang-flag {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
}

.lang-btn[data-lang="tr"] .lang-flag {
    background-image: url("https://flagcdn.com/w40/tr.png");
}

.lang-btn[data-lang="en"] .lang-flag {
    background-image: url("https://flagcdn.com/w40/gb.png");
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 170, 170, 0.3);
    border-radius: 6px;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 12px;
    padding-left: 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.lang-option:first-child {
    border-radius: 6px 6px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 6px 6px;
}

.lang-option:hover {
    background: rgba(170, 170, 170, 0.2);
    color: #ffffff;
}

.lang-option .lang-flag {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2px;
}

.lang-option[data-lang="tr"] .lang-flag {
    background-image: url("https://flagcdn.com/w40/tr.png");
}

.lang-option[data-lang="en"] .lang-flag {
    background-image: url("https://flagcdn.com/w40/gb.png");
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(170, 170, 170, 0.3);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(170, 170, 170, 0.2);
    padding: 15px 0;
    animation: slideUp 0.5s ease-out;
    flex-shrink: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 30px;
    overflow: visible;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(170, 170, 170, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(170, 170, 170, 0.7)) drop-shadow(0 0 25px rgba(138, 138, 138, 0.5));
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.footer-link:hover::after {
    width: 100%;
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 10px 20px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    overflow: hidden;
    min-height: 0;
}

/* Devices Container */
.devices {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    animation: fadeInUp 1s ease-out;
    flex-shrink: 0;
}

/* Laptop */
.laptop-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.laptop {
    position: relative;
    width: 420px;
    height: 294px;
    transform-style: preserve-3d;
}

.laptop-screen {
    width: 100%;
    height: 232px;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border: 6px solid #0a0a0a;
    border-radius: 10px 10px 3px 3px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(170, 170, 170, 0.1);
    transform: perspective(1000px) rotateX(-5deg);
    transition: transform 0.3s ease;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3d3d3d;
    border-radius: 0 0 4px 4px;
}

.laptop-screen::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, #4a4a4a, #2d2d2d);
    border-radius: 0 0 8px 8px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.screen-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(170, 170, 170, 0.6)) drop-shadow(0 0 30px rgba(138, 138, 138, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }
}

.screen-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(170, 170, 170, 0.03) 2px,
            rgba(170, 170, 170, 0.03) 4px
        );
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.loading-dots {
    display: flex;
    gap: 12px;
    z-index: 1;
}

.loading-dots span {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(170, 170, 170, 0.6);
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    40% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.laptop-base {
    width: 100%;
    height: 8px;
    background: linear-gradient(to bottom, #4a4a4a, #2d2d2d);
    border-radius: 0 0 12px 12px;
    margin-top: -8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.laptop-keyboard {
    width: 90%;
    height: 40px;
    background: linear-gradient(to bottom, #2d2d2d, #0a0a0a);
    border: 2px solid #3d3d3d;
    border-radius: 6px;
    margin: 15px auto 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.laptop-keyboard::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        #3d3d3d 0px,
        #3d3d3d 8px,
        transparent 8px,
        transparent 16px
    );
}

/* Phone */
.phone-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.phone {
    position: relative;
    width: 250px;
    height: 500px;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border: 6px solid #0a0a0a;
    border-radius: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(138, 138, 138, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: calc(100% - 12px);
    height: calc(100% - 100px);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 34px;
    margin: 6px;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(138, 138, 138, 0.03) 2px,
            rgba(138, 138, 138, 0.03) 4px
        );
    animation: scan-phone 6s linear infinite;
}

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

.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.phone-screen-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(138, 138, 138, 0.6)) drop-shadow(0 0 25px rgba(122, 122, 122, 0.4));
    animation: phoneLogoFloat 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes phoneLogoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        opacity: 1;
    }
}

.phone-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-dots span {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--purple));
    border-radius: 50%;
    animation: pulse-phone 1.6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(138, 138, 138, 0.6);
}

.phone-dots span:nth-child(1) { animation-delay: 0s; }
.phone-dots span:nth-child(2) { animation-delay: 0.3s; }
.phone-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse-phone {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.phone-button {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 7px;
    background: #3d3d3d;
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content */
.content {
    text-align: left;
    animation: fadeInUp 1s ease-out 0.5s both;
    flex-shrink: 0;
    width: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

.main-title {
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}

.letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--purple));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        fadeInUp 0.8s ease-out both,
        gradientShift 3s ease infinite,
        bounceLetter 2s ease-in-out infinite;
    animation-delay: var(--delay), calc(var(--delay) + 1s), calc(var(--delay) + 2s);
    text-shadow: 0 0 30px rgba(170, 170, 170, 0.5);
    filter: drop-shadow(0 0 10px rgba(170, 170, 170, 0.3));
}

.letter.space {
    width: 0.3em;
}

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

@keyframes bounceLetter {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-5px) rotate(2deg); }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.subtitle {
    font-size: clamp(14px, 2.5vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 1.5s both, pulse 3s ease-in-out infinite 2s;
    margin: 0;
    text-align: left;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 60%;
    right: 15%;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 20%;
    left: 20%;
    animation: floatShape 18s ease-in-out infinite;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: var(--purple);
    top: 30%;
    right: 30%;
    animation: floatShape 22s ease-in-out infinite reverse;
}

.shape-5 {
    width: 220px;
    height: 220px;
    background: var(--cyan);
    bottom: 10%;
    right: 10%;
    animation: floatShape 17s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, -100px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* Hover Effects */
.phone-container:hover .phone {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 
        0 30px 80px rgba(138, 138, 138, 0.4),
        inset 0 0 30px rgba(138, 138, 138, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .devices {
        gap: 60px;
        height: 450px;
    }

    .laptop {
        width: 390px;
        height: 273px;
    }

    .laptop-screen {
        height: 215px;
    }

    .phone {
        width: 172px;
        height: 344px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
    gap: 10px;
        flex-wrap: wrap;
}

    .logo {
        height: 50px;
    }
    
    .logo-img {
        height: 150px;
        max-height: 150px;
        min-height: 135px;
    }

    .nav-menu {
        gap: 12px;
    }

    .language-selector {
        margin-left: 15px;
        gap: 4px;
    }

    .lang-btn {
        padding: 5px 10px;
        padding-left: 28px;
        font-size: 12px;
    }
    
    .lang-btn .lang-flag {
        width: 16px;
        height: 12px;
        left: 6px;
    }
    
    .lang-option .lang-flag {
        width: 16px;
        height: 12px;
        left: 6px;
    }

    .nav-link {
        font-size: 12px;
    }

    .language-selector {
        margin-left: 10px;
        gap: 3px;
    }

    .lang-btn {
        padding: 4px 8px;
        padding-left: 26px;
        font-size: 11px;
    }
    
    .lang-btn .lang-flag {
        width: 14px;
        height: 10px;
        left: 5px;
    }
    
    .lang-option .lang-flag {
        width: 14px;
        height: 10px;
        left: 5px;
    }

    .footer {
        padding: 10px 0;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 10px;
    }

    .footer-content {
        gap: 4px;
    }

    .footer-logo {
        height: 24px;
    }
    
    .footer-logo-img {
        height: 72px;
        max-height: 72px;
    }

    .footer-text {
        font-size: 11px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 11px;
    }

    .container {
        gap: 15px;
        padding: 80px 15px 3px 15px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .content {
        order: 2;
        flex-shrink: 0;
        width: 100%;
        display: block;
        text-align: center;
        visibility: visible;
        opacity: 1;
    }

    .main-title {
        font-size: clamp(24px, 6vw, 45px);
        margin-bottom: 10px;
        line-height: 1.1;
        justify-content: center;
    }

    .subtitle {
        font-size: clamp(11px, 2.2vw, 16px);
        margin: 0;
        text-align: center;
    }

    .devices {
        order: 1;
        flex-direction: row;
        gap: 0;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .phone-container {
        animation-delay: 0.5s;
    }

    .phone {
        width: 150px;
        height: 300px;
        border: 4px solid #0a0a0a;
        border-radius: 35px;
        transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.6),
            inset 0 0 15px rgba(138, 138, 138, 0.15);
    }

    .phone::before {
        width: 70px;
        height: 20px;
        top: 15px;
    }

    .phone-screen {
        width: calc(100% - 8px);
        height: calc(100% - 80px);
        margin: 4px;
        margin-top: 28px;
        border-radius: 31px;
    }

    .phone-button {
        width: 60px;
        height: 6px;
        bottom: 15px;
    }

    .phone-screen-logo {
        width: 40px;
        height: 40px;
    }

    .phone-dots {
        gap: 10px;
    }

    .phone-dots span {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 15px;
        flex-wrap: wrap;
    }

    .logo {
        height: 45px;
    }
    
    .logo-img {
        height: 135px;
        max-height: 135px;
        min-height: 120px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 11px;
    }

    .language-selector {
        margin-left: 10px;
        gap: 3px;
    }

    .lang-btn {
        padding: 4px 8px;
        padding-left: 26px;
        font-size: 11px;
    }
    
    .lang-btn .lang-flag {
        width: 14px;
        height: 10px;
        left: 5px;
    }
    
    .lang-option .lang-flag {
        width: 14px;
        height: 10px;
        left: 5px;
    }

.footer {
        padding: 8px 0;
    }

    .footer-container {
        padding: 0 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

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

    .footer-logo {
        height: 20px;
    }
    
    .footer-logo-img {
        height: 60px;
        max-height: 60px;
    }

    .footer-text {
        font-size: 10px;
}

.footer-links {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .footer-link {
        font-size: 10px;
    }

    .container {
        gap: 12px;
        padding: 70px 10px 2px 10px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .content {
        order: 2;
        width: 100%;
        text-align: center;
        visibility: visible;
        opacity: 1;
    }

    .main-title {
        font-size: clamp(20px, 5.5vw, 36px);
        margin-bottom: 8px;
        gap: 3px;
        line-height: 1.1;
        justify-content: center;
    }

    .subtitle {
        font-size: clamp(10px, 1.8vw, 14px);
        margin: 0;
        text-align: center;
    }

    .devices {
        order: 1;
        gap: 0;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .phone {
        width: 130px;
        height: 260px;
        border: 3px solid #0a0a0a;
        border-radius: 30px;
        transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.6),
            inset 0 0 12px rgba(138, 138, 138, 0.15);
    }

    .phone::before {
        width: 60px;
        height: 18px;
        top: 12px;
        border-radius: 0 0 12px 12px;
    }

    .phone-screen {
        width: calc(100% - 6px);
        height: calc(100% - 70px);
        margin: 3px;
        margin-top: 24px;
        border-radius: 27px;
    }

    .phone-button {
        width: 50px;
        height: 4px;
        bottom: 12px;
        border-radius: 2px;
    }

    .phone-screen-logo {
        width: 35px;
        height: 35px;
    }

    .phone-dots {
        gap: 8px;
    }

    .phone-dots span {
        width: 10px;
        height: 10px;
    }
}
