/* ================================
   THEME TOKENS
   Brand: #ff3100
   Dark (default): bg #050505, card base #0a0a0a
   Light: bg #ffffff, card base #f8fafc
================================= */
:root {
    --brand: #ff3100;

    --bg: #050505;
    --card-base: #0a0a0a;

    --text: #ffffff;
    --muted: #94a3b8;

    --glass: rgba(0, 0, 0, 0.38);
    --glass-2: rgba(0, 0, 0, 0.22);
    --border: rgba(255, 255, 255, 0.10);
    --border-2: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 80px rgba(0, 0, 0, 0.55);

    --glow: 0 0 18px rgba(255, 49, 0, 0.14);
    --glow-strong: 0 0 28px rgba(255, 49, 0, 0.28);

    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 14px;

    --transition: 0.3s ease;
}

html[data-theme="light"] {
    --bg: #ffffff;
    --card-base: #f8fafc;

    --text: #0b1220;
    --muted: #475569;

    --glass: rgba(255, 255, 255, 0.72);
    --glass-2: rgba(255, 255, 255, 0.55);
    --border: rgba(2, 6, 23, 0.10);
    --border-2: rgba(2, 6, 23, 0.08);
    --shadow: 0 14px 60px rgba(2, 6, 23, 0.12);
    --glow: 0 8px 24px rgba(2, 6, 23, 0.08);
    --glow-strong: 0 12px 32px rgba(2, 6, 23, 0.13);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

a { color: inherit; }
p { line-height: 1.78; }

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 5%, 80px);
}

.container--narrow {
    width: min(800px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 5%, 60px);
}

.section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 44px;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1.2px;
}

h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.accent {
    color: var(--brand);
    text-shadow: 0 0 42px rgba(255, 49, 0, 0.35);
}

.hero .accent { text-shadow: none; }

.subtitle {
    font-size: clamp(0.92rem, 1.1vw, 1.06rem);
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.7;
    transition: color var(--transition);
}

/* ================================
   BETA BANNER
================================= */
.beta-banner {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--brand);
    color: #ffffff;
    text-align: center;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 16px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.beta-banner a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 800;
}

/* ================================
   NAVBAR
================================= */
nav {
    position: sticky;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-2);
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(12px);
    transition: background var(--transition), border-color var(--transition);
}

html[data-theme="light"] nav {
    background: rgba(255, 255, 255, 0.72);
}

.nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    line-height: 1;
}

.logo i { color: var(--brand); }

.logo-img {
    height: 32px;
    width: auto;
    display: block;
    flex: 0 0 auto;
}

.logo-text {
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.2px;
}


.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.nav-rehber-link {
    text-decoration: none;
    color: color-mix(in srgb, var(--text) 65%, var(--muted));
    font-weight: 600;
    font-size: 0.94rem;
    transition: color var(--transition), transform var(--transition);
}

.nav-rehber-link:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
}

/* ================================
   BUTTONS
================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn-main {
    background: var(--brand);
    color: #ffffff;
    box-shadow: var(--glow);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--brand) 30%, var(--border));
}

/* ================================
   HERO
================================= */
.hero {
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -240px -180px auto -180px;
    height: 560px;
    pointer-events: none;
    filter: blur(28px);
    opacity: 0.55;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255,49,0,0.22), transparent 55%),
        radial-gradient(circle at 70% 20%, rgba(255,49,0,0.12), transparent 50%),
        radial-gradient(circle at 60% 65%, rgba(255,49,0,0.10), transparent 55%);
    transform-origin: 50% 50%;
    animation: spinGlow 18s linear infinite;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, rgba(255,49,0,0.0), rgba(255,49,0,0.12), rgba(255,49,0,0.0));
    animation: spinGlow 10s linear infinite reverse;
    opacity: 0.6;
}

@keyframes spinGlow {
    to { transform: rotate(360deg); }
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 3vw, 56px);
    align-items: center;
}

.hero-copy {
    text-align: left;
    min-width: 0;
}

.hero-copy .subtitle {
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-metric {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-metric.hero-metric--showcase {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.hero-showcase {
    position: relative;
    display: grid;
    gap: 14px;
}

.mockup-stack {
    position: relative;
    padding: 0;
    z-index: 1;
}

.mockup-stack::after {
    content: "";
    position: absolute;
    inset: -26px -22px -30px -22px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,49,0,0.18), transparent 55%),
        radial-gradient(circle at 70% 65%, rgba(255,49,0,0.12), transparent 60%);
    filter: blur(18px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.browser-mockup.primary {
    z-index: 2;
    margin: 0;
    transform: perspective(1200px) rotateY(-10deg) rotateX(6deg) translateX(6px);
    animation: floatYPrimary 5.8s ease-in-out infinite;
}

.browser-mockup {
    position: relative;
    border-radius: 22px;
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.85), rgba(10, 10, 10, 0.65));
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255,49,0,0.12), var(--glow);
    margin: 0;
}

html[data-theme="light"] .browser-mockup {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.66));
    border-color: rgba(2, 6, 23, 0.12);
    box-shadow: var(--shadow);
}

/* Light temada parlama bastırma */
html[data-theme="light"] .hero-bg { opacity: 0.18; }
html[data-theme="light"] .hero-bg::after { opacity: 0.15; }
html[data-theme="light"] .browser-mockup::before { opacity: 0.12; }
html[data-theme="light"] .mockup-stack::after { opacity: 0.18; }
html[data-theme="light"] .step .icon,
html[data-theme="light"] .download-step .icon { box-shadow: none; }
html[data-theme="light"] .glass-card:hover { border-color: color-mix(in srgb, var(--brand) 18%, var(--border)); }
html[data-theme="light"] .trust-strip { box-shadow: 0 4px 16px rgba(2, 6, 23, 0.08); }
html[data-theme="light"] .accent { text-shadow: none; }

/* Light temada kırmızı radial parlama ve ring'leri kapat */
html[data-theme="light"] .video::before { opacity: 0; }
html[data-theme="light"] .shot::before { opacity: 0; }
html[data-theme="light"] .video {
    border-color: var(--border);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.75));
}
html[data-theme="light"] .shot {
    border-color: var(--border);
    box-shadow: var(--shadow);
}
html[data-theme="light"] .banner {
    border-color: rgba(255,59,48,0.18);
    background: linear-gradient(180deg, rgba(255,59,48,0.05), rgba(255,255,255,0.6));
    box-shadow: var(--shadow);
}
html[data-theme="light"] .hero--rehber .hero-bg { opacity: 0.12; }
html[data-theme="light"] .tl-item {
    box-shadow: 0 2px 12px rgba(2,6,23,0.07);
}
html[data-theme="light"] .video-cta { box-shadow: 0 4px 16px rgba(2,6,23,0.10); }

.browser-mockup::before {
    content: "";
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,49,0,0.35), transparent 55%),
        radial-gradient(circle at 70% 55%, rgba(255,49,0,0.22), transparent 60%);
    filter: blur(22px);
    opacity: 0.9;
    pointer-events: none;
}

.browser-topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    background: rgba(0, 0, 0, 0.25);
}

html[data-theme="light"] .browser-topbar {
    background: rgba(255, 255, 255, 0.40);
    border-bottom-color: rgba(2, 6, 23, 0.10);
}

.browser-dots {
    display: inline-flex;
    gap: 7px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--text) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.browser-url {
    flex: 1;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: color-mix(in srgb, var(--text) 60%, var(--muted));
    font-size: 0.85rem;
    font-weight: 700;
}

html[data-theme="light"] .browser-url {
    background: rgba(2, 6, 23, 0.05);
    border-color: rgba(2, 6, 23, 0.10);
}

.browser-body {
    position: relative;
    padding: 14px;
}

.browser-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    background: rgba(0, 0, 0, 0.20);
}

.browser-body img.showcase-img {
    aspect-ratio: 16 / 22;
    object-fit: cover;
    object-position: 0% 0%;
}

@keyframes floatYPrimary {
    0%, 100% { transform: perspective(1200px) rotateY(-10deg) rotateX(6deg) translateX(6px) translateY(0); }
    50% { transform: perspective(1200px) rotateY(-10deg) rotateX(6deg) translateX(6px) translateY(10px); }
}

@media (prefers-reduced-motion: reduce) {
    .browser-mockup { animation: none !important; }
}

/* Typewriter accent */
.typewriter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    white-space: nowrap;
    text-align: left;
}

.typewriter .tw-text {
    display: inline-block;
    min-width: 1ch;
}

.typewriter .tw-caret {
    display: inline-block;
    width: 2px;
    height: 0.82em;
    margin-left: 6px;
    transform: translateY(0.08em);
    background: var(--brand);
    border-radius: 2px;
    box-shadow: 0 0 18px rgba(255,49,0,0.45);
    animation: caretBlink 0.95s steps(1) infinite;
    flex: 0 0 auto;
}

@keyframes caretBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .typewriter .tw-caret { animation: none; }
}

/* Trust badges */
.trust-strip {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    align-items: center;
    padding: 10px 20px;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
    background: color-mix(in srgb, var(--glass) 78%, transparent);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
    max-width: 480px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--text) 88%, var(--muted));
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.05);
}

.trust-item i {
    color: color-mix(in srgb, var(--brand) 72%, var(--text));
}

/* ================================
   GLASS CARDS (shared)
================================= */
.glass-card {
    background: var(--card-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.05);
    backdrop-filter: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.glass-card:hover {
    transform: none;
    border-color: color-mix(in srgb, var(--brand) 22%, var(--border));
    box-shadow: 0 2px 6px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.08);
}

/* ================================
   HOW IT WORKS
================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin-inline: auto;
}

.step {
    padding: 22px 20px;
}

.step .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--brand) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
    box-shadow: none;
    margin-bottom: 14px;
}

.step .icon i { color: var(--brand); }

.step h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.step p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
    transition: color var(--transition);
}

/* ================================
   DOWNLOAD CTA SECTION
================================= */
.download-section {
    padding: 80px 0;
    text-align: center;
}

.download-section .section-header {
    margin-bottom: 32px;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 32px;
}

.download-step {
    padding: 22px 20px;
    text-align: center;
}

.download-step .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--brand) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
    box-shadow: none;
    margin: 0 auto 14px;
}

.download-step .icon i { color: var(--brand); }

.download-step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.download-step p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color var(--transition);
}

.download-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   FAQ (Accordion)
================================= */
.faq-wrap {
    width: min(980px, 100%);
    margin: 0 auto;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1rem;
    text-align: left;
}

.faq-question i {
    color: color-mix(in srgb, var(--text) 50%, var(--muted));
    transition: transform var(--transition), color var(--transition);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--brand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 18px 18px;
    color: color-mix(in srgb, var(--text) 78%, var(--muted));
    line-height: 1.7;
    transition: color var(--transition);
}

.faq-answer-inner a { color: var(--brand); }

/* ================================
   FOOTER
================================= */
footer {
    border-top: 1px solid var(--border-2);
    padding: 56px 0 28px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    transition: background var(--transition), border-color var(--transition);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-wordmark {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    transition: color var(--transition);
}

.footer-tagline {
    margin-top: 8px;
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 200px;
    transition: color var(--transition);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text);
    margin-bottom: 4px;
    transition: color var(--transition);
}

.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-2);
    color: color-mix(in srgb, var(--muted) 55%, transparent);
    font-size: 0.80rem;
    transition: color var(--transition), border-color var(--transition);
}

/* ================================
   LEGAL PAGE (gizlilik/sartlar)
================================= */
.legal-page {
    padding: 100px 0 80px;
}

.legal-page h1 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin-bottom: 10px;
}

.legal-page .subtitle {
    margin-bottom: 44px;
}

.legal-body {
    background: var(--card-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 38px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.05);
    backdrop-filter: none;
    transition: background var(--transition), border-color var(--transition);
}

.legal-body a { color: var(--brand); }

.legal-body h4 {
    color: var(--text);
    margin: 22px 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
}

.legal-body h4:first-child { margin-top: 0; }

.legal-body p { margin: 9px 0; }
.legal-body ul { padding-left: 20px; margin: 10px 0; }
.legal-body li { margin: 7px 0; }

/* ================================
   REHBER — TOP BAR (minimal)
================================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-2);
    background: rgba(5, 5, 5, 0.55);
    backdrop-filter: blur(12px);
}

html[data-theme="light"] .topbar {
    background: rgba(255, 255, 255, 0.72);
}

.topbar-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topbar-left {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
}

.brand img {
    height: 30px;
    width: auto;
    display: block;
}

.brand span {
    font-size: 1.15rem;
    letter-spacing: -0.2px;
}

.topbar-home-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--text) 60%, var(--muted));
    transition: color var(--transition);
}

.topbar-home-link:hover { color: var(--text); }

.topbar-home-link i {
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--text) 45%, var(--muted));
    transition: color var(--transition);
}

.topbar-home-link:hover i { color: var(--brand); }

.topbar-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.link-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--glass);
    text-decoration: none;
    font-weight: 800;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.link-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--brand) 26%, var(--border));
}

.link-chip i { color: var(--brand); }

/* ================================
   REHBER — HERO + VIDEO
================================= */
.hero--rehber {
    position: relative;
    padding: 54px 0 16px;
}

.hero--rehber .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.95;
}

.hero--rehber .hero-bg::before {
    content: "";
    position: absolute;
    inset: -120px;
    background:
        radial-gradient(circle at 16% 18%, rgba(255,49,0,0.18), transparent 45%),
        radial-gradient(circle at 70% 42%, rgba(255,49,0,0.10), transparent 52%),
        radial-gradient(circle at 28% 82%, rgba(255,49,0,0.08), transparent 58%);
    filter: blur(12px);
}

.hero--rehber .hero-inner {
    position: relative;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero--rehber .hero-inner > * { width: 100%; }

.hero--rehber h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); }

.video {
    margin-top: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.75), rgba(10, 10, 10, 0.55));
    box-shadow: var(--shadow), 0 0 0 1px rgba(255,49,0,0.12), var(--glow);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    max-height: 300px;
    display: grid;
    place-items: center;
    padding: 18px;
}

html[data-theme="light"] .video {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.66));
    border-color: rgba(2, 6, 23, 0.12);
}

.video::before {
    content: "";
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,49,0,0.28), transparent 55%),
        radial-gradient(circle at 70% 65%, rgba(255,49,0,0.16), transparent 60%);
    filter: blur(20px);
    opacity: 0.35;
    pointer-events: none;
}

.video-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--glass) 70%, transparent);
    border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
    color: color-mix(in srgb, var(--text) 92%, var(--muted));
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.video-cta i { color: var(--brand); }

.video-note {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--muted) 95%, transparent);
    background: color-mix(in srgb, var(--glass) 70%, transparent);
    border: 1px solid var(--border-2);
    padding: 6px 10px;
    border-radius: 999px;
}


/* Video embed (YouTube iframe) */
.video-embed {
    margin-top: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255,49,0,0.12), var(--glow);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================
   REHBER — BANNER
================================= */
.banner {
    margin-top: 18px;
    border-radius: var(--radius-xl);
    border: 1px solid color-mix(in srgb, #ff3b30 30%, var(--border));
    background:
        radial-gradient(circle at 25% 30%, rgba(255, 49, 0, 0.20), transparent 60%),
        linear-gradient(180deg, color-mix(in srgb, #ff3b30 12%, var(--glass)), color-mix(in srgb, var(--glass) 92%, transparent));
    box-shadow: var(--shadow), 0 0 0 1px rgba(255,49,0,0.12);
    overflow: hidden;
    position: relative;
    padding: 16px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.banner::after {
    content: "";
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 60% 50%, rgba(255, 59, 48, 0.18), transparent 55%);
    filter: blur(22px);
    opacity: 0.75;
    pointer-events: none;
}

.banner .icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, #ff3b30 18%, transparent);
    border: 1px solid color-mix(in srgb, #ff3b30 30%, var(--border));
    color: #ff3b30;
    box-shadow: 0 0 22px rgba(255, 59, 48, 0.22);
    position: relative;
    z-index: 1;
}

.banner strong {
    color: color-mix(in srgb, var(--text) 96%, var(--muted));
}

.banner p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--text) 86%, var(--muted));
    position: relative;
    z-index: 1;
}

/* ================================
   REHBER — ARTICLE / TIMELINE
================================= */
.article {
    padding: 18px 0 90px;
}

.article .section {
    margin-top: 22px;
    padding: 0;
}

/* ================================
   REHBER — B2B SaaS YENİ TASARIM
================================= */

/* Hero */
.rehber-hero {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--border-2);
}

.rehber-hero-text {
    text-align: center;
    margin-bottom: 36px;
}

.rehber-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--brand);
    margin-bottom: 12px;
}

.rehber-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.rehber-hero .accent { text-shadow: none; }

/* Quick Start Grid (2 video yan yana) */
.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 28px;
}

.qs-video-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qs-video-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
}

.qs-video-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: color-mix(in srgb, var(--brand) 12%, var(--card-base));
    border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Alert sistemi */
.alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.alert p { margin: 0; font-size: inherit; color: inherit; }

.alert-icon {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 1rem;
}

.alert-warning {
    background: color-mix(in srgb, #f59e0b 10%, var(--bg));
    border: 1px solid color-mix(in srgb, #f59e0b 35%, transparent);
    color: var(--text);
}

.alert-warning .alert-icon { color: #f59e0b; }

.alert-info {
    background: color-mix(in srgb, #3b82f6 8%, var(--bg));
    border: 1px solid color-mix(in srgb, #3b82f6 30%, transparent);
    color: var(--text);
}

.alert-info .alert-icon { color: #3b82f6; }

html[data-theme="light"] .alert-warning {
    background: #fffbeb;
    border-color: #fcd34d;
}

html[data-theme="light"] .alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
}

/* Rehber Kart */
.rehber-card {
    background: var(--card-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.rehber-card:hover {
    border-color: color-mix(in srgb, var(--brand) 22%, var(--border));
    box-shadow: 0 2px 6px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.08);
}

/* Rehber Section */
.rehber-section {
    padding: 56px 0;
    border-top: 1px solid var(--border-2);
}

.rehber-section-header {
    margin-bottom: 28px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.rehber-section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.rehber-section-header h2 .accent { text-shadow: none; }

.rehber-section-header p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 6px;
}

/* Guide Step (kart içi düzen) */
.r-guide-step {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

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

.r-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--brand) 12%, var(--card-base));
    border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
    color: var(--brand);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.r-step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.r-step-title i { color: var(--brand); font-size: 0.9rem; }

.r-step-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Rehber Video Kutusu */
.r-video {
    border-radius: 10px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--card-base) 80%, var(--bg));
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
}

html[data-theme="light"] .r-video {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.r-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 2px 8px rgba(255,49,0,0.22);
    cursor: default;
}

.r-video-cta i { font-size: 1rem; }

.r-video-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
    color: var(--muted);
    background: var(--card-base);
    border: 1px solid var(--border-2);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Dolu video kartı — YouTube iframe tam oturur */
.r-video.has-video {
    display: block;
    width: 100%;
    background: #000;
    aspect-ratio: 16 / 9;
}

.r-video.has-video iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* "İzle" rozeti — video eklenmiş kartlar için */
.r-video-badge.is-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: var(--brand);
    border-color: transparent;
    font-weight: 700;
    z-index: 2;
    pointer-events: none;
}

/* Modules listesi (tek sütun, merkez) */
.rehber-modules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* Kurulum adımları (tek sütun, merkez) */
.rehber-steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    margin-top: 18px;
    position: relative;
    padding-left: 44px;
    display: grid;
    gap: 14px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: color-mix(in srgb, var(--brand) 22%, var(--border));
    box-shadow: 0 0 18px rgba(255,49,0,0.14);
    border-radius: 999px;
}

.tl-item {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    padding: 16px 16px;
}

.tl-marker {
    position: absolute;
    left: -44px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--brand) 14%, var(--glass));
    border: 1px solid color-mix(in srgb, var(--brand) 38%, var(--border));
    box-shadow: var(--glow);
    color: color-mix(in srgb, var(--text) 96%, var(--muted));
    font-weight: 800;
}

.tl-item header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tl-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tl-title i { color: var(--brand); }

.tl-item p {
    margin-top: 10px;
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--text) 78%, var(--muted));
    transition: color var(--transition);
}

.shot {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.65), rgba(10, 10, 10, 0.45));
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    max-height: 260px;
    display: grid;
    place-items: center;
}

html[data-theme="light"] .shot {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.66));
}

.shot::before {
    content: "";
    position: absolute;
    inset: -26px;
    background:
        radial-gradient(circle at 28% 30%, rgba(255,49,0,0.22), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255,49,0,0.12), transparent 60%);
    filter: blur(20px);
    opacity: 0.35;
    pointer-events: none;
}

.shot .label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--glass) 72%, transparent);
    border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
    font-weight: 800;
    color: color-mix(in srgb, var(--text) 92%, var(--muted));
}

.shot .label i { color: var(--brand); }

.tip {
    position: relative;
    border-radius: 18px;
    border: 1px dashed color-mix(in srgb, var(--brand) 34%, var(--border));
    background: color-mix(in srgb, var(--brand) 8%, var(--glass));
    padding: 12px 14px;
    color: color-mix(in srgb, var(--text) 84%, var(--muted));
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tip .emoji {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--brand) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--border));
    flex: 0 0 auto;
}

/* ================================
   BÜYÜK EKRAN KISITLAMALARI
================================= */

/* 1400px–1800px arası: boşluklar ve yazı büyüklüğü biraz frenlenir */
@media (min-width: 1400px) {
    .hero { padding: 140px 0 100px; }
    .hero-copy { max-width: 600px; }
    .hero-copy .subtitle { max-width: 520px; }
    .trust-strip { max-width: 480px; }
    .section { padding: 100px 0; }
    .steps { max-width: 960px; }
    .download-steps { max-width: 960px; }
}

/* 1800px+: container zaten 1200px sabit, ama hero mockup'ın taşmaması için */
@media (min-width: 1800px) {
    .hero { padding: 160px 0 120px; }
    .browser-mockup.primary { transform: perspective(1400px) rotateY(-8deg) rotateX(5deg) translateX(4px); }
    .faq-wrap { max-width: 980px; }
}

/* ================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .quick-start-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; max-width: 100%; }
    .hero-copy .subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .trust-strip { align-self: center; max-width: 100%; justify-content: center; border-radius: 18px; }
    .steps { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .download-steps { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col { grid-column: 1 / -1; }

    /* Legal sayfalar tablet */
    .legal-page { padding: 72px 0 60px; }
    .legal-body { padding: 28px 28px; }
}

@media (max-width: 720px) {
    /* Legal sayfalar geniş mobil */
    .legal-page { padding: 56px 0 48px; }
    .legal-body { padding: 24px 20px; border-radius: 8px; }
    .legal-body h4 { font-size: 1rem; }
    .legal-page h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .legal-page .subtitle { font-size: 0.88rem; margin-bottom: 28px; }
}

@media (max-width: 620px) {
    /* ── Navbar ── */
    .nav-rehber-link { display: none; }
    .nav-inner { grid-template-columns: 1fr auto; }
    .nav-right { justify-content: flex-end; }
    .nav-right .btn-main { display: none; }

    /* ── Tipografi ── */
    h1 { font-size: 2.2rem; letter-spacing: -1.2px; }

    h1 .typewriter {
        display: flex;
        margin: 6px auto 0;
        justify-content: center;
        max-width: 100% !important;
        white-space: normal;
        min-height: 1em;
        overflow: visible;
        box-sizing: border-box;
    }

    h1 .typewriter .tw-text { text-align: center; }

    /* ── Hero ── */
    .hero { padding: 100px 0 60px; }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn { width: 100%; justify-content: center; }

    /* ── Beta banner ── */
    .beta-banner {
        height: auto;
        min-height: 34px;
        padding: 6px 10px;
        font-size: 0.76rem;
        gap: 8px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav { top: auto; }

    /* ── Trust strip ── */
    .trust-strip {
        flex-wrap: wrap;
        gap: 8px 14px;
        padding: 10px 16px;
        justify-content: center;
        margin: 20px auto 0;
        max-width: 100%;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .trust-item { font-size: 0.75rem; gap: 6px; }

    /* ── Mockup ── */
    .hero-metric { padding: 0; }
    .hero-metric.hero-metric--showcase { padding: 0; }

    .browser-mockup.primary {
        margin: 30px auto 0;
        transform: none;
        width: 85%;
        max-width: 85%;
        box-sizing: border-box;
        animation: floatYMobile 5.8s ease-in-out infinite;
    }

    .mockup-stack { padding: 0; width: 100%; box-sizing: border-box; display: flex; justify-content: center; }
    .browser-body { padding: 10px; }

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

    /* ── Bölüm boşlukları ── */
    .section { padding: 60px 0; }
    .download-section { padding: 60px 0; }

    /* ── Kartlar ── */
    .step { padding: 20px 16px; }
    .download-step { padding: 20px 16px; }

    /* ── İndir CTA ── */
    .download-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .download-cta .btn { width: 100%; justify-content: center; }

    /* ── Rehber / Legal sayfaları — topbar ── */
    .brand span { display: none; }
    .topbar-home-link { display: none; }
    .topbar-inner { height: 60px; }

    /* Legal sayfada "Ana Sayfa" linki ve brand adı gizlenmemeli */
    .page-legal .brand span { display: inline; }
    .page-legal .topbar-home-link { display: none; }
    .page-legal .topbar-inner { height: 60px; }

    /* ── Legal sayfa içerik ── */
    .legal-page { padding: 44px 0 40px; }
    .legal-body { padding: 20px 16px; border-radius: 8px; }
    .legal-body h4 { font-size: 0.97rem; margin: 18px 0 6px; }
    .legal-body li { font-size: 0.88rem; }
    .legal-body p { font-size: 0.88rem; }
    .legal-page h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
    .legal-page .subtitle { font-size: 0.82rem; margin-bottom: 22px; }

    /* ── Rehber sayfası ── */
    .hero--rehber { padding: 34px 0 12px; }
    .timeline { padding-left: 30px; }
    .timeline::before { left: 13px; }
    .tl-marker { left: -30px; width: 30px; height: 30px; font-size: 0.82rem; }
    .tl-item { padding: 16px; }
    .video { max-height: 200px; margin-top: 12px; }
    .shot { max-height: 180px; margin-top: 10px; }

    /* ── Beta banner çok dar ekran ── */
    @media (max-width: 400px) {
        .beta-banner-link { display: none; }
        .beta-banner { justify-content: center; }
    }

    /* ── Footer mobil ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-tagline { max-width: 100%; }
    .footer-col { align-items: center; }
    .footer-bottom { text-align: center; }
}
