:root {
    --bg:#070914;
    --surface:#101426;
    --surface2:#171c31;
    --text:#f6f7fb;
    --muted:#a7adc2;
    --primary:#7c5cff;
    --primary2:#27c2ff;
    --border:rgba(255,255,255,.09);
    --success:#34d399;
    --danger:#fb7185
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,system-ui,sans-serif;
    line-height:1.6;
    overflow-x:hidden
}

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

.container {
    width:min(1120px,calc(100% - 32px));
    margin:auto
}

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

.page-glow-one {
    width:480px;
    height:480px;
    background:#6d4aff;
    top:-180px;
    right:-100px
}

.page-glow-two {
    width:420px;
    height:420px;
    background:#00b7ff;
    bottom:-180px;
    left:-100px
}

.site-header {
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(7,9,20,.78);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--border)
}

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

.brand {
    display:flex;
    align-items:center;
    gap:11px;
    font-weight:800
}

.brand-logo {
    width:40px;
    height:40px;
    border-radius:11px;
    object-fit:cover;
    box-shadow:0 10px 35px rgba(39,140,255,.35)
}

.nav-links {
    display:flex;
    align-items:center;
    gap:24px;
    color:var(--muted);
    font-size:14px
}

.nav-links a:hover {
    color:#fff
}

.lang-switch {
    display:inline-flex;
    align-items:center;
    gap:2px;
    padding:3px;
    border:1px solid var(--border);
    border-radius:999px
}

.lang-option {
    padding:5px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    color:var(--muted);
    line-height:1
}

.lang-option:hover {
    color:#fff
}

.lang-option.is-active {
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff
}

.button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    border-radius:13px;
    background:linear-gradient(135deg,var(--primary),#5d82ff);
    font-weight:700;
    color:#fff;
    border:0;
    cursor:pointer;
    box-shadow:0 14px 38px rgba(93,94,255,.3);
    transition:.2s
}

.button:hover {
    transform:translateY(-1px);
    filter:brightness(1.08)
}

.button-small {
    padding:9px 15px;
    border-radius:10px
}

.button-ghost {
    background:transparent;
    border:1px solid var(--border);
    box-shadow:none
}

.button-wide {
    width:100%
}

.hero {
    padding:92px 0 70px
}

.hero-grid {
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:64px;
    align-items:center
}

.eyebrow {
    display:inline-flex;
    padding:7px 11px;
    border:1px solid rgba(124,92,255,.35);
    background:rgba(124,92,255,.09);
    border-radius:999px;
    color:#c4b8ff;
    font-size:13px;
    font-weight:700
}

.hero h1 {
    font-size:clamp(42px,6vw,72px);
    line-height:1.02;
    letter-spacing:-.055em;
    margin:22px 0
}

.gradient-text {
    background:linear-gradient(90deg,#a997ff,#56d6ff);
    -webkit-background-clip:text;
    color:transparent
}

.hero p {
    font-size:18px;
    color:var(--muted);
    max-width:620px
}

.hero-actions {
    display:flex;
    gap:14px;
    margin-top:30px
}

.hero-note {
    margin-top:18px;
    color:#7f879e;
    font-size:13px
}

.app-window {
    border:1px solid var(--border);
    border-radius:22px;
    background:linear-gradient(160deg,rgba(24,30,54,.96),rgba(11,14,27,.96));
    box-shadow:0 40px 100px rgba(0,0,0,.45);
    overflow:hidden;
    transform:perspective(1000px) rotateY(-5deg) rotateX(2deg)
}

.window-bar {
    height:48px;
    border-bottom:1px solid var(--border);
    display:flex;
    align-items:center;
    gap:7px;
    padding:0 16px
}

.dot {
    width:9px;
    height:9px;
    border-radius:50%;
    background:#495069
}

.window-content {
    padding:24px
}

.download-card {
    padding:18px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.025);
    border-radius:15px;
    margin-bottom:12px
}

.download-card strong {
    display:block;
    margin-bottom:6px
}

.progress {
    height:8px;
    border-radius:99px;
    background:#252b40;
    overflow:hidden;
    margin-top:13px
}

.progress span {
    display:block;
    height:100%;
    width:74%;
    background:linear-gradient(90deg,var(--primary),var(--primary2));
    border-radius:99px
}

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

.stat {
    padding:14px;
    border-radius:13px;
    background:#0b0f20;
    text-align:center
}

.stat b {
    display:block;
    font-size:20px
}

.stat small {
    color:var(--muted)
}

.section {
    padding:84px 0
}

.section-head {
    text-align:center;
    max-width:690px;
    margin:0 auto 44px
}

.section-head h2 {
    font-size:40px;
    letter-spacing:-.04em;
    margin:0 0 12px
}

.section-head p {
    color:var(--muted)
}

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

.feature {
    padding:25px;
    border:1px solid var(--border);
    border-radius:18px;
    background:rgba(16,20,38,.75)
}

.feature-icon {
    width:44px;
    height:44px;
    border-radius:12px;
    background:rgba(124,92,255,.13);
    display:grid;
    place-items:center;
    margin-bottom:18px;
    font-size:20px
}

.feature h3 {
    margin:0 0 8px
}

.feature p {
    color:var(--muted);
    margin:0;
    font-size:14px
}

.pricing-card {
    max-width:520px;
    margin:auto;
    padding:32px;
    border:1px solid rgba(124,92,255,.4);
    border-radius:24px;
    background:linear-gradient(160deg,rgba(28,31,58,.94),rgba(12,15,29,.94));
    box-shadow:0 35px 80px rgba(0,0,0,.35)
}

.price {
    font-size:48px;
    font-weight:800;
    letter-spacing:-.04em
}

.old-price {
    text-decoration:line-through;
    color:#777f96;
    margin-left:8px
}

.check-list {
    list-style:none;
    padding:0;
    margin:24px 0
}

.check-list li {
    padding:8px 0;
    color:#d8dbee
}

.check-list li:before {
    content:'✓';
    color:var(--success);
    font-weight:800;
    margin-right:10px
}

.auth-section {
    min-height:calc(100vh - 150px);
    display:grid;
    place-items:center;
    padding:60px 0
}

.auth-card {
    width:min(470px,100%);
    padding:34px;
    border:1px solid var(--border);
    border-radius:22px;
    background:rgba(16,20,38,.88);
    box-shadow:0 30px 90px rgba(0,0,0,.32)
}

.auth-card h1 {
    margin-top:0
}

.form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px
}

.field {
    margin-bottom:16px
}

.field label {
    display:block;
    margin-bottom:7px;
    font-size:13px;
    color:#c7cbda;
    font-weight:600
}

.field input {
    width:100%;
    padding:14px 15px;
    border-radius:12px;
    border:1px solid var(--border);
    background:#090d1b;
    color:#fff;
    outline:none
}

.field input:focus {
    border-color:#745fff;
    box-shadow:0 0 0 3px rgba(116,95,255,.12)
}

.form-error {
    color:#fda4af;
    font-size:13px;
    margin-top:6px
}

.auth-bottom {
    text-align:center;
    color:var(--muted);
    font-size:14px;
    margin-top:18px
}

.dashboard {
    padding:55px 0 90px
}

.dashboard-head {
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:28px
}

.dashboard-head h1 {
    margin:0
}

.dashboard-head p {
    color:var(--muted);
    margin:6px 0 0
}

.dashboard-grid {
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:20px
}

.panel {
    padding:25px;
    border:1px solid var(--border);
    border-radius:19px;
    background:rgba(16,20,38,.82)
}

.panel h2 {
    margin-top:0;
    font-size:20px
}

.license-key {
    font-family:ui-monospace,monospace;
    font-size:18px;
    padding:16px;
    border-radius:12px;
    background:#080b17;
    border:1px dashed rgba(124,92,255,.45);
    word-break:break-all
}

.badge {
    display:inline-flex;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:700
}

.badge-active {
    background:rgba(52,211,153,.12);
    color:#6ee7b7
}

.empty-state {
    text-align:center;
    padding:34px 10px;
    color:var(--muted)
}

.meta-list {
    display:grid;
    gap:13px
}

.meta-item {
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding-bottom:13px;
    border-bottom:1px solid var(--border)
}

.meta-item span {
    color:var(--muted)
}

.alert {
    margin-top:20px;
    padding:13px 16px;
    border-radius:12px
}

.alert-success {
    background:rgba(52,211,153,.12);
    border:1px solid rgba(52,211,153,.25);
    color:#8af0c9
}

.alert-error {
    background:rgba(251,113,133,.12);
    border:1px solid rgba(251,113,133,.25);
    color:#fda4af
}

.footer {
    border-top:1px solid var(--border);
    padding:38px 0 22px;
    color:var(--muted)
}

.footer-grid {
    display:flex;
    justify-content:space-between
}

.footer-grid p {
    margin:5px 0
}

.footer-grid div:last-child {
    display:flex;
    gap:20px
}

.footer-bottom {
    margin-top:25px;
    padding-top:18px;
    border-top:1px solid var(--border);
    font-size:13px
}

@media(max-width:850px) {
    .hero-grid,.dashboard-grid {
        grid-template-columns:1fr
    }

    .app-window {
        transform:none
    }

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

    .nav-links>a:not(.button) {
        display:none
    }

}

@media(max-width:560px) {
    .feature-grid,.form-grid {
        grid-template-columns:1fr
    }

    .hero {
        padding-top:60px
    }

    .hero-actions {
        flex-direction:column
    }

    .dashboard-head {
        align-items:start;
        flex-direction:column;
        gap:16px
    }

    .footer-grid {
        flex-direction:column;
        gap:20px
    }

    .footer-grid div:last-child {
        flex-direction:column;
        gap:8px
    }

}

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

/* =========================================================
   Ana sayfa ürün görseli
   ========================================================= */

.hero .hero-grid {
    grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
    gap:clamp(28px,4vw,58px);
    width:100%;
    max-width:1280px
}

.hero-copy,
.product-shot-hero {
    min-width:0
}

.product-shot {
    border:1px solid var(--border);
    border-radius:22px;
    background:linear-gradient(160deg,rgba(24,30,54,.96),rgba(11,14,27,.96));
    box-shadow:0 35px 90px rgba(0,0,0,.42);
    overflow:hidden
}

.product-shot-hero {
    width:100%;
    max-width:100%
}

.product-shot-hero img {
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:contain
}

.shot-toolbar {
    height:40px;
    display:flex;
    align-items:center;
    padding:0 15px;
    border-bottom:1px solid var(--border);
    background:rgba(255,255,255,.018)
}

.shot-controls {
    display:flex;
    gap:7px
}

.shot-controls span {
    width:8px;
    height:8px;
    border-radius:50%;
    background:#566078
}

.eyebrow-dot {
    width:7px;
    height:7px;
    margin-right:7px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    box-shadow:0 0 15px rgba(79,142,255,.75)
}

.trust-strip {
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:rgba(10,14,28,.5)
}

.trust-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr)
}

.trust-grid div {
    padding:24px 18px;
    text-align:center;
    border-right:1px solid var(--border)
}

.trust-grid div:last-child {
    border-right:0
}

.trust-grid strong {
    display:block;
    font-size:22px
}

.trust-grid span {
    color:var(--muted);
    font-size:13px
}

.section-kicker {
    display:inline-block;
    margin-bottom:10px;
    color:#88b6ff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase
}

/* =========================================================
   Uygulama görselleri - Spotlight Carousel V2
   ========================================================= */

.showcase-section {
    position:relative;
    overflow:hidden;
    padding-top:92px;
}

.showcase-section::before {
    content:"";
    position:absolute;
    left:50%;
    top:120px;
    width:760px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(88,70,255,.15),rgba(39,120,255,.06) 42%,transparent 72%);
    filter:blur(22px);
    transform:translateX(-50%);
    pointer-events:none;
}

.showcase-head {
    position:relative;
    z-index:2;
    margin-bottom:34px;
}

.showcase-slider-v2 {
    position:relative;
    z-index:2;
    width:min(100%,1180px);
    margin:0 auto;
}

.showcase-stage {
    position:relative;
    padding:1px;
    overflow:hidden;
    border-radius:30px;
    background:linear-gradient(135deg,rgba(124,92,255,.46),rgba(66,187,255,.15) 38%,rgba(255,255,255,.08) 68%,rgba(124,92,255,.24));
    box-shadow:0 34px 90px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.02);
}

.showcase-stage::after {
    content:"";
    position:absolute;
    inset:1px;
    z-index:0;
    border-radius:29px;
    background:linear-gradient(145deg,rgba(15,21,42,.98),rgba(7,11,23,.99));
    pointer-events:none;
}

.showcase-glow {
    position:absolute;
    z-index:1;
    width:320px;
    height:320px;
    border-radius:50%;
    filter:blur(80px);
    opacity:.28;
    pointer-events:none;
}

.showcase-glow-one {
    left:-100px;
    top:-120px;
    background:#7757ff;
}

.showcase-glow-two {
    right:-80px;
    bottom:-150px;
    background:#35b8ff;
}

.showcase-viewport {
    position:relative;
    z-index:2;
    overflow:hidden;
    border-radius:29px;
}

.showcase-track {
    display:flex;
    width:100%;
    transition:transform .68s cubic-bezier(.2,.72,.2,1);
    will-change:transform;
}

.showcase-slide {
    display:grid;
    grid-template-columns:minmax(260px,.82fr) minmax(0,1.8fr);
    gap:34px;
    align-items:center;
    flex:0 0 100%;
    min-width:0;
    padding:38px 40px 40px;
}

.showcase-copy {
    position:relative;
    z-index:2;
    padding:12px 0;
}

.showcase-meta {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.showcase-number {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:48px;
    height:32px;
    padding:0 12px;
    border:1px solid rgba(137,110,255,.42);
    border-radius:999px;
    background:linear-gradient(135deg,rgba(124,92,255,.18),rgba(63,126,255,.10));
    color:#d5ccff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.04em;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.showcase-mini-label {
    color:#8090b4;
    font-size:11px;
    font-weight:800;
    letter-spacing:.11em;
}

.showcase-copy h3 {
    margin:0 0 14px;
    font-size:clamp(28px,3.15vw,45px);
    line-height:1.04;
    letter-spacing:-.045em;
    text-wrap:balance;
}

.showcase-copy p {
    max-width:440px;
    margin:0;
    color:#9da8c3;
    font-size:15px;
    line-height:1.72;
}

.showcase-pills {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:22px;
}

.showcase-pills span {
    display:inline-flex;
    align-items:center;
    min-height:31px;
    padding:0 11px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:10px;
    background:rgba(255,255,255,.035);
    color:#b7c0d6;
    font-size:12px;
    font-weight:700;
}

.showcase-visual {
    position:relative;
    min-width:0;
    padding:10px;
    overflow:hidden;
    border:1px solid rgba(102,128,214,.19);
    border-radius:22px;
    background:linear-gradient(180deg,rgba(12,18,35,.96),rgba(5,8,17,.98));
    box-shadow:0 24px 55px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.045);
    transform:translateY(0) scale(1);
    transition:transform .45s ease,box-shadow .45s ease;
}

.showcase-slide.is-active .showcase-visual {
    animation:showcaseFloatIn .62s cubic-bezier(.2,.72,.2,1) both;
}

.showcase-visual-topbar {
    display:flex;
    align-items:center;
    gap:9px;
    height:38px;
    padding:0 10px 0 11px;
    color:#8c9ab7;
    font-size:11px;
    font-weight:700;
}

.showcase-live-dot {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#59d79e;
    box-shadow:0 0 0 4px rgba(89,215,158,.09),0 0 14px rgba(89,215,158,.38);
}

.showcase-counter {
    margin-left:auto;
    color:#687898;
    font-variant-numeric:tabular-nums;
}

.showcase-image-wrap {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:360px;
    max-height:520px;
    padding:8px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.055);
    border-radius:15px;
    background:#030611;
}

.showcase-image-wrap::after {
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:linear-gradient(120deg,rgba(255,255,255,.035),transparent 28%,transparent 72%,rgba(83,119,255,.035));
    pointer-events:none;
}

.showcase-image-wrap img {
    display:block;
    width:auto;
    max-width:100%;
    height:auto;
    max-height:490px;
    object-fit:contain;
    border-radius:9px;
    filter:saturate(1.03) contrast(1.015);
}

.showcase-arrow {
    position:absolute;
    top:50%;
    z-index:5;
    display:grid;
    place-items:center;
    width:48px;
    height:48px;
    padding:0 0 3px;
    border:1px solid rgba(135,151,199,.2);
    border-radius:16px;
    background:rgba(14,20,39,.88);
    backdrop-filter:blur(12px);
    color:#eef3ff;
    font-size:31px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 16px 36px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.055);
    transform:translateY(-50%);
    transition:all .22s ease;
}

.showcase-arrow:hover {
    border-color:rgba(124,92,255,.58);
    background:linear-gradient(135deg,rgba(111,79,255,.94),rgba(58,112,235,.94));
    box-shadow:0 18px 40px rgba(70,79,215,.28);
    transform:translateY(-50%) scale(1.06);
}

.showcase-arrow-prev { left:14px; }
.showcase-arrow-next { right:14px; }

.showcase-nav {
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
    gap:10px;
    margin-top:14px;
}

.showcase-tab {
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
    min-height:66px;
    padding:12px 14px;
    overflow:hidden;
    border:1px solid rgba(116,132,179,.15);
    border-radius:16px;
    background:rgba(14,19,36,.74);
    color:#8996b3;
    text-align:left;
    cursor:pointer;
    transition:all .24s ease;
}

.showcase-tab::before {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#765cff,#36bdf4);
    transition:width .34s ease;
}

.showcase-tab:hover {
    border-color:rgba(124,92,255,.30);
    background:rgba(20,27,51,.88);
    transform:translateY(-2px);
}

.showcase-tab.is-active {
    border-color:rgba(124,92,255,.36);
    background:linear-gradient(135deg,rgba(91,67,207,.18),rgba(38,78,154,.13));
    color:#fff;
    box-shadow:0 14px 30px rgba(0,0,0,.16);
}

.showcase-tab.is-active::before { width:100%; }

.showcase-tab-index {
    display:grid;
    place-items:center;
    flex:0 0 34px;
    width:34px;
    height:34px;
    border-radius:11px;
    background:rgba(255,255,255,.045);
    color:#8b99ba;
    font-size:11px;
    font-weight:900;
}

.showcase-tab.is-active .showcase-tab-index {
    background:linear-gradient(135deg,#6d55e8,#3b7fd6);
    color:#fff;
}

.showcase-tab > span:last-child {
    display:flex;
    flex-direction:column;
    min-width:0;
}

.showcase-tab strong {
    color:inherit;
    font-size:13px;
    line-height:1.25;
}

.showcase-tab small {
    margin-top:2px;
    overflow:hidden;
    color:#6f7d9c;
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.showcase-tab.is-active small { color:#9ba8c6; }


/* 7 ekranlı güncel tanıtım menüsü */
@media(min-width:981px) {
    .showcase-nav { gap:8px; }
    .showcase-tab { gap:8px; min-height:64px; padding:10px 9px; }
    .showcase-tab-index { flex-basis:30px; width:30px; height:30px; border-radius:9px; font-size:10px; }
    .showcase-tab strong { font-size:12px; }
    .showcase-tab small { font-size:10px; }
}

@media(max-width:1180px) and (min-width:721px) {
    .showcase-nav { grid-template-columns:repeat(4,1fr); }
}

@keyframes showcaseFloatIn {
    from { opacity:.72; transform:translateY(12px) scale(.985); }
    to { opacity:1; transform:translateY(0) scale(1); }
}

@media(max-width:980px) {
    .showcase-slide {
        grid-template-columns:1fr;
        gap:22px;
        padding:30px 58px 32px;
    }

    .showcase-copy {
        padding:0;
        text-align:center;
    }

    .showcase-copy p { margin:0 auto; }
    .showcase-meta,.showcase-pills { justify-content:center; }

    .showcase-image-wrap {
        min-height:260px;
        max-height:430px;
    }

    .showcase-image-wrap img { max-height:400px; }
}

@media(max-width:720px) {
    .showcase-stage { border-radius:24px; }
    .showcase-viewport { border-radius:23px; }

    .showcase-slide {
        padding:26px 20px 28px;
    }

    .showcase-copy h3 { font-size:clamp(26px,8vw,36px); }

    .showcase-image-wrap {
        min-height:190px;
        max-height:330px;
        padding:5px;
    }

    .showcase-image-wrap img { max-height:310px; }

    .showcase-arrow {
        top:auto;
        bottom:16px;
        width:42px;
        height:42px;
        border-radius:13px;
        transform:none;
    }

    .showcase-arrow:hover { transform:scale(1.05); }
    .showcase-arrow-prev { left:16px; }
    .showcase-arrow-next { right:16px; }

    .showcase-nav {
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px) {
    .showcase-nav { grid-template-columns:1fr; }
    .showcase-tab { min-height:58px; }
    .showcase-mini-label { display:none; }
    .showcase-pills { gap:6px; }
    .showcase-pills span { font-size:11px; }
}

.pricing-layout {
    display:grid;
    grid-template-columns:1fr minmax(360px,520px);
    gap:60px;
    align-items:center
}

.pricing-copy h2 {
    margin:0 0 14px;
    font-size:clamp(34px,4vw,50px);
    line-height:1.08;
    letter-spacing:-.04em
}

.pricing-copy>p {
    color:var(--muted)
}

.pricing-points {
    display:grid;
    gap:12px;
    margin-top:26px
}

.pricing-points div {
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:13px;
    background:rgba(16,20,38,.62)
}

.pricing-points b,
.pricing-points span {
    display:block
}

.pricing-points span {
    margin-top:2px;
    color:var(--muted);
    font-size:13px
}

.price-row {
    display:flex;
    align-items:baseline;
    gap:10px;
    margin-top:12px
}

@media(max-width:1100px) {
    .hero .hero-grid {
        grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
        gap:30px
    }

    .hero h1 {
        font-size:clamp(42px,5.5vw,68px)
    }
}

@media(max-width:900px) {
    .hero .hero-grid,
    .pricing-layout {
        grid-template-columns:1fr
    }

    .product-shot-hero {
        margin-top:12px
    }

    .showcase-slider {
        padding-right:48px;
        padding-left:48px
    }

    .showcase-slide {
        padding:20px
    }

    .showcase-image-wrap {
        min-height:220px;
        max-height:420px
    }

    .showcase-image-wrap img {
        max-height:380px
    }

    .trust-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .trust-grid div:nth-child(2) {
        border-right:0
    }

    .trust-grid div:nth-child(-n+2) {
        border-bottom:1px solid var(--border)
    }
}

@media(max-width:560px) {
    .showcase-slider {
        padding-right:0;
        padding-left:0
    }

    .showcase-slide {
        padding:14px
    }

    .showcase-image-wrap {
        min-height:170px;
        max-height:290px;
        padding:6px
    }

    .showcase-image-wrap img {
        max-height:270px
    }

    .showcase-arrow {
        top:auto;
        bottom:0;
        width:38px;
        height:38px;
        font-size:27px;
        transform:none
    }

    .showcase-arrow:hover {
        transform:scale(1.05)
    }

    .showcase-arrow-prev {
        left:calc(50% - 82px)
    }

    .showcase-arrow-next {
        right:calc(50% - 82px)
    }

    .showcase-dots {
        bottom:12px
    }

    .trust-grid {
        grid-template-columns:1fr 1fr
    }
}


/* =========================================================
   Modern giriş ve kayıt sayfaları
   ========================================================= */

.auth-page {
    min-height:100vh;
    background:
        radial-gradient(circle at 10% 15%,rgba(39,194,255,.11),transparent 32%),
        radial-gradient(circle at 88% 10%,rgba(124,92,255,.14),transparent 34%),
        var(--bg)
}

.auth-header {
    position:relative;
    z-index:10;
    border-bottom:1px solid var(--border);
    background:rgba(7,9,20,.72);
    backdrop-filter:blur(18px)
}

.auth-nav {
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px
}

.auth-shell {
    min-height:calc(100vh - 73px);
    display:grid;
    place-items:center;
    padding:54px 20px 70px
}

.auth-layout {
    width:min(1120px,100%);
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(390px,490px);
    align-items:center;
    gap:clamp(44px,7vw,92px)
}

.auth-layout-register {
    grid-template-columns:minmax(0,1fr) minmax(430px,530px)
}

.auth-promo {
    max-width:590px
}

.auth-promo h1 {
    margin:22px 0 18px;
    font-size:clamp(38px,5vw,62px);
    line-height:1.04;
    letter-spacing:-.052em
}

.auth-promo>p {
    max-width:560px;
    margin:0;
    color:var(--muted);
    font-size:17px
}

.auth-benefits {
    display:grid;
    gap:13px;
    margin-top:30px
}

.auth-benefits div {
    display:flex;
    align-items:center;
    gap:12px;
    color:#dfe4f4
}

.auth-benefits span {
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:9px;
    background:rgba(52,211,153,.12);
    color:#79ebbe;
    font-weight:900
}

.auth-card-modern {
    width:100%;
    padding:30px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:24px;
    background:linear-gradient(160deg,rgba(20,25,45,.96),rgba(10,13,25,.97));
    box-shadow:0 36px 100px rgba(0,0,0,.42),0 0 0 1px rgba(124,92,255,.04) inset
}

.auth-card-head {
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:24px
}

.auth-card-head h2 {
    margin:0;
    font-size:30px;
    letter-spacing:-.035em
}

.auth-card-head p {
    margin:4px 0 0;
    color:var(--muted);
    font-size:14px
}

.auth-card-icon {
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:14px;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    font-size:24px;
    font-weight:800;
    box-shadow:0 12px 30px rgba(77,105,255,.3)
}

.auth-form .field {
    margin-bottom:17px
}

.auth-form .field label {
    color:#e5e8f4;
    font-size:13px
}

.field-label-row {
    display:flex;
    justify-content:space-between;
    align-items:center
}

.input-wrap {
    position:relative
}

.input-wrap input {
    width:100%;
    min-height:52px;
    padding:13px 74px 13px 44px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:13px;
    background:#090d1b;
    color:#fff;
    font:inherit;
    outline:none;
    transition:border-color .2s,box-shadow .2s,background .2s
}

.input-wrap input::placeholder {
    color:#677089
}

.input-wrap input:focus {
    border-color:#6e65ff;
    background:#0b1020;
    box-shadow:0 0 0 4px rgba(110,101,255,.12)
}

.input-icon {
    position:absolute;
    left:15px;
    top:50%;
    z-index:2;
    transform:translateY(-50%);
    color:#8b94ad;
    font-size:13px;
    font-weight:800;
    pointer-events:none
}

.password-toggle {
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    padding:7px 9px;
    border:0;
    border-radius:8px;
    background:transparent;
    color:#9ea6bc;
    font:inherit;
    font-size:12px;
    font-weight:700;
    cursor:pointer
}

.password-toggle:hover {
    background:rgba(255,255,255,.05);
    color:#fff
}

.auth-submit {
    min-height:52px;
    margin-top:4px;
    font-size:15px
}

.auth-divider {
    display:flex;
    align-items:center;
    gap:12px;
    margin:22px 0 16px;
    color:#697188;
    font-size:12px
}

.auth-divider:before,
.auth-divider:after {
    content:'';
    height:1px;
    flex:1;
    background:var(--border)
}

.auth-bottom {
    margin:0;
    text-align:center;
    color:var(--muted);
    font-size:14px
}

.auth-bottom a {
    color:#9f91ff;
    font-weight:700
}

.auth-bottom a:hover {
    color:#c8c0ff
}

.auth-terms {
    margin:-2px 0 17px;
    color:#778097;
    font-size:12px;
    line-height:1.55
}

.auth-card-modern .alert {
    margin:0 0 18px
}

.auth-card-modern .form-error {
    margin-top:7px
}

@media(max-width:920px) {
    .auth-layout,
    .auth-layout-register {
        grid-template-columns:1fr;
        max-width:620px;
        gap:32px
    }

    .auth-promo {
        text-align:center;
        margin:auto
    }

    .auth-promo>p {
        margin-inline:auto
    }

    .auth-benefits {
        display:flex;
        flex-wrap:wrap;
        justify-content:center
    }
}

@media(max-width:620px) {
    .auth-shell {
        padding:30px 14px 46px
    }

    .auth-nav .brand span {
        display:none
    }

    .auth-promo h1 {
        font-size:36px
    }

    .auth-promo>p {
        font-size:15px
    }

    .auth-benefits {
        display:grid;
        justify-content:stretch;
        text-align:left
    }

    .auth-card-modern {
        padding:22px 18px;
        border-radius:19px
    }

    .auth-card-head h2 {
        font-size:26px
    }

    .auth-layout-register .form-grid {
        grid-template-columns:1fr
    }
}


/* Cloudflare Turnstile */
.turnstile-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 100%;
    margin: 4px 0 18px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    background: rgba(9,13,27,.72);
    overflow: hidden;
}

.turnstile-wrap .cf-turnstile {
    max-width: 100%;
}

@media (max-width: 390px) {
    .turnstile-wrap {
        padding: 10px 4px;
    }

    .turnstile-wrap .cf-turnstile {
        transform: scale(.91);
        transform-origin: center;
    }
}


/* =========================================================
   Kullanıcı paneli
   ========================================================= */

.account-page {
    min-height: 100vh;
}

.account-dashboard {
    padding: 52px 0 90px;
}

.account-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.account-hero h1 {
    margin: 4px 0 8px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.account-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.panel-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #8bb6ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.license-waiting-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid rgba(251, 191, 36, .28);
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(251, 191, 36, .10),
        rgba(16, 20, 38, .88)
    );
}

.license-waiting-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 15px;
    background: rgba(251, 191, 36, .13);
    font-size: 26px;
}

.license-waiting-banner h2 {
    margin: 9px 0 3px;
    font-size: 20px;
}

.license-waiting-banner p {
    margin: 0;
    color: var(--muted);
}

.account-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 20px;
    margin-bottom: 22px;
}

.account-panel,
.account-section {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(16, 20, 38, .82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.account-panel {
    padding: 24px;
}

.account-panel-head,
.account-section-head,
.account-license-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.account-panel h2,
.account-section h2 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -.025em;
}

.account-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.account-detail {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8, 11, 23, .62);
}

.account-detail-wide {
    grid-column: span 2;
}

.account-detail span,
.license-key-block span,
.license-info-grid span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
}

.account-detail strong {
    display: block;
    overflow-wrap: anywhere;
}

.account-summary-panel h2 {
    margin-bottom: 20px;
}

.account-summary-list {
    display: grid;
    gap: 12px;
}

.account-summary-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.account-summary-list > div:last-child {
    border-bottom: 0;
}

.account-summary-list span {
    color: var(--muted);
    font-size: 14px;
}

.account-summary-list strong {
    font-size: 24px;
}

.account-section {
    padding: 24px;
    margin-top: 22px;
}

.account-section-head {
    margin-bottom: 20px;
}

.account-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 15px;
}

.account-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.account-table th,
.account-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.account-table th {
    background: rgba(8, 11, 23, .82);
    color: #aeb5ca;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.account-table td {
    color: #e8eaf3;
    font-size: 14px;
}

.account-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-table tbody tr:hover {
    background: rgba(255, 255, 255, .018);
}

.order-number {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    color: #b9c8ff;
}

.badge-warning {
    background: rgba(251, 191, 36, .13);
    color: #fcd879;
}

.badge-danger {
    background: rgba(251, 113, 133, .13);
    color: #fda4af;
}

.badge-success {
    background: rgba(52, 211, 153, .12);
    color: #75e8bd;
}

.badge-neutral {
    background: rgba(148, 163, 184, .12);
    color: #cbd5e1;
}

.account-empty {
    display: grid;
    place-items: center;
    min-height: 240px;
    padding: 36px 20px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, .11);
    border-radius: 16px;
    background: rgba(8, 11, 23, .38);
}

.account-empty-icon {
    margin-bottom: 10px;
    font-size: 34px;
}

.account-empty h3 {
    margin: 8px 0 4px;
}

.account-empty p {
    max-width: 570px;
    margin: 0 0 18px;
    color: var(--muted);
}

.license-card-grid {
    display: grid;
    gap: 18px;
}

.account-license-card {
    padding: 22px;
    border: 1px solid rgba(124, 92, 255, .24);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(27, 32, 59, .88), rgba(8, 11, 23, .93));
}

.account-license-head h3 {
    margin: 0;
    font-size: 21px;
}

.license-key-block {
    margin: 18px 0;
    padding: 16px;
    border: 1px dashed rgba(124, 92, 255, .42);
    border-radius: 13px;
    background: rgba(5, 8, 18, .72);
}

.license-key-block strong {
    display: block;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.license-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.license-info-grid > div {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(8, 11, 23, .58);
}

.license-info-grid strong {
    display: block;
}

.license-download-area {
    margin-top: 18px;
}

.download-version {
    margin-left: 8px;
    opacity: .72;
    font-size: 12px;
}

.button-disabled,
.button:disabled {
    cursor: not-allowed;
    opacity: .48;
    box-shadow: none;
    transform: none;
    filter: none;
}

@media (max-width: 880px) {
    .account-overview-grid {
        grid-template-columns: 1fr;
    }

    .license-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .account-dashboard {
        padding-top: 32px;
    }

    .account-hero,
    .account-panel-head,
    .account-section-head,
    .account-license-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-detail-grid,
    .license-info-grid {
        grid-template-columns: 1fr;
    }

    .account-detail-wide {
        grid-column: span 1;
    }

    .account-panel,
    .account-section,
    .account-license-card {
        padding: 18px;
    }

    .license-waiting-banner {
        align-items: flex-start;
    }
}


/* =========================================================
   Admin paneli
   ========================================================= */

.admin-page {
    min-height: 100vh;
    background: var(--bg);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(7,9,20,.88);
    backdrop-filter: blur(18px);
}

.admin-topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-topbar-user > span {
    color: var(--muted);
    font-size: 13px;
}

.admin-shell {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    padding: 24px 16px;
    border-right: 1px solid var(--border);
    background: rgba(10,14,28,.78);
}

.admin-sidebar-title {
    padding: 0 12px 12px;
    color: #667087;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-menu {
    display: grid;
    gap: 7px;
}

.admin-menu a {
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #aeb5c9;
    font-size: 14px;
    font-weight: 700;
}

.admin-menu a:hover {
    border-color: var(--border);
    background: rgba(255,255,255,.025);
    color: #fff;
}

.admin-menu a.is-active {
    border-color: rgba(124,92,255,.42);
    background: linear-gradient(135deg,rgba(124,92,255,.20),rgba(39,194,255,.09));
    color: #fff;
}

.admin-content {
    min-width: 0;
    padding: 34px;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-page-head h1 {
    margin: 4px 0 7px;
    font-size: clamp(30px,4vw,44px);
    letter-spacing: -.04em;
}

.admin-page-head p {
    margin: 0;
    color: var(--muted);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.admin-stat-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: linear-gradient(145deg,rgba(22,27,49,.88),rgba(10,13,26,.92));
}

.admin-stat-card span {
    display: block;
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 13px;
}

.admin-stat-card strong {
    display: block;
    font-size: clamp(24px,3vw,35px);
    letter-spacing: -.04em;
}

.admin-panel {
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: rgba(16,20,38,.84);
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-panel h2,
.admin-panel-head h2 {
    margin: 0;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.admin-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 15px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: #090d1b;
    color: #939bb1;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-table td {
    font-size: 13px;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-table td small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.admin-empty-cell {
    padding: 35px !important;
    text-align: center !important;
    color: var(--muted);
}

.admin-key {
    max-width: 270px;
    font-family: ui-monospace,SFMono-Regular,Consolas,monospace;
    overflow-wrap: anywhere;
}

.admin-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.admin-actions form {
    margin: 0;
}

.admin-actions-stack {
    min-width: 250px;
}

.button-danger {
    background: linear-gradient(135deg,#d63a58,#f35e73);
    box-shadow: 0 12px 28px rgba(214,58,88,.20);
}

.button-success {
    background: linear-gradient(135deg,#149968,#30c997);
    box-shadow: 0 12px 28px rgba(20,153,104,.18);
}

.admin-search {
    display: flex;
    gap: 8px;
}

.admin-search input,
.status-form select,
.extend-form input,
.admin-form textarea,
.admin-form select {
    min-height: 40px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #090d1b;
    color: #fff;
    outline: none;
}

.admin-search input {
    width: min(340px,70vw);
}

.admin-reset-link input {
    width: 100%;
    margin: 12px 0 8px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #090d1b;
    color: #c9d6ff;
}

.admin-reset-link small {
    color: var(--muted);
}

.pending-license-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}

.pending-license-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(145deg,rgba(22,27,49,.88),rgba(10,13,26,.93));
}

.pending-license-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.pending-license-head h2 {
    margin: 0 0 4px;
}

.pending-license-head p {
    margin: 0;
    color: var(--muted);
}

.admin-meta-list {
    display: grid;
    gap: 10px;
}

.admin-meta-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.admin-meta-list > div:last-child {
    border-bottom: 0;
}

.admin-meta-list span {
    color: var(--muted);
    font-size: 13px;
}

.pending-actions {
    margin-top: 18px;
}

.admin-wide-empty {
    grid-column: 1/-1;
}

.extend-form,
.status-form {
    display: flex;
    gap: 7px;
}

.extend-form input {
    width: 72px;
}

.status-form select {
    max-width: 155px;
}

.admin-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.admin-filter-tabs a {
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.admin-filter-tabs a.is-active {
    border-color: rgba(124,92,255,.5);
    background: rgba(124,92,255,.15);
    color: #fff;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 20px;
}

.admin-version-layout {
    align-items: start;
}

.admin-form textarea {
    width: 100%;
    resize: vertical;
    font: inherit;
}

.admin-checkbox {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 12px 0 18px;
    color: #d6daea;
}

.version-list {
    display: grid;
    gap: 13px;
}

.version-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8,11,23,.54);
}

.version-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

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

.version-card-head > div:first-child span {
    color: var(--muted);
    font-size: 12px;
}

.version-card-head > div:last-child {
    display: flex;
    gap: 6px;
}

.version-notes {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

@media(max-width:1150px) {
    .admin-stat-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .pending-license-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:850px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .admin-menu {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .admin-content {
        padding: 22px 15px;
    }

    .admin-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:620px) {
    .admin-topbar {
        height: auto;
        min-height: 72px;
        padding: 12px 15px;
    }

    .admin-topbar-user > span {
        display: none;
    }

    .admin-topbar .brand span {
        display: none;
    }

    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-stat-grid {
        grid-template-columns: 1fr;
    }

    .admin-menu {
        grid-template-columns: 1fr;
    }

    .admin-search {
        width: 100%;
    }

    .admin-search input {
        flex: 1;
        min-width: 0;
    }
}

/* Setup indirme alanları */
.nav-download-link {
    color:#fff !important;
    font-weight:800;
}

.button-download {
    gap:9px;
    background:linear-gradient(135deg,#4b3ba8,#36569f);
    box-shadow:0 14px 38px rgba(67,72,176,.34);
}

.download-strip {
    padding:22px 0 10px;
}

.download-strip-card {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:26px 30px;
    border:1px solid rgba(112,92,255,.34);
    border-radius:24px;
    background:linear-gradient(135deg,rgba(31,36,78,.94),rgba(19,25,57,.92));
    box-shadow:0 22px 60px rgba(0,0,0,.24);
}

.download-strip-copy {
    display:flex;
    align-items:center;
    gap:18px;
    min-width:0;
}

.download-strip-badge {
    display:grid;
    place-items:center;
    flex:0 0 auto;
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,rgba(130,110,255,.28),rgba(76,197,255,.18));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 10px 30px rgba(55,72,170,.22);
}

.download-strip-badge img {
    display:block;
    width:34px;
    height:34px;
    object-fit:contain;
}

.download-strip-text {
    min-width:0;
}

.download-strip-kicker,
.download-strip-text strong,
.download-strip-text span {
    display:block;
}

.download-strip-kicker {
    margin-bottom:6px;
    color:#9ea7c6;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.download-strip-text strong {
    margin-bottom:6px;
    color:#fff;
    font-size:24px;
    line-height:1.2;
}

.download-strip-text span {
    max-width:720px;
    color:var(--muted);
    font-size:15px;
    line-height:1.6;
}

.download-strip-button {
    flex:0 0 auto;
    min-width:250px;
    justify-content:center;
    text-align:center;
}

.pricing-download-button {
    margin-top:12px;
}

.final-download-section {
    padding-top:20px;
}

.final-download-card {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:42px;
    padding:46px;
    border:1px solid rgba(112,92,255,.34);
    border-radius:26px;
    background:linear-gradient(135deg,rgba(75,55,164,.25),rgba(24,50,100,.34));
}

.final-download-card h2 {
    margin:10px 0 8px;
    font-size:clamp(28px,4vw,44px);
    line-height:1.12;
}

.final-download-card p {
    margin:0;
    max-width:700px;
    color:var(--muted);
}

.button-download-large {
    min-width:300px;
    padding:18px 24px;
    text-align:center;
}

@media (max-width: 860px) {
    .download-strip-card,
    .final-download-card {
        align-items:stretch;
        flex-direction:column;
    }

    .download-strip-button,
    .button-download-large {
        min-width:0;
        width:100%;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction:column;
    }

    .hero-actions .button,
    .download-strip-card .button {
        width:100%;
    }

    .download-strip-card,
    .final-download-card {
        padding:24px 20px;
    }

    .download-strip-text strong {
        font-size:20px;
    }
}


/* ===== Download banner V2 - cache-independent redesign ===== */
.download-banner-v2 {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    overflow:hidden;
    padding:30px 34px;
    border:1px solid rgba(121,104,255,.42);
    border-radius:26px;
    background:
        radial-gradient(circle at 12% 50%, rgba(99,79,232,.22), transparent 36%),
        linear-gradient(135deg, rgba(24,28,62,.98), rgba(12,17,37,.98));
    box-shadow:0 22px 65px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.035);
}

.download-banner-v2::after {
    content:"";
    position:absolute;
    top:-80px;
    right:18%;
    width:210px;
    height:210px;
    border-radius:50%;
    background:rgba(88,100,255,.10);
    filter:blur(18px);
    pointer-events:none;
}

.download-banner-main {
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:20px;
    min-width:0;
}

.download-banner-logo {
    display:grid;
    place-items:center;
    flex:0 0 auto;
    width:70px;
    height:70px;
    border-radius:21px;
    background:linear-gradient(145deg, rgba(105,83,255,.30), rgba(43,123,220,.24));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 13px 35px rgba(50,60,170,.22);
}

.download-banner-logo img {
    width:42px;
    height:42px;
    object-fit:contain;
}

.download-banner-content {
    min-width:0;
}

.download-banner-label {
    display:block;
    margin-bottom:7px;
    color:#8f9ac4;
    font-size:11px;
    font-weight:800;
    letter-spacing:.14em;
}

.download-banner-content h3 {
    margin:0 0 7px;
    color:#fff;
    font-size:21px;
    line-height:1.25;
}

.download-banner-content p {
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.55;
}

.download-banner-action {
    position:relative;
    z-index:1;
    display:flex;
    flex:0 0 auto;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    min-width:245px;
}

.download-banner-button {
    justify-content:center;
    min-height:54px;
    padding:0 24px;
    border-radius:14px;
    font-weight:800;
    text-align:center;
}

.download-banner-action small {
    color:#7f89aa;
    font-size:11px;
    text-align:center;
}

/* Setup buttons: icon/arrow intentionally removed */
.button-download .download-icon,
.download-banner-button .download-icon {
    display:none !important;
}

@media (max-width: 860px) {
    .download-banner-v2 {
        flex-direction:column;
        align-items:stretch;
    }

    .download-banner-action {
        min-width:0;
        width:100%;
    }
}

@media (max-width: 560px) {
    .download-banner-v2 {
        padding:24px 20px;
    }

    .download-banner-main {
        align-items:flex-start;
    }

    .download-banner-logo {
        width:58px;
        height:58px;
        border-radius:17px;
    }

    .download-banner-logo img {
        width:34px;
        height:34px;
    }
}


/* SEO resource cards - additive, mevcut yapıyı bozmaz */
.seo-resources{padding-top:42px}
.seo-link-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.seo-link-card{display:flex;flex-direction:column;gap:9px;min-height:135px;padding:22px;border:1px solid var(--border);border-radius:18px;background:rgba(255,255,255,.025);text-decoration:none;transition:transform .2s ease,border-color .2s ease,background .2s ease}
.seo-link-card:hover{transform:translateY(-3px);border-color:rgba(105,91,255,.55);background:rgba(91,82,218,.08)}
.seo-link-card strong{color:#fff;font-size:16px}
.seo-link-card span{color:var(--muted);font-size:14px;line-height:1.55}
.seo-article{max-width:920px;margin:0 auto}
.seo-article-hero{padding:78px 0 24px}
.seo-article-hero h1{font-size:clamp(34px,5vw,60px);line-height:1.05;margin:16px 0}
.seo-article-hero p{font-size:18px;color:var(--muted);max-width:780px}
.seo-content{padding:24px 0 70px}
.seo-content-card{padding:30px;border:1px solid var(--border);border-radius:22px;background:rgba(255,255,255,.025);margin-bottom:20px}
.seo-content-card h2{margin-top:0;font-size:28px}
.seo-content-card h3{margin-top:24px;font-size:20px}
.seo-content-card p,.seo-content-card li{color:var(--muted);line-height:1.75}
.seo-content-card a{color:#8fb8ff}
.seo-related{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.seo-related a{padding:16px;border:1px solid var(--border);border-radius:14px;text-decoration:none;background:rgba(255,255,255,.02)}
@media(max-width:980px){.seo-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.seo-related{grid-template-columns:1fr}}
@media(max-width:640px){.seo-link-grid{grid-template-columns:1fr}.seo-content-card{padding:22px}.seo-article-hero{padding-top:48px}}
