/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #161616;
    --accent: #c8ff00;
    --accent2: #00d4ff;
    --text: #f0f0f0;
    --text-muted: #888;
    --border: rgba(255,255,255,0.08);
    --card-bg: rgba(255,255,255,0.04);
    --font-body: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== CURSOR ===== */
.cursor {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
    width: 32px; height: 32px;
    border: 1px solid rgba(200,255,0,0.4);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.12s ease, width 0.3s, height 0.3s;
}
body:has(a:hover) .cursor { width: 12px; height: 12px; background: var(--accent); }
body:has(a:hover) .cursor-follower { width: 48px; height: 48px; border-color: rgba(200,255,0,0.6); }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 48px;
    background: transparent;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(20px);
    padding: 14px 48px;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0 auto;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    padding: 10px 22px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,255,0,0.3); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s;
}
.mm-link:hover { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: #000;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,255,0,0.35); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; padding: 16px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 48px 80px;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(200,255,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(200,255,0,0.08);
    border: 1px solid rgba(200,255,0,0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}
.hero-line { display: block; }
.hero-line { transform: translateY(110%); opacity: 0; }
.hero-line--accent { color: var(--accent); }
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}
.hero-scroll span { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted); writing-mode: vertical-rl; }
.scroll-track {
    width: 2px;
    height: 50px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    order: -1;
}
.scroll-thumb {
    width: 100%;
    height: 40%;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollThumb 2s ease-in-out infinite;
}
@keyframes scrollThumb { 0% { transform: translateY(-100%); } 100% { transform: translateY(400%); } }

/* Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    padding: 16px 0;
    background: var(--bg);
}
.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.marquee-track span:nth-child(even) { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-plus { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }

/* ===== SERVICES ===== */
.services { padding: 120px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.service-card {
    background: var(--bg);
    padding: 40px 32px;
    transition: background 0.3s;
    position: relative;
}
.service-card:hover { background: var(--bg3); }
.service-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(200,255,0,0.3);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}
.service-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== DEMOS ===== */
.demos { padding: 120px 0; }
.demos > .container { margin-bottom: 64px; }
.demos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    background: var(--border);
}
.demo-card {
    display: block;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.demo-card--wide { grid-column: span 2; }
.demo-card:hover { background: var(--bg2); }
.demo-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.demo-card--wide .demo-img-wrap { height: 360px; }
.demo-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: brightness(0.7) saturate(0.9);
}
.demo-card:hover .demo-img { transform: scale(1.06); filter: brightness(0.8) saturate(1.1); }
.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 50%);
}
.demo-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    z-index: 2;
}
.demo-info { padding: 28px 32px 32px; }
.demo-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.demo-tags span {
    padding: 4px 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.demo-card:hover .demo-tags span:first-child { background: rgba(200,255,0,0.12); color: var(--accent); }
.demo-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.demo-card:hover .demo-info h3 { color: var(--accent); }
.demo-info p { font-size: 0.875rem; color: var(--text-muted); }
.demo-cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}
.demo-card:hover .demo-cta { opacity: 1; transform: translateX(0); }
.demo-cta span { transition: transform 0.3s; }
.demo-card:hover .demo-cta span { transform: translateX(4px); }

/* ===== WHY ===== */
.why { padding: 120px 0; background: var(--bg2); }
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}
.why-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-icon {
    font-size: 1rem;
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}
.why-list strong { display: block; font-weight: 600; margin-bottom: 6px; }
.why-list p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.why-float-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s, transform 0.3s;
}
.why-float-card:hover { border-color: rgba(200,255,0,0.3); transform: translateY(-4px); }
.wfc-icon { font-size: 1.5rem; }
.wfc-text strong { display: block; font-weight: 600; font-size: 0.95rem; }
.wfc-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.contact-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-info a { color: var(--accent); font-weight: 500; transition: opacity 0.2s; }
.contact-info a:hover { opacity: 0.7; }
.contact-info span { color: var(--text-muted); font-size: 0.875rem; }
.contact-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(200,255,0,0.4); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 60px 48px 32px; max-width: 1280px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-col strong { font-weight: 600; margin-bottom: 4px; }
.footer-links-col a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--text); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
    position: relative;
    margin-right: 16px;
    flex-shrink: 0;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 14px 7px 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}
.lang-current:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.lang-selector.open .lang-current {
    border-color: rgba(200,255,0,0.4);
    background: rgba(200,255,0,0.06);
}
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-code { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.lang-chevron {
    font-size: 0.6rem;
    color: var(--text-muted);
    transition: transform 0.25s;
    margin-left: 2px;
}
.lang-selector.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 8px;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 500;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-align: left;
    width: 100%;
}
.lang-option:hover {
    background: rgba(255,255,255,0.07);
    color: var(--text);
}
.lang-option.active {
    background: rgba(200,255,0,0.08);
    color: var(--accent);
}
.lang-option span { font-size: 0.85rem; }

/* RTL support for Arabic */
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; transform-origin: top left; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { justify-content: flex-end; }
[dir="rtl"] .section-title, [dir="rtl"] .section-label { text-align: right; }
[dir="rtl"] .why-list li { flex-direction: row-reverse; }
[dir="rtl"] .contact-inner { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* ===== HERO 3D CRYSTAL ===== */
.hero-crystal {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 21vw, 320px);
    aspect-ratio: 3 / 4;
    z-index: 1;
    pointer-events: none;
    /* opacity controlled entirely by JS — no CSS transition here */
    filter: drop-shadow(0 0 50px rgba(200,255,0,0.20))
            drop-shadow(0 0 16px rgba(200,255,0,0.30));
}
#crystalCanvas {
    display: block;
    width: 100%;
    height: 100%;
}
@media (max-width: 1100px) {
    .hero-crystal { display: none; }
}

/* ===== ANIMATION BASE ===== */
[data-anim] { opacity: 0; transform: translateY(30px); }
[data-anim].visible { animation: fadeUp 0.7s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner { grid-template-columns: 1fr; gap: 60px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(3) { border-top: 1px solid var(--border); }
    .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
    /* Nav */
    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .lang-selector { margin-left: auto; margin-right: 12px; }

    /* Mobile menu — add lang options */
    .mobile-menu { gap: 24px; padding: 0 32px; }
    .mm-link { font-size: 2rem; }
    .mobile-lang {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 8px;
    }
    .mobile-lang-btn {
        background: rgba(255,255,255,0.06);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 7px 14px;
        color: var(--text-muted);
        font-family: var(--font-body);
        font-size: 0.8rem;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }
    .mobile-lang-btn:hover,
    .mobile-lang-btn.active { background: rgba(200,255,0,0.1); color: var(--accent); border-color: rgba(200,255,0,0.3); }

    /* Hero */
    .hero { padding: 100px 20px 60px; }
    .hero-scroll { display: none; }

    /* Stats */
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 32px 16px; }
    .stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat:nth-child(even) { border-right: none; }
    .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--border); }

    /* Layout */
    .container { padding: 0 20px; }
    .demos-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .demo-card--wide { grid-column: span 1; }
    .demos > .container { padding: 0 20px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 20px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 18px; border-radius: 16px; }
    .footer { padding: 48px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }

    /* Sections */
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .demos { padding: 80px 0; }
    .why { padding: 80px 0; }
    .contact { padding: 80px 0; }
    .why-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: -0.02em; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .why-cards { grid-template-columns: 1fr; }
    .stat-num { font-size: 2.2rem; }
    .stat-plus { font-size: 1.6rem; }
    .demo-img-wrap { height: 220px; }
    .lang-code { display: none; }
}

/* Cursor: touch cihazlarda gizle */
@media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}
