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

:root {
    /* Üst bar (fixed nav) — hero padding ile aynı */
    --landing-nav-height: 66px;
    /* Sabit .landing-footer bandı; içerik üst üste binmesin */
    --landing-footer-fixed-reserve: calc(60px + env(safe-area-inset-bottom, 0px));
    --blue:       #013ca6;
    --blue-mid:   #0a4fc4;
    --blue-dark:  #012d80;
    --blue-deeper:#011f5e;
    --red:        #e31d1a;
    --red-light:  #f52522;
    --glass-bg:   rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.13);
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
}

html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    /* Mobil / PWA: aşağı-yukarı lastik hareketi, adres çubuğu oyunları azaltır */
    overscroll-behavior-y: none;
}

body {
    min-height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--blue-deeper);
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    font-family: 'Inter', sans-serif;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 66px;
    background: #013ca5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    display: block;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--red), #c01816);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(227,29,26,0.45);
}

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

.nav-logo-text span:first-child {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-logo-text span:last-child {
    font-size: 15.5px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.2px;
}

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

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    letter-spacing: -0.1px;
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.32);
    color: white;
}

.btn-red {
    background: var(--red);
    color: white;
    box-shadow: 0 2px 14px rgba(227,29,26,0.38);
}
.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(227,29,26,0.5);
}

.btn-blue {
    background: rgba(10,79,196,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    backdrop-filter: blur(6px);
}
.btn-blue:hover {
    background: var(--blue-mid);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 13px 30px;
    font-size: 14.5px;
    border-radius: 11px;
}

.btn-red-lg {
    background: linear-gradient(135deg, var(--red), #c7100d);
    color: white;
    padding: 13px 30px;
    font-size: 14.5px;
    border-radius: 11px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(227,29,26,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-red-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227,29,26,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-outline-glass {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: white;
    padding: 13px 30px;
    font-size: 14.5px;
    border-radius: 11px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}
.btn-outline-glass:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.38);
    transform: translateY(-2px);
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
    flex: 1 1 auto;
    min-height: calc(100vh - var(--landing-nav-height));
    min-height: calc(100dvh - var(--landing-nav-height));
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
}

/* Tam ekran sabit mavi yüzey (kaydırınca arka plan sabit kalır) */
.hero-surface-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-surface-fixed .hero-line {
    z-index: 1;
}

/* Degrade arka plan */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 110% 40%, rgba(227,29,26,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at -10% 70%, rgba(96,165,250,0.14) 0%, transparent 50%),
        linear-gradient(145deg, var(--blue-deeper) 0%, var(--blue-dark) 40%, var(--blue) 100%);
}

/* Grid dokusu */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Parlayan daire efektleri */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(227,29,26,0.18) 0%, transparent 70%);
    top: -120px; right: -80px;
}
.hero-glow-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
    bottom: -80px; left: -60px;
}

.hero-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(227,29,26,0.6) 40%, rgba(227,29,26,0.6) 60%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-height: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 66px 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    align-content: center;
}

/* Tek blok (şifre sıfırlama vb.) — grid tek sütun, kutu yatay ortada */
.hero-inner.hero-inner--single {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
}

/* app_modul_placeholder: kart, kullanılabilir yükseklikte dikey ortada (padding, genel .hero-inner kurallarında) */
.hero.hero--app-modul {
    justify-content: center;
}
.hero.hero--app-modul .hero-inner.hero-inner--single {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    html:has(body > section.hero > footer.landing-footer) .hero.hero--app-modul .hero-inner.hero-inner--single {
        display: flex;
    }
}

/* ── Sol içerik ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(227,29,26,0.12);
    border: 1px solid rgba(227,29,26,0.28);
    color: #fca5a5;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 900;
    color: white;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-title--compact {
    font-size: clamp(20px, 2.1vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fca5a5, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 15.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.72;
    margin-bottom: 30px;
    max-width: 440px;
}

.hero-title-line2 {
    font-size: 1em;
    font-weight: 900;
}

.hero-benefit-list {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hero-benefit-list li {
    position: relative;
    padding-left: 1.4em;
    text-align: left;
}
.hero-benefit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.05em;
    color: #4ade80;
    font-size: 0.95em;
    font-weight: 700;
}

.hero-desc-mid {
    margin: 0 0 0.9rem 0;
    color: rgba(255, 255, 255, 0.72);
}

.hero-desc-cta {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats--single {
    justify-content: flex-start;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.5px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    margin-top: 5px;
    font-weight: 500;
}

/* ── Sağ kart ── */
.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 22px;
    padding: 28px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 24px 60px rgba(0,0,0,0.3),
        0 4px 16px rgba(0,0,0,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.card-header-left {}

.hero-card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.2px;
}

.hero-card-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.42);
    margin-top: 3px;
}

.card-header-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    color: #86efac;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.card-header-badge .dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}

/* Kilit uyarı bandı */
.lock-notice {
    background: linear-gradient(135deg, rgba(227,29,26,0.1), rgba(227,29,26,0.06));
    border: 1px solid rgba(227,29,26,0.22);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.lock-notice-icon-wrap {
    width: 32px; height: 32px;
    background: rgba(227,29,26,0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lock-notice-icon-wrap i { color: #fca5a5; font-size: 13px; }

.lock-notice-text { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.55; }

.lock-notice-text strong {
    color: rgba(255,255,255,0.9);
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}

/* İlan kartları */
.preview-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.preview-item {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 13px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

/* Sol aksan çizgisi */
.preview-item::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 2.5px;
    background: linear-gradient(180deg, var(--red), rgba(227,29,26,0.2));
    border-radius: 0 3px 3px 0;
}

/* Hafif bulanıklık katmanı — mevcut içerik okunabilir, ama "gizli" hissi var */
.preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(1,30,90,0.0) 0%,
        rgba(1,30,90,0.22) 55%,
        rgba(1,30,90,0.48) 100%
    );
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    border-radius: 13px;
    pointer-events: none;
}

.preview-item-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, rgba(10,79,196,0.9), rgba(30,99,232,0.9));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(1,60,166,0.5);
}

.preview-item-info { flex: 1; min-width: 0; }

.preview-item-route {
    font-size: 13.5px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.1px;
}

.preview-item-route .arrow {
    color: rgba(255,255,255,0.35);
    font-size: 11px;
}

.preview-item-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
}

.preview-item-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    background: rgba(34,197,94,0.14);
    color: #86efac;
    border: 1px solid rgba(34,197,94,0.28);
    flex-shrink: 0;
}

.preview-item-lock {
    position: absolute;
    top: 9px; right: 11px;
    font-size: 9.5px;
    color: rgba(255,255,255,0.2);
    z-index: 2;
}

/* ════════════════════════════════
   MODALS
════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 44px 48px;
    position: relative;
    animation: modalIn 0.28s cubic-bezier(.34,1.36,.64,1);
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.05);
}

/* Kayıt modalı için geniş versiyon */
.modal.modal-wide {
    max-width: 720px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.form-grid-2 .form-group-full {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .modal.modal-wide { max-width: 100%; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-grid-2 .form-group-full { grid-column: auto; }
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.88) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 30px; height: 30px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 13px;
    transition: background 0.15s, transform 0.15s;
}
.modal-close:hover { background: var(--gray-200); transform: rotate(90deg); }

.modal-header { margin-bottom: 30px; }

.modal-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.modal-icon.blue { background: rgba(1,60,166,0.08); color: var(--blue); }
.modal-icon.red  { background: rgba(227,29,26,0.08); color: var(--red); }

.modal-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.modal-sub { font-size: 14.5px; color: var(--gray-600); }

.form-group { margin-bottom: 18px; }

.form-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.form-forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
}

.form-forgot-link:hover { text-decoration: underline; }

.form-check-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-600);
    user-select: none;
}

.form-check-remember input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--blue);
    cursor: pointer;
}

.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 7px;
}

.form-input-wrap { position: relative; }

.form-input-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 15px;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1.5px solid var(--gray-200);
    border-radius: 11px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-800);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(1,60,166,0.07);
}

select.form-input {
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: menulist;
}

textarea.form-input {
    min-height: 88px;
    resize: vertical;
    line-height: 1.45;
}

.form-note { font-size: 11.5px; color: var(--gray-400); margin-top: 5px; }

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
    letter-spacing: -0.1px;
}

.form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }
.form-submit.red  { background: var(--red); }
.form-submit.red:hover { background: var(--red-light); }

.form-divider {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin: 22px 0;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 43%;
    height: 1px;
    background: var(--gray-200);
}

.form-divider::before { left: 0; }
.form-divider::after  { right: 0; }

.form-switch { text-align: center; font-size: 14px; color: var(--gray-600); }

.form-switch a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.form-switch a:hover { text-decoration: underline; }

.msg-box {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.msg-box i { margin-top: 1px; flex-shrink: 0; }

.msg-error {
    background: rgba(227,29,26,0.07);
    border: 1px solid rgba(227,29,26,0.2);
    color: #b91c1c;
}

.msg-success {
    background: rgba(34,197,94,0.07);
    border: 1px solid rgba(34,197,94,0.22);
    color: #15803d;
}

.msg-warning {
    background: rgba(217,119,6,0.08);
    border: 1px solid rgba(217,119,6,0.25);
    color: #b45309;
}

/* Kayıt modalı — SMS zorunluluğu vurgusu */
.modal .kayit-sms-uyari {
    color: #b91c1c;
    font-weight: 600;
}
html[data-theme='dark'] .modal .kayit-sms-uyari {
    color: #fca5a5;
}

/* ════════════════════════════════
   FOOTER — mavi cam + üstte kırmızı vurgu
   Viewport altına sabit; içerik padding-bottom ile rezerve edilir.
════════════════════════════════ */
.landing-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 14px 24px max(14px, env(safe-area-inset-bottom, 0px));
    background: rgba(1, 20, 60, 0.88);
    backdrop-filter: blur(14px) saturate(165%);
    -webkit-backdrop-filter: blur(14px) saturate(165%);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 -10px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(227, 29, 26, 0.15) 18%,
        rgba(227, 29, 26, 0.75) 50%,
        rgba(227, 29, 26, 0.15) 82%,
        transparent 100%
    );
    pointer-events: none;
}

.landing-footer-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.landing-footer-line {
    margin: 0;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.landing-footer-sep {
    margin: 0 0.4em;
    opacity: 0.55;
}

.landing-footer-credit {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
}

.landing-footer-credit i {
    font-size: 10px;
    color: rgba(252, 165, 165, 0.95);
    margin-right: 5px;
    vertical-align: -0.05em;
    filter: drop-shadow(0 0 8px rgba(227, 29, 26, 0.35));
}

/* Ana sayfa: footer .hero içindeyken alt rezerv */
body:has(section.hero .landing-footer) section.hero {
    padding-bottom: var(--landing-footer-fixed-reserve);
}

/* Ana landing (index): mobilde tam viewport, dikey lastik kaydırma yok */
html:has(body > section.hero > footer.landing-footer) {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

/* main + footer (legal-doc-page.css zaten body padding veriyor; çift boşluk olmasın) */
body:not(.legal-doc-page):has(main + footer.landing-footer) {
    padding-bottom: var(--landing-footer-fixed-reserve);
}

@media (min-width: 601px) {
    :root {
        --landing-footer-fixed-reserve: calc(56px + env(safe-area-inset-bottom, 0px));
    }

    .landing-footer-line {
        line-height: 1.45;
    }
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
    .hero {
        flex: 1 1 auto;
        flex-direction: column;
        align-items: stretch;
        /* İçerik dikeyde orta; footer fixed olduğu için section’ta sadece hero-inner akışta */
        justify-content: center;
        min-height: calc(100vh - var(--landing-nav-height));
        min-height: calc(100dvh - var(--landing-nav-height));
        min-height: calc(100svh - var(--landing-nav-height));
    }
    .hero-inner {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        padding: 86px 24px 48px;
        text-align: center;
    }

    /* index: tek ekran, gövde kayması yok; metin nav–footer bandı arasında ortalanır */
    html:has(body > section.hero > footer.landing-footer) body {
        height: 100dvh;
        max-height: 100dvh;
        min-height: 100dvh;
        padding-bottom: 0;
        overflow: hidden;
        overscroll-behavior: none;
    }
    html:has(body > section.hero > footer.landing-footer) section.hero {
        flex: 1 1 auto;
        min-height: 0;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        overscroll-behavior: none;
    }
    html:has(body > section.hero > footer.landing-footer) .hero-inner {
        flex: 1 1 auto;
        min-height: 0;
        align-content: center;
        justify-content: center;
        padding-top: calc(var(--landing-nav-height) + 14px);
        padding-bottom: 28px;
        overflow-y: hidden;
        overscroll-behavior: none;
    }
    .hero-inner.hero-inner--single {
        text-align: left;
        justify-items: center;
    }
    .hero-badge { margin: 0 auto 20px; }
    .hero-desc  { margin: 0 auto 30px; text-align: left; }
    .hero-btns  { justify-content: center; }
    .hero-stats { justify-content: center; }
}

/* Geniş ekranda yüklenen PWA: içerik orta, aynı hizalama kuralı */
@media (display-mode: standalone) and (min-width: 901px) {
    .hero {
        justify-content: center;
        min-height: calc(100dvh - var(--landing-nav-height));
        min-height: calc(100svh - var(--landing-nav-height));
    }
    .hero-inner {
        flex: 0 0 auto;
    }
}

@media (max-width: 600px) {
    :root {
        /* Dar ekranda footer metni satır kırabilir */
        --landing-footer-fixed-reserve: calc(76px + env(safe-area-inset-bottom, 0px));
    }
    .nav-logo-text span:last-child { font-size: 13.5px; }
    .hero-card { display: none; }
    .hero-inner { padding: 80px 16px 40px; }
    html:has(body > section.hero > footer.landing-footer) .hero-inner {
        padding-top: calc(var(--landing-nav-height) + 12px);
        padding-bottom: 22px;
    }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn-red-lg, .btn-outline-glass {
        justify-content: center;
        width: 100%;
    }
    .modal {
        padding: 28px 20px;
        border-radius: 18px;
        max-height: 95vh;
    }
    .modal-title { font-size: 22px; }
    .modal-overlay { padding: 10px; }
    .nav-actions { gap: 6px; }
    .btn-ghost { padding: 8px 12px; font-size: 12.5px; }
    .btn-red   { padding: 8px 12px; font-size: 12.5px; }
    .landing-footer {
        padding-left: max(14px, env(safe-area-inset-left, 0px));
        padding-right: max(14px, env(safe-area-inset-right, 0px));
    }
    .landing-footer-line {
        font-size: 10.5px;
        white-space: normal;
    }
    .landing-footer-sep {
        display: inline;
    }
    /* Kayıt formu iki sütun → tek sütun */
    .form-grid-2 { grid-template-columns: 1fr !important; }
}

@media (max-width: 400px) {
    :root {
        --landing-nav-height: 58px;
    }
    .hero-title { font-size: 24px; letter-spacing: -0.5px; }
    .hero-title--compact { font-size: 19px; letter-spacing: -0.35px; }
    .hero-stat-num { font-size: 22px; }
    nav { height: 58px; }
    .nav-inner { padding: 0 12px; gap: 6px; }
    .btn-ghost, .btn-red { padding: 7px 10px; font-size: 12px; }
    .modal { padding: 24px 16px; }
}

/* ════════════════════════════════
   TERMS / KVKK CHECKBOXES
════════════════════════════════ */
.form-terms-group {
    margin-bottom: 12px;
}

.form-check-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-600);
    user-select: none;
    line-height: 1.55;
}

.form-check-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--blue);
    cursor: pointer;
    border-radius: 4px;
}

.form-check-optional {
    color: var(--gray-400);
    font-size: 12.5px;
}

.form-terms-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(1,60,166,0.35);
    transition: border-color 0.15s, color 0.15s;
}

.form-terms-link:hover {
    color: var(--blue-mid);
    border-bottom-color: var(--blue-mid);
}

/* ════════════════════════════════
   CONTENT POPUP MODAL (Terms / KVKK)
════════════════════════════════ */
.modal-content-overlay {
    z-index: 3000;
}

.modal-content-panel {
    max-width: 660px;
    padding: 40px 44px;
}

.content-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid var(--gray-200);
}

.content-modal-header .modal-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.content-modal-header-text .modal-title {
    font-size: 20px;
    margin-bottom: 2px;
}

.content-modal-header-text .modal-sub {
    font-size: 13px;
}

.content-modal-body {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--gray-600);
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 6px;
}

.content-modal-body h1,
.content-modal-body h2,
.content-modal-body h3 {
    color: var(--gray-800);
    font-weight: 700;
    margin: 20px 0 8px;
    line-height: 1.3;
}

.content-modal-body h1 { font-size: 18px; }
.content-modal-body h2 { font-size: 15.5px; }
.content-modal-body h3 { font-size: 14px; }

.content-modal-body p  { margin-bottom: 12px; }
.content-modal-body p:first-child { margin-top: 0; }
.content-modal-body p:last-child  { margin-bottom: 0; }
.content-modal-body ul,
.content-modal-body ol { padding-left: 22px; margin-bottom: 12px; }
.content-modal-body li { margin-bottom: 5px; }
.content-modal-body br { line-height: 1.9; }

.content-modal-body {
    scrollbar-color: var(--tcdd-sb-thumb-fx, #b8c4d0) var(--tcdd-sb-track, var(--gray-100));
}
.content-modal-body::-webkit-scrollbar { width: 6px; }
.content-modal-body::-webkit-scrollbar-track {
    background: var(--tcdd-sb-track, var(--gray-100));
    border-radius: 8px;
}
.content-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d8dee8 0%, #c4cdd8 50%, #a8b4c4 100%);
    border-radius: 8px;
    border: 2px solid var(--tcdd-sb-track, var(--gray-100));
}
.content-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e2e8f0 0%, #94a3b8 55%, #7c8ca0 100%);
}

.content-modal-empty {
    text-align: center;
    padding: 32px 0;
    color: var(--gray-400);
    font-size: 14px;
}

.content-modal-empty i {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.45;
}

/* Dark mode — terms checkboxes */
html[data-theme='dark'] .form-check-terms        { color: #7da0c0; }
html[data-theme='dark'] .form-check-optional     { color: #4d6a85; }
html[data-theme='dark'] .form-terms-link         { color: #60a5fa; border-bottom-color: rgba(96,165,250,0.35); }
html[data-theme='dark'] .form-terms-link:hover   { color: #93c5fd; }

/* Dark mode — content modal */
html[data-theme='dark'] .content-modal-header    { border-bottom-color: #2e4463; }
html[data-theme='dark'] .content-modal-body      { color: #7da0c0; }
html[data-theme='dark'] .content-modal-body h1,
html[data-theme='dark'] .content-modal-body h2,
html[data-theme='dark'] .content-modal-body h3   { color: #c8ddf0; }
html[data-theme='dark'] .content-modal-body {
    scrollbar-color: var(--tcdd-sb-thumb-fx, #64748b) var(--tcdd-sb-track, #1e293b);
}
html[data-theme='dark'] .content-modal-body::-webkit-scrollbar-track {
    background: var(--tcdd-sb-track, #1e293b);
}
html[data-theme='dark'] .content-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5c6b7e 0%, #475569 50%, #3d4d5c 100%);
    border-color: var(--tcdd-sb-track, #1e293b);
}
html[data-theme='dark'] .content-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7a8a9e 0%, #64748b 50%, #556070 100%);
}
html[data-theme='dark'] .content-modal-empty     { color: #4d6a85; }

/* ── Theme Switch (Index – glass nav) ── */
.theme-switch {
    position: relative;
    display: flex;
    align-items: center;
    height: 34px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 9px;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    padding: 3px;
    flex-shrink: 0;
}
.theme-switch-track {
    position: absolute;
    top: 3px; bottom: 3px; left: 3px;
    width: calc(50% - 3px);
    background: rgba(255,255,255,0.22);
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.18);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.theme-switch-opt {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    height: 100%;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.22s;
    min-width: 64px;
}
.light-opt { color: rgba(255,255,255,0.95); }
.dark-opt  { color: rgba(255,255,255,0.45); }

/* Üye girişi sonrası landing üst çubuğu: tema yazısı yok, yalnızca ikon */
.member-nav .theme-switch-opt {
    gap: 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 0;
}
.member-nav .theme-switch-opt i {
    font-size: 13px;
}

/* ══════════════════════════════
   DARK MODE — index.php
══════════════════════════════ */

/* Modal kutusu */
html[data-theme='dark'] .modal {
    background: #1c2e48;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}
html[data-theme='dark'] .modal-title        { color: #eef3f9; }
html[data-theme='dark'] .modal-sub          { color: #7da0c0; }
html[data-theme='dark'] .modal-close        { background: #2a3f5c; color: #7da0c0; }
html[data-theme='dark'] .modal-close:hover  { background: #374f70; color: #c8ddf0; }
html[data-theme='dark'] .modal-icon.blue    { background: rgba(1,60,166,0.25); }
html[data-theme='dark'] .modal-icon.red     { background: rgba(227,29,26,0.22); }

/* Form elemanları */
html[data-theme='dark'] .form-label         { color: #b4ccdf; }
html[data-theme='dark'] .form-input         {
    background: #243550;
    border-color: #3a506c;
    color: #eef3f9;
}
html[data-theme='dark'] .form-input::placeholder { color: #4d6a85; }
html[data-theme='dark'] .form-input:focus   {
    background: #2c4060;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.12);
}
html[data-theme='dark'] .form-input-wrap i  { color: #5b7ea0; }
html[data-theme='dark'] .form-note          { color: #5b7ea0; }
html[data-theme='dark'] .form-divider       { color: #426080; }
html[data-theme='dark'] .form-divider::before,
html[data-theme='dark'] .form-divider::after { background: #2e4463; }
html[data-theme='dark'] .form-switch        { color: #7da0c0; }
html[data-theme='dark'] .form-switch a      { color: #60a5fa; }
html[data-theme='dark'] .form-forgot-link    { color: #60a5fa; }

/* Mesaj kutuları */
html[data-theme='dark'] .msg-error   {
    background: rgba(227,29,26,0.12);
    border-color: rgba(227,29,26,0.3);
    color: #fca5a5;
}
html[data-theme='dark'] .msg-success {
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.28);
    color: #86efac;
}
html[data-theme='dark'] .msg-warning {
    background: rgba(217,119,6,0.14);
    border-color: rgba(251,191,36,0.28);
    color: #fcd34d;
}

html[data-theme='dark'] .hero-card       {
    background: rgba(15,23,42,0.88);
    border-color: rgba(255,255,255,0.08);
}
html[data-theme='dark'] nav {
    background: #013ca5;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
html[data-theme='dark'] .landing-footer {
    background: rgba(5, 15, 40, 0.92);
    border-top-color: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 -12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
html[data-theme='dark'] .landing-footer::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(248, 113, 113, 0.2) 20%,
        rgba(252, 165, 165, 0.85) 50%,
        rgba(248, 113, 113, 0.2) 80%,
        transparent 100%
    );
}
html[data-theme='dark'] .landing-footer-line {
    color: rgba(255, 255, 255, 0.48);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
html[data-theme='dark'] .landing-footer-credit {
    color: rgba(255, 255, 255, 0.62);
}
html[data-theme='dark'] .landing-footer-credit i {
    color: rgba(252, 165, 165, 0.98);
}
html[data-theme='dark'] .theme-switch       { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
html[data-theme='dark'] .theme-switch-track { transform: translateX(100%); background: rgba(255,255,255,0.15); }
html[data-theme='dark'] .light-opt          { color: rgba(255,255,255,0.40); }
html[data-theme='dark'] .dark-opt           { color: rgba(255,255,255,0.92); }
html[data-theme='dark'] .hero-bg {
    background:
        radial-gradient(ellipse 70% 80% at 110% 40%, rgba(227,29,26,0.28) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at -10% 70%, rgba(96,165,250,0.10) 0%, transparent 50%),
        linear-gradient(145deg, #060d1f 0%, #091830 40%, #0a2255 100%);
}

/* ── Üye platform seçim (platform.php) ── */
.hero-inner--platform {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
    align-items: start;
    gap: 40px 48px;
    padding-bottom: calc(28px + var(--landing-footer-fixed-reserve, 60px));
}

.hero-content--platform {
    padding-top: 8px;
}

.hero-desc--platform {
    max-width: 520px;
}

.platform-nav-hide-sm {
    display: inline;
}

.platform-apps-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px 22px 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.platform-apps-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
    padding-left: 2px;
}

.platform-apps-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.platform-apps-sub {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.52);
}

.platform-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.platform-app-tile {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 42px 16px 16px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    overflow: hidden;
}

.platform-app-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
}

.platform-app-tile--soon {
    opacity: 0.92;
}

.platform-app-soon-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(251, 191, 36, 0.18);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: #fcd34d;
}

/* Ana sayfa kahraman kartı — sağ üstte, yeşil ibare */
.platform-app-ready-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #86efac;
}

/* Ana sayfada: dış kutu zaten .hero-card; çift camlı kutu hissi */
.platform-apps-wrap--hero {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.platform-apps-wrap--hero .platform-apps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}
div.platform-app-tile--static {
    pointer-events: none;
}
div.platform-app-tile--static:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}
div.platform-app-tile--static .platform-app-arrow { display: none; }
html[data-theme='dark'] .platform-apps-wrap--hero {
    background: transparent;
    border: none;
}

.platform-app-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    background: linear-gradient(145deg, rgba(227, 29, 26, 0.85), rgba(1, 60, 166, 0.65));
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.platform-app-body {
    min-width: 0;
    flex: 1;
}

.platform-app-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}

.platform-app-desc {
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.platform-app-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.18s ease, transform 0.18s ease;
}

.platform-app-tile:hover .platform-app-arrow {
    color: rgba(255, 255, 255, 0.78);
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .hero-inner--platform {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-desc--platform { margin-left: auto; margin-right: auto; }
    .platform-apps-head {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .platform-apps-grid {
        grid-template-columns: 1fr;
    }
    .platform-nav-hide-sm {
        display: none;
    }
    .nav-actions .btn-ghost {
        padding: 8px 10px;
        font-size: 12.5px;
    }
}

html[data-theme='dark'] .platform-apps-wrap {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme='dark'] .platform-app-tile {
    background: rgba(30, 41, 59, 0.45);
    border-color: rgba(148, 163, 184, 0.12);
}

html[data-theme='dark'] .platform-app-tile:hover {
    background: rgba(51, 65, 85, 0.55);
    border-color: rgba(148, 163, 184, 0.22);
}

html[data-theme='dark'] .platform-app-desc {
    color: rgba(148, 163, 184, 0.95);
}

.platform-placeholder-card {
    width: 100%;
    max-width: min(640px, calc(100vw - 28px));
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.platform-ph-logo-band {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(100px, 18vh, 156px);
    padding: clamp(18px, 3.2vw, 34px) 16px;
    box-sizing: border-box;
    background: linear-gradient(165deg, #020617 0%, #0c2742 45%, #153a5c 100%);
    border-bottom: 1px solid rgba(147, 197, 253, 0.14);
}
.platform-ph-logo-img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(100%, 420px);
    max-height: clamp(46px, 11vh, 90px);
    object-fit: contain;
}
html[data-theme='dark'] .platform-ph-logo-band {
    background: linear-gradient(165deg, #020617 0%, #0f172a 40%, #1e3a5f 100%);
    border-bottom-color: rgba(96, 165, 250, 0.16);
}

.platform-ph-content {
    padding: 28px 26px 32px;
    text-align: center;
}

.platform-ph-hi {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 0 14px;
    line-height: 1.3;
}

.platform-ph-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(252, 165, 165, 0.95);
    margin: 0 0 12px;
}

.platform-ph-welcome {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 26px;
    max-width: 34rem;
}

.app-modul-ph-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.platform-ph-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.platform-placeholder-card .btn-red-lg {
    width: 100%;
    justify-content: center;
}

@media (max-width: 600px) {
    .platform-ph-content {
        padding: 24px 18px 28px;
    }
}

html[data-theme='dark'] .platform-placeholder-card {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(148, 163, 184, 0.15);
}

html[data-theme='dark'] .platform-ph-desc {
    color: rgba(186, 204, 224, 0.88);
}

html[data-theme='dark'] .platform-ph-kicker {
    color: rgba(252, 211, 211, 0.92);
}

html[data-theme='dark'] .platform-ph-hi {
    color: rgba(248, 250, 252, 0.98);
}

html[data-theme='dark'] .platform-ph-welcome {
    color: rgba(226, 232, 240, 0.92);
}
