:root {
    --background: #0b1220;
    --surface: #111827;
    --surface-soft: #162033;
    --surface-light: #1c2940;

    --primary: #7b61ff;
    --primary-soft: #9b8cff;
    --success: #26c281;
    --blue: #2e86c1;

    --text-main: #f8fafc;
    --text-soft: #cbd5e1;
    --text-muted: #8fa0b8;

    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);

    --radius-large: 28px;
    --radius-medium: 20px;
    --radius-small: 14px;

    --container-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(123, 97, 255, 0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 18%,
            rgba(38, 194, 129, 0.08),
            transparent 28%
        ),
        var(--background);
    color: var(--text-main);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );
    margin: 0 auto;
}

.background-glow {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: 0.35;
}

.background-glow-one {
    top: 140px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: var(--primary);
}

.background-glow-two {
    right: -140px;
    bottom: 100px;
    width: 380px;
    height: 380px;
    background: var(--success);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(11, 18, 32, 0.78);
    backdrop-filter: blur(18px);
}

.header-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #5b44d6
        );
    color: white;
    font-size: 20px;
    font-weight: 800;
    box-shadow:
        0 12px 28px rgba(123, 97, 255, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-size: 17px;
    font-weight: 800;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-navigation a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.desktop-navigation a:hover {
    color: white;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-button,
.mobile-menu-button {
    height: 42px;
    min-width: 42px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.language-button:hover,
.mobile-menu-button:hover {
    border-color: rgba(123, 97, 255, 0.5);
    background: rgba(123, 97, 255, 0.12);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    font-size: 20px;
}

.mobile-navigation {
    display: none;
}

/* Genel alanlar */

.section {
    padding: 110px 0;
}

section[id] {
    scroll-margin-top: 96px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--primary-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2,
.mode-content h2,
.privacy-content h2,
.contact-container h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading h2 span,
.mode-content h2 span,
.privacy-content h2 span,
.contact-container h2 span,
.hero-content h1 span {
    display: block;
    color: var(--primary-soft);
}

.section-heading p,
.mode-content > p,
.privacy-content p,
.contact-container p {
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 17px;
}

/* Hero */

.hero-section {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 90px 0 110px;
}

.hero-container {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(320px, 0.92fr);
    align-items: center;
    gap: 72px;
}

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

.hero-badge {
    display: inline-flex;
    padding: 9px 14px;
    border: 1px solid rgba(123, 97, 255, 0.26);
    border-radius: 999px;
    background: rgba(123, 97, 255, 0.1);
    color: var(--primary-soft);
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1 {
    margin-top: 24px;
    font-size: clamp(48px, 7vw, 78px);
    line-height: 0.99;
    letter-spacing: -0.055em;
}

.hero-description {
    max-width: 620px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #6246e5
        );
    color: white;
    box-shadow:
        0 16px 34px rgba(123, 97, 255, 0.28);
}

.button-primary:hover {
    box-shadow:
        0 22px 42px rgba(123, 97, 255, 0.38);
}

.button-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-main);
}

.button-secondary:hover {
    border-color: rgba(123, 97, 255, 0.5);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
}

.highlight-item {
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.025);
}

.highlight-item strong {
    display: block;
    font-size: 15px;
}

.highlight-item span {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 12px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-preview {
    width: min(100%, 390px);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 38px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.phone-top-bar {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 25px 25px 16px 16px;
    background: #0f172a;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow:
        0 0 0 6px rgba(38, 194, 129, 0.1);
}

.phone-content {
    min-height: 540px;
    padding: 24px 18px 20px;
    border-radius: 16px 16px 26px 26px;
    background:
        linear-gradient(
            180deg,
            #111827,
            #0d1525
        );
}

.phone-welcome {
    margin-bottom: 22px;
}

.phone-welcome span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

.phone-welcome strong {
    display: block;
    margin-top: 5px;
    font-size: 22px;
}

.phone-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 19px;
}

.phone-card-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-weight: 900;
}

.phone-card strong,
.phone-card span {
    display: block;
}

.phone-card strong {
    font-size: 15px;
}

.phone-card span {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 12px;
}

.adult-card {
    background:
        linear-gradient(
            135deg,
            rgba(123, 97, 255, 0.18),
            rgba(123, 97, 255, 0.06)
        );
}

.adult-card .phone-card-icon {
    background: var(--primary);
}

.parent-card {
    background:
        linear-gradient(
            135deg,
            rgba(38, 194, 129, 0.15),
            rgba(38, 194, 129, 0.05)
        );
}

.parent-card .phone-card-icon {
    background: var(--success);
}

.phone-balance-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.03);
}

.phone-balance-card > span {
    color: var(--text-muted);
    font-size: 12px;
}

.balance-line {
    height: 10px;
    margin: 14px 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.balance-progress {
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--success)
        );
}

/* Özellikler */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        );
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 97, 255, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 900;
}

.purple-icon {
    background: rgba(123, 97, 255, 0.18);
    color: var(--primary-soft);
}

.green-icon {
    background: rgba(38, 194, 129, 0.16);
    color: #60e4ad;
}

.blue-icon {
    background: rgba(46, 134, 193, 0.17);
    color: #67b8ef;
}

.feature-card h3 {
    margin-top: 26px;
    font-size: 22px;
}

.feature-card p {
    margin-top: 14px;
    color: var(--text-soft);
}

/* Mod alanları */

.mode-section {
    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.mode-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 76px;
}

.reverse-layout .mode-content {
    order: 2;
}

.reverse-layout .mode-card {
    order: 1;
}

.mode-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.mode-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.mode-feature-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(123, 97, 255, 0.16);
    color: var(--primary-soft);
    font-size: 12px;
    font-weight: 900;
}

.mode-feature strong {
    font-size: 15px;
}

.mode-feature p {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 13px;
}

.mode-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.02)
        );
    box-shadow: var(--shadow);
}

.adult-mode-card {
    border-color: rgba(123, 97, 255, 0.22);
}

.parent-mode-card {
    border-color: rgba(38, 194, 129, 0.2);
}

.mode-card-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.mode-card-header span,
.mode-card-header strong {
    display: block;
}

.mode-card-header > div > span {
    color: var(--text-muted);
    font-size: 12px;
}

.mode-card-header > div > strong {
    margin-top: 5px;
    font-size: 21px;
}

.mode-card-badge {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(123, 97, 255, 0.15);
    color: var(--primary-soft);
    font-size: 11px;
    font-weight: 800;
}

.green-badge {
    background: rgba(38, 194, 129, 0.13);
    color: #61e7b0;
}

.stat-card,
.mode-message-card,
.parent-guide-card,
.parent-activity-card {
    margin-top: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.028);
}

.stat-card {
    padding: 22px;
}

.stat-card span,
.stat-card strong {
    display: block;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 12px;
}

.stat-card strong {
    margin-top: 8px;
    color: var(--primary-soft);
    font-size: 32px;
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.mini-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.mini-card strong,
.mini-card span {
    display: block;
}

.mini-card strong {
    font-size: 25px;
}

.mini-card span {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 12px;
}

.mode-message-card {
    padding: 19px;
}

.mode-message-card span,
.parent-guide-card span {
    color: var(--text-muted);
    font-size: 12px;
}

.mode-message-card p,
.parent-guide-card p {
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 14px;
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.age-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.age-card span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(38, 194, 129, 0.12);
    color: #61e7b0;
    font-size: 11px;
    font-weight: 800;
}

.age-card strong {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.parent-guide-card {
    padding: 19px;
    border-left: 4px solid var(--success);
}

.parent-activity-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
}

.activity-number {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(38, 194, 129, 0.13);
    color: #61e7b0;
    font-size: 12px;
    font-weight: 900;
}

.parent-activity-card > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.parent-activity-card strong,
.parent-activity-card span {
    display: block;
}

.parent-activity-card strong {
    font-size: 14px;
}

.parent-activity-card > div:nth-child(2) span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 11px;
}

.activity-status {
    color: var(--success);
    font-size: 11px;
    font-weight: 800;
}

/* Gizlilik */

.privacy-section {
    padding-top: 80px;
}

.privacy-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    padding: 38px;
    border: 1px solid rgba(38, 194, 129, 0.18);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            135deg,
            rgba(38, 194, 129, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.privacy-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--success);
    color: #07130e;
    font-size: 32px;
    font-weight: 900;
    box-shadow:
        0 18px 38px rgba(38, 194, 129, 0.22);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: #61e7b0;
    font-weight: 800;
}

/* İletişim */

.contact-section {
    padding-top: 40px;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    padding: 42px;
    border: 1px solid rgba(123, 97, 255, 0.22);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            135deg,
            rgba(123, 97, 255, 0.12),
            rgba(255, 255, 255, 0.02)
        );
}

/* Footer */

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--border);
}

.footer-container {
    display: grid;
    grid-template-columns:
        minmax(180px, 1fr)
        auto
        minmax(180px, 1fr);
    align-items: center;
    gap: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-soft);
    font-size: 13px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}

/* Mobil */

@media (max-width: 960px) {
    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .mobile-navigation {
        padding:
            0
            max(20px, calc((100% - var(--container-width)) / 2))
            18px;
    }

    .mobile-navigation.is-open {
        display: grid;
        gap: 10px;
    }

    .mobile-navigation a {
        padding: 12px 14px;
        border: 1px solid var(--border);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-soft);
        font-size: 14px;
    }

    .hero-container,
    .mode-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: none;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        margin-top: 14px;
    }

    .reverse-layout .mode-content,
    .reverse-layout .mode-card {
        order: initial;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .contact-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .section {
        padding: 82px 0;
    }

    .header-container {
        min-height: 70px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 68px 0 84px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .phone-preview {
        transform: none;
    }

    .phone-content {
        min-height: 500px;
    }

    .feature-card,
    .mode-card,
    .privacy-container,
    .contact-container {
        padding: 22px;
    }

    .age-grid,
    .mini-card-grid {
        grid-template-columns: 1fr;
    }

    .privacy-container {
        grid-template-columns: 1fr;
    }

    .privacy-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }

    .contact-container .button {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 13px;
    }
}

/* Görünme animasyonları */

.reveal-element {
    opacity: 1;
    transform: translateY(14px);
    transition:
        transform 0.55s ease;
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-element {
        opacity: 1;
        transform: none;
    }

    .phone-preview {
        transform: none !important;
    }
}

/* Yasal sayfalar */

.legal-page {
    background-color: var(--background);
}

.legal-main {
    min-height: 100vh;
}

.legal-back-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.legal-back-button:hover {
    border-color: rgba(123, 97, 255, 0.5);
    background: rgba(123, 97, 255, 0.12);
    color: white;
    transform: translateY(-1px);
}

.legal-hero {
    padding: 100px 0 58px;
}

.legal-hero-content {
    max-width: 850px;
}

.legal-hero h1 {
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.legal-hero p {
    max-width: 720px;
    margin-top: 24px;
    color: var(--text-soft);
    font-size: 18px;
}

.legal-update-badge {
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 26px;
    padding: 10px 14px;
    border: 1px solid rgba(123, 97, 255, 0.24);
    border-radius: 999px;
    background: rgba(123, 97, 255, 0.09);
    color: var(--text-soft);
    font-size: 13px;
}

.legal-update-badge strong {
    color: var(--primary-soft);
}

.legal-content-section {
    padding: 30px 0 110px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.legal-sidebar {
    position: sticky;
    top: 110px;
}

.legal-sidebar-card {
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
}

.legal-sidebar-card > strong {
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-sidebar-card a {
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 12px;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.legal-sidebar-card a:hover {
    background: rgba(123, 97, 255, 0.1);
    color: var(--primary-soft);
}

.legal-article {
    display: grid;
    gap: 20px;
}

.legal-card {
    scroll-margin-top: 110px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.13);
}

.legal-section-number {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: rgba(123, 97, 255, 0.14);
    color: var(--primary-soft);
    font-size: 12px;
    font-weight: 900;
}

.legal-card h2 {
    margin-top: 20px;
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -0.025em;
}

.legal-card > p {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 15px;
}

.legal-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding: 14px 16px 14px 43px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.022);
    color: var(--text-soft);
    font-size: 14px;
}

.legal-list li::before {
    content: "✓";
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--success);
    font-weight: 900;
}

.legal-note,
.legal-warning {
    margin-top: 22px;
    padding: 18px;
    border-radius: 16px;
}

.legal-note {
    border: 1px solid rgba(38, 194, 129, 0.2);
    border-left: 4px solid var(--success);
    background: rgba(38, 194, 129, 0.07);
}

.legal-warning {
    border: 1px solid rgba(255, 184, 77, 0.2);
    border-left: 4px solid #ffb84d;
    background: rgba(255, 184, 77, 0.07);
}

.legal-note strong,
.legal-warning strong {
    font-size: 14px;
}

.legal-note p,
.legal-warning p {
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 13px;
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.permission-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.022);
}

.permission-card strong {
    font-size: 14px;
}

.permission-card p {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.legal-contact-card {
    border-color: rgba(123, 97, 255, 0.24);
    background:
        linear-gradient(
            135deg,
            rgba(123, 97, 255, 0.11),
            rgba(255, 255, 255, 0.02)
        );
}

.legal-contact-card .button {
    margin-top: 24px;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-sidebar-card > strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .legal-hero {
        padding: 72px 0 42px;
    }

    .legal-hero h1 {
        font-size: 44px;
    }

    .legal-content-section {
        padding-bottom: 80px;
    }

    .legal-sidebar-card {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 22px;
    }

    .permission-grid {
        grid-template-columns: 1fr;
    }

    .legal-back-button {
        display: none;
    }
}

/* =====================================================
   Ana sayfa profesyonel polish
===================================================== */

:root {
    --header-height: 78px;
    --focus-ring: 0 0 0 4px rgba(123, 97, 255, 0.22);
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(123, 97, 255, 0.32);
    color: #ffffff;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 11px 15px;
    border-radius: 12px;
    background: #ffffff;
    color: #0b1220;
    font-weight: 800;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.site-header {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025);
}

.desktop-navigation a {
    position: relative;
}

.desktop-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--success));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.desktop-navigation a:hover::after,
.desktop-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.hero-section {
    position: relative;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 12% 4% auto auto;
    z-index: -1;
    width: min(40vw, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.11), transparent 68%);
    pointer-events: none;
}

.hero-badge {
    align-items: center;
    gap: 9px;
}

.hero-badge-dot,
.release-note-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(38, 194, 129, 0.10);
}

.hero-content h1 span:first-child,
.section-heading h2 span:first-child,
.mode-content h2 span:first-child,
.privacy-content h2 span:first-child,
.contact-container h2 span:first-child {
    color: var(--text-main);
}

.hero-content h1 span:last-child,
.section-heading h2 span:last-child,
.mode-content h2 span:last-child,
.privacy-content h2 span:last-child,
.contact-container h2 span:last-child {
    background: linear-gradient(90deg, #b9adff 0%, #8d7cff 50%, #63dfae 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-release-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-highlights {
    align-items: stretch;
}

.highlight-item,
.feature-card,
.mode-feature,
.age-card,
.mini-card,
.parent-activity-card {
    position: relative;
    overflow: hidden;
}

.highlight-item::before,
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
    pointer-events: none;
}

.highlight-item {
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 97, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.phone-preview {
    position: relative;
    isolation: isolate;
}

.phone-preview::before {
    content: "";
    position: absolute;
    inset: 9% -12% -9%;
    z-index: -1;
    border-radius: 46px;
    background: radial-gradient(circle at 50% 35%, rgba(123, 97, 255, 0.20), transparent 66%);
    filter: blur(18px);
}

.feature-card,
.mode-card,
.privacy-container,
.contact-container {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.23);
}

.mode-feature,
.age-card,
.parent-activity-card,
.mini-card {
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.mode-feature:hover,
.age-card:hover,
.parent-activity-card:hover,
.mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 97, 255, 0.26);
    background: rgba(255, 255, 255, 0.042);
}

.parent-mode-card .parent-activity-card:hover,
.parent-mode-card .parent-guide-card:hover {
    border-color: rgba(38, 194, 129, 0.30);
}

.text-link {
    align-items: center;
    gap: 8px;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.site-footer {
    background: rgba(7, 12, 23, 0.52);
}

.footer-links a {
    transition: color 0.2s ease;
}

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

@media (max-width: 960px) {
    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-badge {
        max-width: 100%;
        text-align: left;
    }

    .hero-release-note {
        justify-content: center;
    }

    .contact-actions {
        width: 100%;
    }

    .contact-actions .button {
        width: 100%;
    }
}

/* =====================================================
   Gerçek uygulama ekranları ve marka görselleri
===================================================== */

.brand-mark,
.footer-brand-mark,
.support-brand-logo,
.terms-brand-logo {
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(123, 97, 255, 0.28));
}

.brand-mark {
    width: 52px;
    height: 52px;
}

.footer-brand-mark {
    width: 46px;
    height: 46px;
}

.phone-stage {
    position: relative;
    width: min(100%, 390px);
    display: grid;
    place-items: center;
    padding: 30px;
}

.phone-stage::before {
    content: "";
    position: absolute;
    inset: 9% -7% 4%;
    z-index: -1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 38%, rgba(123, 97, 255, 0.28), transparent 57%),
        radial-gradient(circle at 60% 70%, rgba(38, 194, 129, 0.16), transparent 54%);
    filter: blur(28px);
}

.phone-preview.real-phone,
.section-phone {
    position: relative;
    width: min(100%, 326px);
    aspect-ratio: 1080 / 2194;
    padding: 7px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 42px;
    background: #060a12;
    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(123, 97, 255, 0.12) inset;
}

.phone-preview.real-phone {
    transform: rotate(2deg);
}

.phone-preview.real-phone::before {
    display: none;
}

.phone-preview.real-phone img,
.section-phone img,
.screenshot-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.phone-preview.real-phone img,
.section-phone img {
    border-radius: 35px;
}

.phone-speaker {
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: 2;
    width: 58px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
    transform: translateX(-50%);
}

.floating-proof {
    position: absolute;
    z-index: 3;
    max-width: 190px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(14, 23, 39, 0.9);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.floating-proof strong,
.floating-proof span {
    display: block;
}

.floating-proof strong {
    font-size: 12px;
}

.floating-proof span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 10px;
}

.floating-proof-top {
    top: 14%;
    left: -15px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.floating-proof-top strong {
    font-size: 11px;
}

.floating-proof-top .proof-dot {
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(38, 194, 129, 0.1);
}

.floating-proof-bottom {
    right: -18px;
    bottom: 12%;
}

.mode-screen-showcase {
    position: relative;
    min-height: 690px;
    display: grid;
    place-items: center;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(123, 97, 255, 0.1), transparent 48%),
        rgba(255, 255, 255, 0.018);
    box-shadow: var(--shadow);
}

.parent-screen-showcase {
    background:
        linear-gradient(145deg, rgba(38, 194, 129, 0.09), transparent 48%),
        rgba(255, 255, 255, 0.018);
}

.reverse-layout .mode-screen-showcase {
    order: 1;
}

.section-phone {
    width: min(100%, 292px);
    border-radius: 37px;
}

.section-phone img {
    border-radius: 30px;
}

.light-phone {
    background: #eef3f9;
}

.screen-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - 36px);
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(11, 18, 32, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.caption-index {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(123, 97, 255, 0.16);
    color: var(--primary-soft);
    font-size: 11px;
    font-weight: 900;
}

.parent-screen-showcase .caption-index {
    background: rgba(38, 194, 129, 0.14);
    color: #61e7b0;
}

.screen-caption strong,
.screen-caption span {
    display: block;
}

.screen-caption strong {
    font-size: 12px;
}

.screen-caption div > span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 10px;
}

.gallery-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    background: rgba(7, 12, 23, 0.34);
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 50%;
    z-index: -1;
    width: min(92vw, 900px);
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.12), transparent 68%);
    transform: translateX(-50%);
    filter: blur(18px);
}

.gallery-heading {
    margin-bottom: 58px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 18px;
}

.screenshot-card {
    min-width: 0;
    padding: 8px 8px 16px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(123, 97, 255, 0.3);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.32);
}

.screenshot-card:nth-child(even) {
    transform: translateY(18px);
}

.screenshot-card:nth-child(even):hover {
    transform: translateY(10px);
}

.screenshot-frame {
    aspect-ratio: 1080 / 2194;
    overflow: hidden;
    border-radius: 18px;
    background: #0a111e;
}

.screenshot-frame.light-screen {
    background: #edf3f8;
}

.screenshot-card figcaption {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 12px 6px 0;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 1100px) {
    .screenshot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 780px;
        margin: 0 auto;
    }

    .screenshot-card:nth-child(even) {
        transform: none;
    }

    .screenshot-card:nth-child(even):hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 960px) {
    .mode-screen-showcase {
        min-height: 650px;
    }

    .reverse-layout .mode-screen-showcase {
        order: initial;
    }
}

@media (max-width: 640px) {
    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .phone-stage {
        width: 100%;
        padding: 12px;
    }

    .phone-preview.real-phone {
        width: min(86vw, 310px);
        transform: none;
    }

    .floating-proof {
        display: none;
    }

    .mode-screen-showcase {
        min-height: 610px;
        padding: 20px 16px 74px;
    }

    .section-phone {
        width: min(82vw, 270px);
    }

    .screen-caption {
        right: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .screenshot-card {
        padding: 6px 6px 12px;
        border-radius: 20px;
    }

    .screenshot-frame {
        border-radius: 14px;
    }

    .screenshot-card figcaption {
        min-height: 50px;
        font-size: 11px;
    }
}

@media (max-width: 390px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
        max-width: 230px;
    }
}
