/*
   TIKIR OYUN ARŞİVİ — panel kimliği
   Siyah zemin, altın vurgu (#E8C547), sakin tipografi
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --bg-darkest: #070708;
    --bg-deep: #0c0c0e;
    --bg-card: rgba(20, 20, 22, 0.92);
    --primary: #e8c547;
    --primary-ink: #1c1917;
    --primary-gradient: linear-gradient(180deg, #f0d15c 0%, #e8c547 100%);
    --primary-glow: rgba(232, 197, 71, 0.28);
    --accent: #e8c547;
    --accent-glow: rgba(232, 197, 71, 0.22);
    --text-main: #f5f5f7;
    --text-muted: #c4c4c8;
    --border-dim: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(11, 11, 13, 0.82);
    --neon-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    --transition: cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-darkest);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.65;
    cursor: auto;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg-darkest);
}

h1,
h2,
h3,
h4,
.nav-link,
.stat-number,
.btn {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    background: #000;
    border-bottom: 0;
    padding: 0.7rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header.scrolled {
    padding: 0.6rem 0;
    background: #000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    max-width: 1440px;
}

.header-rail {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}

.brand-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
    border: 0;
    display: block;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    color: #f5f5f7;
}

.logo-text span:first-child {
    color: var(--primary);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.header-socials-mobile {
    display: none;
}

.header-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.48rem 1.05rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    border: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.header-social i {
    font-size: 0.95rem;
}

.header-social:hover {
    transform: translateY(-1px);
    color: #fff;
    filter: brightness(1.08);
}

.header-social-wa {
    background: #25d366;
}

.header-social-fb {
    background: #1877f2;
}

.nav-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.nav-icon:hover {
    color: var(--primary);
    border-color: rgba(232, 197, 71, 0.45);
}

.lang-switcher-desktop {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--border-dim);
}

.lang-switcher-mobile {
    display: none;
    gap: 0.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 4px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 0;
}

.lang-btn:hover,
.lang-btn.active {
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active .flag-icon {
    box-shadow: 0 0 0 2px var(--primary);
}

@media (max-width: 1180px) {
    .lang-switcher-desktop {
        display: none;
    }

    .lang-switcher-mobile {
        display: flex;
    }

    .header-tools {
        display: none;
    }

    .header-socials-mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        width: min(240px, 80%);
    }

    .header-socials-mobile .header-social {
        justify-content: center;
        padding: 0.7rem 1.1rem;
        font-size: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.6rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-left: 1px solid var(--border-dim);
        padding: 2rem 1.2rem;
    }

    .nav.active {
        right: 0;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .nav-link::after {
        bottom: -4px;
    }
}

@media (max-width: 992px) {
    .lang-switcher-desktop {
        display: none;
    }

    .lang-switcher-mobile {
        display: flex;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

@media (max-width: 1360px) and (min-width: 1181px) {
    .nav {
        gap: 0.85rem;
    }

    .nav-link {
        font-size: 0.78rem;
    }

    .header-social {
        padding: 0.42rem 0.85rem;
        font-size: 0.8rem;
    }
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.2s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 48px;
    z-index: 5;
}

.hero .container {
    max-width: 1480px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.7fr);
    gap: 1.8rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: none;
}

.hero-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.1rem;
}

.hero-content h2 {
    font-size: clamp(2.15rem, 3.2vw, 3.15rem);
    font-weight: 750;
    line-height: 1.08;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.04em;
}

.hero-slogan {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-lead,
.hero-content p.hero-lead {
    font-size: 1.05rem;
    color: #d0d0d4;
    margin-bottom: 1.4rem;
    max-width: 34rem;
    font-weight: 400;
    line-height: 1.65;
}

.hero-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin: 0 0 1.35rem;
}

.hero-promise {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 0.72rem 0.75rem 0.78rem;
}

.hero-promise i {
    color: var(--primary);
    margin-top: 0.12rem;
    width: 1.05rem;
    text-align: center;
    flex-shrink: 0;
}

.hero-promise h4 {
    font-size: 0.84rem;
    margin: 0 0 0.18rem;
}

.hero-promise p {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    width: 100%;
    max-width: 24rem;
}

.hero-cta-row .btn:first-child {
    grid-column: 1 / -1;
}

.hero-cta-row .btn {
    justify-content: center;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.15rem;
}

.hero-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-links a:hover {
    color: var(--primary);
}

.btn {
    padding: 0.82rem 1.45rem;
    border-radius: 10px;
    font-weight: 650;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-ink);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: #f0d15c;
    box-shadow: 0 8px 24px var(--primary-glow);
    border-color: #f0d15c;
}

.btn::before {
    display: none;
}

.btn-success {
    background: #1f9d4c;
    color: white;
    box-shadow: none;
}

.btn-success:hover {
    background: #188a42;
    transform: translateY(-1px);
}

.btn-fb {
    background: #1877f2;
    color: white;
    box-shadow: none;
}

.btn-fb:hover {
    background: #0d65d9;
}

.btn-small {
    padding: 0.55rem 1rem;
    font-size: 0.84rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    color: #fff;
}

.btn-pulse {
    animation: none;
}

.hero-demo {
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
}

.hero-demo-label {
    margin: 0 0 0.55rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-demo .demo-shell {
    height: min(74vh, 780px);
}

.hero-demo .demo-footnote {
    text-align: left;
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
}

/* --- Metrics Section --- */
.stats {
    padding: 3.2rem 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.55rem;
    font-weight: 750;
    color: var(--primary);
    text-shadow: none;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.diskless-kicker {
    text-align: center;
    margin: 1.6rem 0 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.diskless-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.diskless-strip span {
    border: 1px solid rgba(232, 197, 71, 0.28);
    border-radius: 12px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    background: rgba(232, 197, 71, 0.08);
}

/* --- Interactive Video Player Styles --- */
.video-outer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-dim);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: #000;
    cursor: pointer;
    transition: 0.4s;
}

.video-placeholder {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: 0.5s;
}

.video-wrapper:hover .video-thumb {
    opacity: 0.7;
    transform: scale(1.05);
}

.play-button-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(232, 197, 71, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    transition: 0.4s;
    z-index: 10;
}

.play-button-inner {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--primary-glow);
    transition: 0.4s;
}

.play-button-inner i {
    font-size: 1.8rem;
    color: white;
    margin-left: 5px;
}

.video-wrapper:hover .play-button-inner {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--primary-glow);
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.fallback-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.fallback-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- Detailed Features Showcase --- */
.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--primary-ink);
    background: var(--primary-gradient);
    box-shadow: none;
}

.feature-icon-box.icon-app-red {
    background: #c23a3a;
    color: #fff;
}

.feature-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2,
.section-heading h3 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.section-heading h2 span:last-child,
.section-heading h3 span:last-child {
    color: var(--primary);
}

.section-heading p {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
}

.product-tour {
    padding: 100px 0;
    background: var(--bg-darkest);
}

.shot-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1.15rem;
}

.shot-tab {
    border: 1px solid var(--border-dim);
    background: transparent;
    color: var(--text-muted);
    border-radius: 12px;
    padding: 0.4rem 1.1rem;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

.shot-tab.active {
    background: var(--primary);
    color: var(--primary-ink);
    border-color: var(--primary);
}

.shot-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.2rem;
}

.shot-gallery.is-client {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
}

.shot-client-note {
    text-align: center;
    max-width: 640px;
    margin: 1rem auto 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.tour-layout.is-client .tour-index {
    display: none;
}

.shot-thumb[hidden] {
    display: none !important;
}

.shot-thumb {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    color: white;
    font: inherit;
    text-align: center;
}

.shot-thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.shot-thumb span {
    display: block;
    padding: 0.55rem 0.4rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.shot-thumb:hover {
    border-color: rgba(232, 197, 71, 0.6);
}

.shot-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(232, 197, 71, 0.2);
}

.cover-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.4rem;
    margin-top: 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.cover-on {
    color: var(--primary);
}

.cover-off {
    color: #94a3b8;
}

.cover-off::before,
.cover-on::before {
    content: "";
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 3px;
    margin-right: 0.45rem;
    vertical-align: -1px;
}

.cover-on::before {
    background: var(--primary);
}

.cover-off::before {
    background: #475569;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.4rem;
}

.category-pills span,
.category-pills button {
    border: 1px solid rgba(232, 197, 71, 0.35);
    color: var(--primary);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

#tourHotspots.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .shot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .shot-gallery.is-client {
        grid-template-columns: minmax(0, 320px);
    }
}

.tour-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}

.tour-stage {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-dim);
    background: #000;
}

.tour-image {
    width: 100%;
    display: block;
}

.product-hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: rgba(232, 197, 71, 0.9);
    color: #1a1400;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(232, 197, 71, 0.2);
    font-family: inherit;
}

.product-hotspot.hotspot-red {
    border-color: #ef4444;
    background: #ef4444;
    color: white;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2);
}

.product-hotspot.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(232, 197, 71, 0.28);
}

.tour-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.6rem;
}

.tour-kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.tour-panel h4 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
}

.tour-panel > p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    min-height: 4.5em;
}

.tour-index {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tour-index-btn {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dim);
    color: white;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
}

.tour-index-btn.active {
    border-color: var(--primary);
    background: rgba(232, 197, 71, 0.12);
}

.how-it-works {
    padding: 90px 0;
    background: var(--bg-deep);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-step {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    text-align: center;
}

.how-num {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-gradient);
    font-weight: 800;
    margin-bottom: 1rem;
}

.how-step h4 {
    margin-bottom: 0.6rem;
}

.how-step .btn {
    margin-top: 0.2rem;
}

.contact-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-tile {
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 14px;
    padding: 1.7rem 1.4rem 1.6rem;
    min-height: 10.5rem;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-tile:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    color: #fff;
}

.contact-tile i {
    font-size: 1.7rem;
    margin-bottom: 0.85rem;
    display: block;
}

.contact-tile h4 {
    margin: 0;
    font-size: 1.15rem;
}

.contact-tile p {
    color: rgba(255, 255, 255, 0.86);
    margin-top: 0.4rem;
    font-size: 0.92rem;
}

.contact-tile-wa {
    background: #1f9d4c;
}

.contact-tile-fb {
    background: #1877f2;
}

.contact-tile-lic {
    background: var(--primary);
    color: var(--primary-ink);
}

.contact-tile-lic p {
    color: rgba(28, 25, 23, 0.72);
}

.contact-tile-lic:hover {
    color: var(--primary-ink);
}

.contact-meta {
    margin-top: 1.7rem;
    text-align: center;
    color: var(--text-muted);
}

.contact-meta p {
    margin: 0.35rem 0;
}

.contact-meta i {
    color: var(--primary);
    margin-right: 0.35rem;
}

.contact-offer {
    margin-top: 1rem;
}

@media (max-width: 800px) {
    .contact-tiles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .tour-layout,
    .how-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h3 {
        font-size: 2.2rem;
    }
}

/* --- FAQ Section --- */
.faq {
    padding: 90px 0;
    background: var(--bg-darkest);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.faq-question i {
    font-size: 0.9rem;
    transition: 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(232, 197, 71, 0.04);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(232, 197, 71, 0.12);
    line-height: 1.7;
}

/* --- Mobile Navigation & Responsiveness --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(7, 7, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-left: 1px solid var(--border-dim);
    }

    .nav.active {
        right: 0;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav .btn {
        width: 80%;
        justify-content: center;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .hero-demo-label,
    .hero-demo .demo-footnote {
        text-align: center;
    }

    .hero-demo .demo-shell {
        height: auto;
    }

    .hero-content,
    .hero-buttons,
    .hero-cta-row,
    .hero-links,
    .hero-promises {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .hero-promises {
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h2 {
        font-size: clamp(2.1rem, 7vw, 3rem);
        margin-bottom: 1rem;
    }

    .nav-icon {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-detail-card {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .footer-bar {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.videos {
    padding: 90px 0;
    background: var(--bg-deep);
}

.video-featured {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid var(--border-dim);
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.video-featured[hidden] {
    display: none !important;
}

.video-featured video,
.video-featured iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    background: #000;
}

.video-featured-meta {
    padding: 1.05rem 1.25rem 1.25rem;
    background: var(--bg-card);
}

.video-featured-meta h4 {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

.video-featured-meta p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.video-cta,
.pack-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.video-cta[hidden] {
    display: none !important;
}

.video-cta .btn,
.pack-cta .btn {
    min-width: 180px;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    border-radius: 12px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.videos-grid[hidden] {
    display: none !important;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
    padding: 0;
    transition: 0.35s;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(232, 197, 71, 0.16);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.28);
}

.video-card-play i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-gradient);
    box-shadow: 0 0 24px var(--primary-glow);
}

.video-card-body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.video-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.video-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    min-height: 2.8em;
}

.video-card-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.videos-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 0 0;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.video-modal[hidden] {
    display: none !important;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal-dialog {
    position: relative;
    width: min(960px, 100%);
    background: #0b0b0d;
    border: 1px solid var(--border-dim);
    border-radius: 18px;
    padding: 1.2rem;
    z-index: 1;
}

.video-modal-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-player iframe,
.video-modal-player video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-modal-dialog h4 {
    margin: 1rem 0 0.4rem;
    font-size: 1.3rem;
}

.video-modal-dialog p {
    color: var(--text-muted);
}

.video-modal-close {
    position: absolute;
    top: 0.4rem;
    right: 0.6rem;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 1024px) {
    .videos h3 {
        font-size: 2.2rem;
    }
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(232, 197, 71, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border-dim);
}

.info-text h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.1rem;
}

.info-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

#urun,
#kurulum,
#features,
#videos,
#faq,
#kimler,
#salon,
#arsiv,
#paket,
#contact,
#ayarlar {
    scroll-margin-top: 88px;
}

.features-showcase {
    padding: 100px 0;
    background: var(--bg-deep);
}

.contact {
    padding: 100px 0;
    background: var(--bg-darkest);
}

.contact-offer {
    width: 100%;
    justify-content: center;
}

.site-footer {
    padding: 2.4rem 0 5.5rem;
    border-top: 1px solid var(--border-dim);
    color: var(--text-muted);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr auto auto;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand strong {
    display: block;
    color: #fff;
    letter-spacing: 0.04em;
}

.footer-brand p {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-credit {
    margin: 0;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-dim);
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.footer-credit span:nth-child(2),
.footer-credit span:nth-child(4) {
    color: var(--primary);
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dim);
    padding-top: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: var(--text-muted);
}

.footer-social a:hover {
    color: var(--primary);
}

.delay-400 {
    transition-delay: 0.4s;
}

[hidden] {
    display: none !important;
}

.hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}

.hero-cta-row,
.hero-cta-more {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-cta-more .btn {
    opacity: 0.92;
}

.audience,
.cafe-day,
.reqs {
    padding: 90px 0;
}

.audience {
    background: var(--bg-deep);
}

.cafe-day {
    background: var(--bg-darkest);
}

.reqs {
    padding: 50px 0 80px;
    background: var(--bg-deep);
}

.audience-grid,
.day-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.day-grid {
    grid-template-columns: repeat(4, 1fr);
}

.audience-card,
.day-step {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: left;
}

.audience-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.audience-card h4,
.day-step h4 {
    margin-bottom: 0.6rem;
}

.audience-card p,
.day-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.day-step {
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s;
}

.day-step:hover,
.feature-detail-card[data-goto-shot]:hover,
.feature-detail-card[data-goto-spot]:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-detail-card[data-goto-shot],
.feature-detail-card[data-goto-spot] {
    cursor: pointer;
}

.day-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.feat-goto {
    margin-top: 1rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
}

.reqs-kicker {
    text-align: center;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.req-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.req-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-dim);
    background: var(--bg-card);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
}

.req-strip i {
    color: var(--primary);
}

.tour-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border-dim);
    background: rgba(0, 0, 0, 0.82);
    color: white;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
}

.shot-zoomable {
    cursor: zoom-in;
}

.shot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 1.2rem;
}

.shot-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
}

.shot-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
}

.shot-lightbox-dialog img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-dim);
    display: block;
}

.contact-actions {
    display: grid;
    gap: 1rem;
}

.contact-action {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.6rem;
}

.contact-action i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.contact-action p {
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0.65rem 0.5rem 1.05rem;
    background: rgba(11, 11, 13, 0.94);
    border: 1px solid var(--border-dim);
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

.sticky-cta span {
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .audience-grid,
    .day-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .audience-grid,
    .day-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .hero-cta-row,
    .hero-cta-more {
        justify-content: center;
    }

    .hero-cta-row .btn,
    .hero-cta-more .btn {
        flex: 1 1 140px;
        justify-content: center;
    }

    .sticky-cta span {
        display: none;
    }
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.35rem;
}

.hero-content .reveal {
    opacity: 1;
    transform: none;
}

.hero-pills span {
    border: 1px solid rgba(232, 197, 71, 0.28);
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(232, 197, 71, 0.08);
}

.catalog,
.license-pack {
    padding: 90px 0;
}

.catalog {
    background: var(--bg-darkest);
}

.license-pack {
    background: var(--bg-deep);
}

.catalog-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.catalog-search {
    flex: 1 1 260px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    color: white;
    padding: 0.75rem 1rem;
    font: inherit;
}

.catalog-count {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.catalog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.catalog-cat {
    border: 1px solid var(--border-dim);
    background: transparent;
    color: white;
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font: inherit;
    font-size: 0.8rem;
    cursor: pointer;
}

.catalog-cat.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(232, 197, 71, 0.12);
}

.catalog-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-height: 28rem;
    overflow: auto;
    padding-right: 0.3rem;
}

.catalog-chip {
    border: 1px solid var(--border-dim);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    cursor: default;
}

.catalog-chip small {
    color: var(--text-muted);
    margin-left: 0.35rem;
    font-size: 0.72rem;
}

.catalog-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 1rem 0 0;
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.settings-tour {
    padding: 80px 0 100px;
    background: var(--bg-darkest);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.settings-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.5rem 1.3rem 1.6rem;
}

.settings-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.55rem;
}

.settings-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.settings-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.settings-card:hover {
    border-color: var(--primary);
}

.pack-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.6rem 1.3rem;
}

.pack-card i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.pack-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 0.45rem;
}

.faq-search-wrap {
    max-width: 480px;
    margin: 1.5rem auto 0;
}

.to-top {
    position: fixed;
    right: 18px;
    bottom: 88px;
    z-index: 1490;
    border: 1px solid var(--border-dim);
    background: rgba(11, 11, 13, 0.94);
    color: white;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
}


@media (prefers-reduced-motion: reduce) {
    .btn-pulse {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .pack-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pack-grid {
        grid-template-columns: 1fr;
    }

    .hero-pills {
        justify-content: center;
        margin-top: 0;
    }

    .to-top {
        bottom: 76px;
        right: 12px;
    }
}

/* --- Live archive demo (in-browser panel) --- */
.demo-window {
    border: 1px solid rgba(232, 197, 71, 0.28);
    border-radius: 14px;
    overflow: hidden;
    background: #0b0b0d;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.demo-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.48rem 0.85rem;
    background: #121214;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-dots {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 16px 0 0 #25d366, 32px 0 0 #1877f2;
    margin-right: 2.1rem;
    flex-shrink: 0;
}

.demo-chrome-title {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-shell {
    display: grid;
    grid-template-columns: 214px minmax(0, 1fr);
    height: min(74vh, 780px);
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #0b0b0d;
    box-shadow: none;
}

.demo-sidebar {
    background: #101012;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.9rem 0.7rem 1rem;
    overflow: auto;
}

.demo-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding: 0.15rem 0.35rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-brand img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    display: block;
}

.demo-brand strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
}

.demo-brand span {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.demo-side-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8e8e93;
    margin: 0.7rem 0.4rem 0.4rem;
}

.demo-side-list,
.demo-side-admin {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-cat,
.demo-side-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    width: 100%;
    border: 0;
    background: transparent;
    color: #d4d4d8;
    text-align: left;
    font: inherit;
    font-size: 0.82rem;
    padding: 0.42rem 0.55rem;
    border-radius: 8px;
    cursor: pointer;
}

.demo-cat:hover,
.demo-side-btn:hover,
.demo-cat.active {
    background: rgba(232, 197, 71, 0.14);
    color: #fff;
}

.demo-cat.active {
    color: var(--primary);
}

.demo-cat small {
    color: #8e8e93;
    font-size: 0.72rem;
}

.demo-side-btn {
    justify-content: flex-start;
    color: #c4c4c8;
}

.demo-side-btn i {
    width: 1.1rem;
    color: var(--primary);
}

.demo-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #0b0b0d;
}

.demo-topbar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.demo-top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.demo-bar-btn {
    border: 0;
    border-radius: 8px;
    padding: 0.38rem 0.7rem;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    background: #1c1c1e;
    color: #f5f5f7;
}

.demo-bar-add {
    background: var(--primary);
    color: var(--primary-ink);
}

.demo-bar-dl {
    background: #c62828;
    color: #fff;
}

.demo-search-wrap {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    padding: 0 0.7rem;
    color: #8e8e93;
}

.demo-search {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    padding: 0.48rem 0;
    outline: none;
}

.demo-customer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    cursor: pointer;
}

.demo-toolbar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.demo-tabs {
    display: flex;
    gap: 0.3rem;
}

.demo-tab {
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.demo-tab.active {
    background: rgba(232, 197, 71, 0.16);
    color: var(--primary);
    border-color: rgba(232, 197, 71, 0.35);
}

.demo-count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.demo-size {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #f5f5f7;
    flex-shrink: 0;
}

.demo-zoom {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #2c2c2e;
    border-radius: 8px;
    background: #18181b;
    color: #f5f5f7;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.demo-zoom:hover {
    background: #2c2c2e;
    color: #fff;
}

.demo-size input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 140px;
    height: 28px;
    margin: 0;
    background: transparent;
    cursor: pointer;
}

.demo-size input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    border: 1px solid #2c2c2e;
    background: linear-gradient(to right, #e8c547 var(--pct, 50%), #2c2c2e var(--pct, 50%));
}

.demo-size input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border-radius: 50%;
    background: #e8c547;
    border: 2px solid #f0d15c;
    box-shadow: none;
}

.demo-size input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    border: 1px solid #2c2c2e;
    background: #2c2c2e;
}

.demo-size input[type="range"]::-moz-range-progress {
    height: 6px;
    border-radius: 3px;
    background: #e8c547;
}

.demo-size input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e8c547;
    border: 2px solid #f0d15c;
    box-shadow: none;
}

.demo-grid {
    flex: 1;
    overflow: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--demo-card, 140px), 1fr));
    gap: 0.85rem;
    padding: 0.9rem;
    align-content: start;
}

.demo-card {
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.demo-cover {
    position: relative;
    aspect-ratio: 2 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #1c1c1e;
}

.demo-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.demo-mono {
    position: relative;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    padding: 0 0.4rem;
    text-align: center;
}

.demo-card h4 {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 0.5rem 0;
    line-height: 1.25;
    min-height: 2.3em;
}

.demo-card p {
    font-size: 0.7rem;
    color: #8e8e93;
    padding: 0 0.5rem 0.55rem;
}

.demo-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 0;
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    background: var(--primary);
    color: var(--primary-ink);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.demo-card:hover .demo-play,
.demo-card.is-downloading .demo-play {
    opacity: 1;
    pointer-events: auto;
}

.demo-card.is-dim .demo-cover {
    filter: grayscale(0.55) brightness(0.48);
}

.demo-card.is-dim .demo-play {
    background: #2c2c2e;
    color: #f5f5f7;
    opacity: 1;
    pointer-events: auto;
}

.demo-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.72);
    color: #e5e5ea;
    border-radius: 6px;
    padding: 0.18rem 0.4rem;
}

.demo-progress {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    height: 5px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.demo-progress > span {
    display: block;
    height: 100%;
    background: var(--primary);
    width: 0;
}

.demo-footnote {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.demo-toast {
    position: fixed;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    z-index: 1600;
    max-width: min(520px, calc(100vw - 24px));
    background: #18181b;
    border: 1px solid rgba(232, 197, 71, 0.35);
    color: #f5f5f7;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .demo-shell {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }

    .demo-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        max-height: 240px;
    }

    .demo-grid {
        min-height: 520px;
        max-height: 70vh;
    }

    .demo-count {
        margin-left: 0;
    }
}