/* MOVY — alt sayfalar (index ile uyumlu) */

:root {
    --primary: #7A2FAD;
    --primary-hover: #6B28A0;
    --primary-light: rgba(122, 47, 173, 0.08);
    --primary-glow: rgba(122, 47, 173, 0.15);
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F7;
    --gray-200: #E8E8ED;
    --gray-300: #D1D1D6;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --font: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-purple: 0 8px 32px rgba(122, 47, 173, 0.2);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.mobile-toggle svg {
    pointer-events: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* İçerik alanı */
.page-main {
    flex: 1;
}

.page-wrap {
    padding-top: 72px;
    min-height: 0;
    background: var(--gray-50);
    position: relative;
}

.page-wrap::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 200px;
    background-image:
        linear-gradient(var(--gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 15%, transparent 75%);
    pointer-events: none;
}

.page-inner {
    position: relative;
    z-index: 1;
    padding: 48px 0 80px;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 48px 44px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.legal-card > h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 24px;
    margin-top: 0;
}

.legal-card h2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 12px;
}

/* about-us: sayfa başlığı doğrudan ilk h2 */
.legal-card > h2:first-child {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin: 0 0 24px;
}

.legal-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.legal-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-card ul {
    padding-left: 22px;
    margin-bottom: 16px;
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 15px;
}

.legal-card ul li {
    margin-bottom: 8px;
}

.legal-card strong {
    color: var(--gray-800);
    font-weight: 600;
}

.company-info {
    margin-top: 36px;
    padding: 24px 28px;
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
}

.company-info h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.company-info p {
    margin-bottom: 10px;
    margin-top: 0;
}

.company-info p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    height: 36px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    max-width: 280px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.footer-app-group-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.14);
}

.app-badge svg {
    width: 20px;
    height: 20px;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.footer-payment img {
    height: 28px;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .legal-card {
        padding: 28px 22px;
    }

    .legal-card > h1,
    .legal-card > h2:first-child {
        font-size: 26px;
    }

    .page-inner {
        padding: 28px 0 56px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

}
