:root {
    --primary: #10b981;
    --primary-light: #34d399;
    --secondary: #fbbf24;
    --secondary-light: #fcd34d;
    --accent: #06b6d4;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #0A83FE 100%);
    --gradient-secondary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, #ecfdf5 0%, #fefce8 50%, #f0fdfa 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Outfit', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

/*.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}*/

.logo {
    display: flex;
    align-items: center;
    gap: 1.0rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

.logo-icon {
    animation: pulse 2s infinite;
	width:3rem;
	height:3rem;
	display: block;
}

.logo-icon img {
	width:100%;
}

.logo-text {
    background:linear-gradient(135deg, #10b981 0%, #0A83FE 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

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

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

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

.nav-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-right-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 769px) {
    .nav-right {
        display: none !important;
    }
}

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--bg-white);
    border-color: var(--primary);
}

.lang-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.lang-selector.active .lang-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 180px;
    max-height: min(60vh, 360px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(15, 23, 42, 0.22) transparent; /* Firefox */
}

.lang-dropdown::-webkit-scrollbar {
    width: 10px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.28);
    border: 3px solid transparent;
    background-clip: padding-box;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--bg-light);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--primary);
}

/* RTL languages: keep layout LTR, apply RTL only to text */
.rtl :is(
  h1, h2, h3, h4, h5, h6,
  p, li, span, a,
  .hero-subtitle, .feature-desc, .section-desc,
  .download-subtitle, .platform-version
) {
  direction: rtl;
  text-align: right;
}

/* Prevent icons / inline-flex buttons from flipping unexpectedly */
.rtl :is(.btn-primary, .download-main-btn, .feature-btn, .platform-btn, .lang-btn) {
  direction: ltr;
}

/* Keep Windows download card centered even in RTL */
.rtl .platform-card,
.rtl .platform-card * {
  direction: ltr;
  text-align: center;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

main {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    animation: waveMove 15s linear infinite;
}

.hero-waves .wave2 {
    animation: waveMove 20s linear infinite reverse;
    opacity: 0.5;
}

.hero-waves .wave3 {
    animation: waveMove 25s linear infinite;
    opacity: 0.3;
}

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

.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    animation: orbPulse 4s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    animation-delay: -1s;
}

.hero-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: -2s;
}

.hero-orb:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 25%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 70%);
    animation-delay: -3s;
}

.hero-orb:nth-child(5) {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 15%;
    animation-delay: -1.5s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

.hero-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    color: var(--text-primary);
    text-align: left;
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    text-align: left;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.35);
}
.btn-primary i {
	display:block;
	width: 2.0rem;
	height:2.0rem;
}
.btn-primary i img {
	width:100%;
}
.btn-secondary {
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.hero-visual {
    flex: 1;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    max-width: 600px;
    position: relative;
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.13) 0%, rgba(6, 182, 212, 0.12) 50%, rgba(251, 191, 36, 0.15) 100%);
    box-shadow: 
        0 0 40px rgba(16, 185, 129, 0.4),
        0 0 80px rgba(6, 182, 212, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.glow-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.6), rgba(6, 182, 212, 0.4), rgba(255, 255, 255, 0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.glow-ring-1 {
    width: 240px;
    height: 240px;
    top: 4rem;
    left: 5rem;
    transform: translate(-50%, -50%);
    animation: rotateRing1 12s linear infinite;
}

.glow-ring-2 {
    width: 180px;
    height: 180px;
    bottom: 2rem;
    right: 3rem;
    transform: translate(50%, 50%);
    animation: rotateRing2 18s linear infinite;
}

@keyframes rotateRing1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 0.14),
            0 0 80px rgba(6, 182, 212, 0.13),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
        box-shadow: 
            0 0 60px rgba(16, 185, 129, 0.26),
            0 0 100px rgba(6, 182, 212, 0.25),
            inset 0 0 50px rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 0.14),
            0 0 80px rgba(6, 182, 212, 0.13),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes rotateRing2 {
    0% {
        transform: translate(50%, 50%) rotate(0deg) scale(1);
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 0.24),
            0 0 80px rgba(6, 182, 212, 0.23),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translate(50%, 50%) rotate(-180deg) scale(1.15);
        box-shadow: 
            0 0 70px rgba(251, 191, 36, 0.15),
            0 0 120px rgba(16, 185, 129, 0.14),
            inset 0 0 60px rgba(255, 255, 255, 0.35);
    }
    100% {
        transform: translate(50%, 50%) rotate(-360deg) scale(1);
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 0.24),
            0 0 80px rgba(6, 182, 212, 0.23),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.hero-mockup {
    position: relative;
    width: 100%;
    animation: floatUpDown 4s ease-in-out infinite;
}

.hero-mockup img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.hero-mockup .hero-glow-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.mockup-frame {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
}

.mockup-frame:hover {
    transform: translateY(-5px);
}

.mockup-toolbar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca42; }

.mockup-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    min-height: 300px;
}

.mockup-sidebar {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-item:hover {
    background: var(--bg-white);
    color: var(--primary);
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--primary);
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-main {
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mockup-image-placeholder {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 2px dashed rgba(16, 185, 129, 0.2);
}

.feature-section {
    padding: 6rem 2rem;
    position: relative;
}

.feature-section:nth-child(even) {
    background: var(--bg-light);
}

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

.feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.feature-wrapper.reverse {
    direction: rtl;
}

.feature-wrapper.reverse > * {
    direction: ltr;
}

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

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 50px;
    font-size: 1.0rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.feature-tag i {
	display:blockl;
	width:1.4rem;
	height:1.4rem;
}
.feature-tag i img {
	width:100%;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.feature-visual {
    position: relative;
    max-width: 100%;
}
.feature-visual img {
    width: 100%;
}

.compare-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: ew-resize;
    user-select: none;
}

.compare-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.compare-before {
    z-index: 1;
}

.compare-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.compare-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.before-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.after-placeholder {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.compare-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--text-muted);
    opacity: 0.5;
}

.after-placeholder svg {
    color: var(--primary);
    opacity: 0.8;
}

.compare-placeholder span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
	display: none;
}

.after-placeholder span {
    color: var(--primary);
}

.compare-blur-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.compare-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /*width: 4px;*/
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.compare-slider-circle {
    position: relative;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.compare-slider-circle svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.compare-slider:hover .compare-slider-circle {
    transform: scale(1.1);
}

.compare-labels {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 5;
    pointer-events: none;
}

.compare-label {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-icon-large {
    font-size: 4rem;
    opacity: 0.3;
}

.repair-section {
    background: var(--bg-light);
}

.repair-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.repair-header .feature-tag,
.repair-header .feature-title,
.repair-header .feature-desc {
    text-align: center;
}

.repair-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 auto;
    justify-content: center;
}

.repair-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
}

.repair-card:nth-child(n+3) {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.repair-card-content {
    flex: 1;
}

.repair-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.repair-card-content p {
    font-size: 1.0rem;
    color: var(--text-secondary);
    line-height: 2.0;
}

.repair-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.repair-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.repair-card:hover .repair-card-icon {
    background: var(--gradient-primary);
}

.repair-card:hover .repair-card-icon svg {
    color: white;
}

.repair-compare {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.repair-compare-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.repair-slider {
	aspect-ratio: 4 / 1.6;
}

.repair-before {
    position: relative;
}

.scratch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.scratch-line {
    position: absolute;
    background: rgba(100, 100, 100, 0.4);
    transform-origin: center;
}

.scratch-line:nth-child(1) {
    width: 60%;
    height: 2px;
    top: 30%;
    left: 20%;
    transform: rotate(-15deg);
}

.scratch-line:nth-child(2) {
    width: 40%;
    height: 3px;
    top: 55%;
    left: 30%;
    transform: rotate(25deg);
}

.scratch-line:nth-child(3) {
    width: 50%;
    height: 2px;
    top: 70%;
    left: 15%;
    transform: rotate(-5deg);
}

.stats {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-pic {
	width:3.0rem;
	height:3.0rem;
	margin: 0 auto;
}

.stat-pic img {
	width:100%;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0rem;
}

.languages {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.languages-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.language-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--text-primary);
}

.language-tag.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(6, 182, 212, 0.14) 100%);
    border-color: rgba(16, 185, 129, 0.35);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.language-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.download {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.download-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #d97706;
    margin-bottom: 1.5rem;
}

.download h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.download-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.download-main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
}

.download-main-btn i {
    width: 2.0rem;
    height: 2.0rem;
}
.download-main-btn i img {
	width:100%;
}

.download-platforms {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
}

.platform-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background:#f5f5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.platform-icon img {
	width:70%;
}

.platform-card:hover .platform-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.platform-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.platform-version {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background:#f7f7f7;
    border-radius: 50px;
    font-size: 1.0rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
	font-weight: bold;
}

.platform-card:hover .platform-btn {
    background: var(--gradient-primary);
    color: white;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.download-feature svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

footer {
    padding: 3rem 2rem;
    background: var(--text-primary);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
	display: flex;
	align-content: center;
	justify-content: center;
	gap:1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1,
    .hero-subtitle {
        text-align: center;
    }

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

    .hero-visual {
        max-width: 100%;
    }

    .feature-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-wrapper.reverse {
        direction: ltr;
    }

    .feature-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .mockup-content {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        display: none;
    }

    .download-platforms {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .repair-card,
    .repair-card:nth-child(n+3) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

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

    .nav-right-desktop {
        display: none;
    }

    .nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem;
    }

    .nav-right {
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: 12px;
        margin-top: 0.5rem;
    }

    .nav-center.active .nav-right {
        display: flex;
		width:100%;
    }
	.hero-content {
		padding-bottom:3rem;
	}
	.glow-ring-1 {
		width:160px;
		height:160px;
	}
	.glow-ring-2 {
		width:120px;
		height:120px;
	}

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

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .feature-section {
        padding: 4rem 1rem;
    }

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

    .download-features {
		display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
	.download-feature {
  flex: 0 0 calc(50% - 0.5rem);
  box-sizing: border-box;
}
	.repair-slider {
		aspect-ratio: 4 / 4;
	}
	.stats {
		padding:2rem 2rem;
	}
	.download {
		padding:3rem 2rem;
	}
	.footer-links {
		gap:0.5rem;
		font-size:0.9rem;
	}
	footer {
		padding:1.5rem 2rem;
	}
	.footer-copyright {
		font-size:0.8rem;
	}
	
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
	text-align: center;
	font-size:0.9rem;
	color:#ABD0BC;
}

.scroll-indicator .scroll-mouse {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    position: relative;
	margin: 0 auto;
}

.scroll-indicator .scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-indicator .scroll-text {
    display: block;
    margin-top: 0.4rem;
}

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

@keyframes scrollDown {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    z-index: 999;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
