/* ═══════════════════════════════════════════════════════════
   Medikcore — Premium pazarlama landing (reklam arayüzü)
   ═══════════════════════════════════════════════════════════ */

.layout--landing {
    --lp-font: 'Plus Jakarta Sans', var(--font-family);
    --lp-display: 'Plus Jakarta Sans', var(--font-display);
    --lp-red: #E11D48;
    --lp-red-dark: #BE123C;
    --lp-red-soft: #FFF1F2;
    --lp-red-glow: rgba(225, 29, 72, 0.22);
    --lp-ink: #0F172A;
    --lp-muted: #64748B;
    --lp-line: #E2E8F0;
    --lp-surface: #FFFFFF;
    --lp-bg: #F8FAFC;
    font-family: var(--lp-font);
}

.layout--landing .topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.main-content--flush { padding: 0; }
.main-content--flush > .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.landing-container {
    width: min(100% - 2.5rem, 1200px);
    margin-inline: auto;
}

/* ── Shared ───────────────────────────────────────────── */
.lp-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--lp-red);
    margin-bottom: .75rem;
}

.lp-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.lp-section-head h2 {
    margin: 0 0 .75rem;
    font-family: var(--lp-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--lp-ink);
}

.lp-section-head p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--lp-muted);
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(225, 29, 72, 0.15);
    box-shadow: 0 2px 12px rgba(225, 29, 72, 0.08);
    font-size: .82rem;
    font-weight: 600;
    color: var(--lp-red-dark);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.lp-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-red);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2);
    animation: lp-pulse-dot 2s ease infinite;
}

@keyframes lp-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
}

.lp-btn-glow {
    box-shadow: 0 4px 20px var(--lp-red-glow), 0 1px 3px rgba(15, 23, 42, 0.08);
}

.lp-btn-glow:hover {
    box-shadow: 0 8px 32px rgba(225, 29, 72, 0.32), 0 2px 6px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

/* Reveal animations */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-reveal--delay { transition-delay: .12s; }
.lp-reveal--delay2 { transition-delay: .22s; }

/* ── HERO ─────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    min-height: min(92vh, 920px);
    display: flex;
    align-items: center;
}

.lp-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% -5%, rgba(225, 29, 72, 0.12), transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 10%, rgba(244, 63, 94, 0.08), transparent 50%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(15, 23, 42, 0.04), transparent 55%),
        linear-gradient(180deg, #fff 0%, #F8FAFC 55%, #fff 100%);
    pointer-events: none;
}

.lp-hero__mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.035) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.lp-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.lp-hero__glow--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: 5%;
    background: rgba(225, 29, 72, 0.14);
    animation: lp-float-glow 8s ease-in-out infinite;
}

.lp-hero__glow--2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -5%;
    background: rgba(244, 63, 94, 0.08);
    animation: lp-float-glow 10s ease-in-out infinite reverse;
}

@keyframes lp-float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

.lp-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}

.lp-hero__copy h1 {
    margin: 0 0 1.25rem;
    font-family: var(--lp-display);
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--lp-ink);
}

.lp-hero__copy h1 span {
    background: linear-gradient(135deg, var(--lp-red) 0%, #F43F5E 50%, var(--lp-red-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-hero__lead {
    margin: 0;
    max-width: 50ch;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--lp-muted);
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2.25rem;
}

.lp-hero__checks {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.75rem;
}

.lp-hero__checks li {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-hero__checks svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* Hero visual stack */
.lp-hero__visual {
    position: relative;
    width: 100%;
    min-height: 480px;
    perspective: 1200px;
}

.lp-stack {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* Panel mock */
.lp-mock--panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 8%;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(2deg);
    animation: lp-float-panel 6s ease-in-out infinite;
}

@keyframes lp-float-panel {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

/* ── Dashboard mock (istatistik + grafik + liste) ────────── */
.lp-mock--dash {
    position: absolute;
    top: 0;
    left: 0;
    right: 6%;
    padding: 1.25rem 1.35rem 1.4rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transform: rotateY(-3deg) rotateX(1deg);
    animation: lp-float-panel 6s ease-in-out infinite;
}

.lp-dash__head { margin-bottom: .9rem; }
.lp-dash__head h4 {
    margin: 0;
    font-family: var(--lp-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--lp-ink);
}

.lp-dash__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .6rem;
    margin-bottom: 1rem;
}

.lp-dash__stat {
    padding: .65rem .5rem;
    border-radius: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
}

.lp-dash__stat--accent {
    background: var(--lp-red-soft);
    border-color: rgba(225, 29, 72, .18);
}

.lp-dash__stat small {
    display: block;
    font-size: .6rem;
    font-weight: 700;
    color: var(--lp-muted);
    margin-bottom: .3rem;
}

.lp-dash__stat--accent small { color: var(--lp-red-dark); }

.lp-dash__stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--lp-ink);
    line-height: 1;
}

.lp-dash__stat--accent strong { color: var(--lp-red); }

.lp-dash__stat span {
    display: block;
    margin-top: .2rem;
    font-size: .58rem;
    font-weight: 600;
    color: #94A3B8;
}

.lp-dash__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}

.lp-dash__card {
    padding: .75rem .8rem .6rem;
    border-radius: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
}

.lp-dash__card h5 {
    margin: 0 0 .5rem;
    font-size: .68rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-dash__line { width: 100%; height: 62px; display: block; }

.lp-dash__xaxis {
    display: flex;
    justify-content: space-between;
    margin-top: .25rem;
    font-size: .52rem;
    font-weight: 600;
    color: #94A3B8;
}

.lp-dash__pie-row {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.lp-dash__pie {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-dash__pie-hole {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--lp-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-dash__pie-hole strong { font-size: .68rem; font-weight: 800; color: var(--lp-ink); line-height: 1; }
.lp-dash__pie-hole small { font-size: .45rem; color: var(--lp-muted); font-weight: 600; }

.lp-dash__legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    font-size: .58rem;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-dash__legend li { display: flex; align-items: center; gap: .3rem; }
.lp-dash__legend b { margin-left: auto; color: var(--lp-ink); font-weight: 800; }

.lp-dash__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.lp-dash__dot--active { background: #E11D48; }
.lp-dash__dot--maint { background: #1E293B; }
.lp-dash__dot--idle { background: #CBD5E1; }

.lp-dash__list {
    padding: .8rem .9rem;
    border-radius: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
}

.lp-dash__list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.lp-dash__list-head h5 { margin: 0; font-size: .7rem; font-weight: 700; color: var(--lp-ink); }

.lp-dash__list-link {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    font-size: .6rem;
    font-weight: 700;
    color: var(--lp-red);
}

.lp-dash__list-link svg { width: 10px; height: 10px; }

.lp-dash__list ul { list-style: none; margin: 0; padding: 0; }

.lp-dash__list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 0;
    border-top: 1px solid var(--lp-line);
    font-size: .68rem;
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-dash__list li:first-child { border-top: none; }

.lp-dash__list-icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.lp-dash__list-icon svg { width: 11px; height: 11px; }

.lp-dash__list-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.lp-dash__list time { font-size: .6rem; font-weight: 600; color: var(--lp-muted); flex-shrink: 0; }

/* ── Telefon uygulama mock (öne bindirilmiş) ─────────────── */
.lp-mock--phone {
    position: absolute;
    bottom: -6%;
    right: -4%;
    width: 44%;
    max-width: 190px;
    animation: lp-float-tablet 5s ease-in-out infinite;
    animation-delay: .5s;
}

.lp-phone__frame {
    position: relative;
    background: #0F172A;
    border-radius: 30px;
    padding: .55rem;
    box-shadow:
        0 24px 56px rgba(15, 23, 42, 0.32),
        0 0 0 1px rgba(255, 255, 255, .5) inset;
}

.lp-phone__notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 16px;
    background: #0F172A;
    border-radius: 999px;
    box-shadow: 0 0 0 3px #0F172A;
    z-index: 2;
}

.lp-phone__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .35rem .5rem .2rem;
    font-size: .5rem;
    font-weight: 700;
    color: #fff;
}

.lp-phone__sysicons { display: inline-flex; gap: .2rem; }
.lp-phone__sysicons svg { width: 9px; height: 9px; }

.lp-phone__brand {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .5rem .6rem;
    color: #fff;
}

.lp-phone__logo {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--lp-red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.lp-phone__logo svg { width: 10px; height: 10px; color: #fff; }
.lp-phone__brand strong { font-size: .62rem; font-weight: 800; }

.lp-phone__apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
    background: #fff;
    border-radius: 16px;
    padding: .5rem;
}

.lp-phone__app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    padding: .5rem .3rem;
    border-radius: 12px;
    background: var(--lp-bg);
}

.lp-phone__app-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--lp-red);
    color: #fff;
    display: grid;
    place-items: center;
}

.lp-phone__app-icon svg { width: 15px; height: 15px; }

.lp-phone__app small {
    font-size: .5rem;
    font-weight: 700;
    color: var(--lp-ink);
    text-align: center;
}

.lp-mock__chrome {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .9rem 1.15rem;
    background: linear-gradient(180deg, #FAFBFC 0%, #F1F5F9 100%);
    border-bottom: 1px solid var(--lp-line);
}

.lp-mock__chrome span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.lp-mock__chrome span:nth-child(1) { background: #FCA5A5; }
.lp-mock__chrome span:nth-child(2) { background: #FCD34D; }
.lp-mock__chrome span:nth-child(3) { background: #86EFAC; }

.lp-mock__chrome em {
    margin-left: auto;
    font-style: normal;
    font-size: .75rem;
    font-weight: 700;
    color: var(--lp-muted);
    letter-spacing: .02em;
}

.lp-mock__body {
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 280px;
}

.lp-mock__sidebar {
    padding: .85rem .5rem;
    background: #F8FAFC;
    border-right: 1px solid var(--lp-line);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.lp-mock__nav-item {
    height: 32px;
    border-radius: 8px;
    background: #E2E8F0;
    opacity: .5;
    display: grid;
    place-items: center;
    color: var(--lp-ink);
}

.lp-mock__nav-item svg { width: 14px; height: 14px; }

.lp-mock__nav-item.is-active {
    background: var(--lp-red-soft);
    opacity: 1;
    border: 1px solid rgba(225, 29, 72, 0.15);
    color: var(--lp-red);
}

.lp-mock__main { padding: 1rem 1.15rem 1.25rem; }

.lp-mock__topbar {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
}

.lp-mock__search {
    display: flex;
    align-items: center;
    gap: .35rem;
    flex: 1;
    padding: .4rem .6rem;
    border-radius: 8px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    color: var(--lp-muted);
    font-size: .68rem;
    min-width: 0;
}

.lp-mock__search svg { width: 12px; height: 12px; flex-shrink: 0; }
.lp-mock__search span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.lp-mock__bell {
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    display: grid;
    place-items: center;
    color: var(--lp-muted);
    flex-shrink: 0;
}

.lp-mock__bell svg { width: 13px; height: 13px; }

.lp-mock__bell em {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-red);
    border: 1.5px solid #fff;
}

.lp-mock__avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-red), var(--lp-red-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .6rem;
    font-weight: 800;
    flex-shrink: 0;
}

.lp-mock__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-bottom: .85rem;
}

.lp-kpi {
    padding: .75rem .65rem;
    border-radius: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
}

.lp-kpi--accent {
    background: var(--lp-red-soft);
    border-color: rgba(225, 29, 72, 0.15);
}

.lp-kpi strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    line-height: 1;
}

.lp-kpi--accent strong { color: var(--lp-red); }

.lp-kpi small {
    display: block;
    margin-top: .25rem;
    font-size: .65rem;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-kpi__trend {
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    margin-top: .35rem;
    font-size: .6rem;
    font-weight: 800;
    color: #059669;
}

.lp-kpi__trend svg { width: 10px; height: 10px; }

.lp-mock__chart {
    height: 72px;
    margin-bottom: .75rem;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--lp-red-soft) 0%, #fff 100%);
    border: 1px solid rgba(225, 29, 72, 0.1);
    overflow: hidden;
}

.lp-mock__chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-mock__feed {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-mock__feed li {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem 0;
    font-size: .78rem;
    font-weight: 500;
    color: var(--lp-muted);
    border-bottom: 1px solid #F1F5F9;
}

.lp-mock__feed li time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .65rem;
    font-weight: 600;
    color: #94A3B8;
}

.lp-mock__feed li:last-child { border-bottom: none; }

.lp-feed__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.lp-feed__icon svg { width: 14px; height: 14px; }
.lp-feed__icon--warn { background: #FFFBEB; color: #D97706; }
.lp-feed__icon--info { background: #EFF6FF; color: #2563EB; }

/* Tablet mock floating */
.lp-mock--tablet {
    position: absolute;
    bottom: 4%;
    right: 0;
    width: 42%;
    max-width: 220px;
    animation: lp-float-tablet 5s ease-in-out infinite;
    animation-delay: .5s;
}

@keyframes lp-float-tablet {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.lp-tablet__frame {
    position: relative;
    background: var(--lp-surface);
    border: 2px solid var(--lp-ink);
    border-radius: 22px;
    padding: .65rem;
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.lp-tablet__notch {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 8px;
    background: var(--lp-ink);
    border-radius: 0 0 8px 8px;
}

.lp-tablet__sysicons {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: var(--lp-muted);
}

.lp-tablet__sysicons svg { width: 11px; height: 11px; }

.lp-tablet__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .58rem;
    font-weight: 700;
    color: var(--lp-muted);
    margin-bottom: .45rem;
    padding: 0 .15rem;
}

.lp-tablet__live {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #059669;
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lp-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    animation: lp-pulse-dot 1.5s ease infinite;
}

.lp-tablet__hero-band {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: #fff;
    margin-bottom: .5rem;
}

.lp-tablet__ring { width: 26px; height: 26px; flex-shrink: 0; }

.lp-tablet__hero-band strong {
    display: block;
    font-size: .72rem;
    font-weight: 800;
}

.lp-tablet__hero-band small {
    font-size: .58rem;
    opacity: .75;
}

.lp-tablet__menu {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.lp-tablet__item {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .55rem;
    border-radius: 10px;
    border: 1px solid var(--lp-line);
    font-size: .62rem;
    font-weight: 700;
    color: var(--lp-ink);
    background: #fff;
}

.lp-tablet__item svg { width: 14px; height: 14px; color: var(--lp-red); }

.lp-tablet__chev {
    margin-left: auto;
    width: 12px !important;
    height: 12px !important;
    color: #CBD5E1 !important;
    flex-shrink: 0;
}

.lp-tablet__item--primary {
    border-color: rgba(225, 29, 72, 0.25);
    background: var(--lp-red-soft);
}

.lp-tablet__item--primary svg {
    background: var(--lp-red);
    color: #fff;
    padding: 3px;
    border-radius: 6px;
    width: 18px;
    height: 18px;
}

/* Floating chips */
.lp-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--lp-line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    font-size: .72rem;
    font-weight: 700;
    color: var(--lp-ink);
    backdrop-filter: blur(12px);
    white-space: nowrap;
}

.lp-chip svg,
.lp-chip i { width: 16px; height: 16px; color: var(--lp-red); }
.lp-chip--1 { top: 8%; right: -2%; animation: lp-float-chip 4s ease-in-out infinite; }
.lp-chip--2 { bottom: 28%; left: -4%; animation: lp-float-chip 5s ease-in-out infinite reverse; }

.lp-chip--float {
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    animation: lp-float-chip 4.5s ease-in-out infinite;
}

.lp-chip--dark {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lp-chip--dark i { color: #FB7185; }

@keyframes lp-float-chip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Hero metrics bar */
.lp-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--lp-line);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.lp-metric {
    text-align: center;
    padding: .5rem;
}

.lp-metric:not(:last-child) {
    border-right: 1px solid var(--lp-line);
}

.lp-metric strong {
    display: block;
    font-family: var(--lp-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    line-height: 1;
}

.lp-metric span {
    display: block;
    margin-top: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lp-muted);
}

/* ── STRIP (roller) ───────────────────────────────────── */
.lp-strip {
    padding: 0 0 5rem;
    margin-top: -1rem;
}

.lp-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lp-strip__card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1.25rem 1.15rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.lp-strip__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-red), #F43F5E);
    opacity: 0;
    transition: opacity .25s;
}

.lp-strip__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(225, 29, 72, 0.15);
}

.lp-strip__card:hover::before { opacity: 1; }

.lp-strip__arrow {
    width: 16px;
    height: 16px;
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
    color: var(--lp-line);
    transition: color .25s, transform .25s;
}

.lp-strip__card:hover .lp-strip__arrow {
    color: var(--lp-red);
    transform: translate(2px, -2px);
}

.lp-strip__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.lp-strip__icon svg { width: 22px; height: 22px; }

.lp-strip__card strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    color: var(--lp-ink);
    margin-bottom: .15rem;
}

.lp-strip__card span {
    font-size: .8rem;
    color: var(--lp-muted);
    line-height: 1.45;
}

/* ── Kayıtlı firmalar ─────────────────────────────────── */
.lp-companies {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--lp-bg) 100%);
}

.lp-companies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.15rem;
}

.lp-company-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.lp-company-card:hover {
    transform: translateY(-3px);
    border-color: rgba(225, 29, 72, 0.2);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
    text-decoration: none;
}

.lp-company-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--lp-red-soft);
    border: 1px solid rgba(225, 29, 72, 0.12);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.lp-company-card__logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 6px;
}

.lp-company-card__initials {
    font-size: .95rem;
    font-weight: 800;
    color: var(--lp-red-dark);
    letter-spacing: -.02em;
}

.lp-company-card__body {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

.lp-company-card__body strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--lp-ink);
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-company-card__city {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .78rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-company-card__city svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.lp-company-card__path {
    font-size: .72rem;
    font-weight: 600;
    color: var(--lp-red);
    font-family: ui-monospace, 'Cascadia Code', monospace;
}

.lp-company-card__actions {
    display: none;
    flex-direction: column;
    gap: .35rem;
}

.lp-company-card__chip {
    padding: .2rem .5rem;
    border-radius: 999px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    font-size: .65rem;
    font-weight: 700;
    color: var(--lp-muted);
    text-align: center;
}

.lp-company-card__go {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .2s, color .2s, transform .2s;
}

.lp-company-card__go svg {
    width: 18px;
    height: 18px;
}

.lp-company-card:hover .lp-company-card__go {
    background: var(--lp-red);
    color: #fff;
    transform: translateX(2px);
}

.lp-companies__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    border: 1px dashed var(--lp-line);
    border-radius: 20px;
    background: var(--lp-surface);
}

.lp-companies__empty svg {
    width: 40px;
    height: 40px;
    color: var(--lp-muted);
    margin-bottom: .75rem;
}

.lp-companies__empty p {
    margin: 0 0 1.25rem;
    color: var(--lp-muted);
}

@media (min-width: 900px) {
    .lp-company-card__actions {
        display: flex;
    }
}

/* ── SHOWCASE ─────────────────────────────────────────── */
.lp-showcase {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--lp-bg) 0%, #fff 50%, var(--lp-bg) 100%);
}

.lp-showcase__grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.lp-showcase__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.lp-showcase__card--reverse {
    direction: rtl;
}

.lp-showcase__card--reverse > * {
    direction: ltr;
}

.lp-showcase__visual {
    position: relative;
    border-radius: 24px;
    padding: 2.5rem;
    min-height: 340px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.lp-showcase__visual--tablet {
    background:
        radial-gradient(circle at 30% 30%, rgba(225, 29, 72, 0.12), transparent 50%),
        linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
}

.lp-showcase__visual--panel {
    background:
        radial-gradient(circle at 70% 20%, rgba(225, 29, 72, 0.1), transparent 45%),
        linear-gradient(145deg, #F1F5F9 0%, #E2E8F0 100%);
}

.lp-showcase__copy h3 {
    margin: 0 0 .75rem;
    font-family: var(--lp-display);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--lp-ink);
}

.lp-showcase__copy p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--lp-muted);
}

.lp-showcase__copy ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.lp-showcase__copy li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-showcase__copy li svg {
    width: 18px;
    height: 18px;
    color: var(--lp-red);
    flex-shrink: 0;
}

/* Mini tablet in showcase */
.lp-mini-tablet {
    position: relative;
    width: min(100%, 260px);
    background: #fff;
    border: 3px solid #0F172A;
    border-radius: 28px;
    padding: 1rem 1rem 1.25rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.lp-mini-tablet__notch {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 10px;
    background: #0F172A;
    border-radius: 0 0 10px 10px;
}

.lp-mini-tablet__staff {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: -.5rem 0 1rem;
    padding: .45rem .6rem;
    border-radius: 10px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    font-size: .72rem;
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-mini-tablet__avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-red), var(--lp-red-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .58rem;
    font-weight: 800;
    flex-shrink: 0;
}

.lp-mini-tablet__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.lp-mini-tablet__header strong {
    font-size: .85rem;
    font-weight: 800;
    color: var(--lp-ink);
}

.lp-mini-tablet__header em {
    font-style: normal;
    font-size: .65rem;
    font-weight: 700;
    color: var(--lp-red);
    background: var(--lp-red-soft);
    padding: .2rem .5rem;
    border-radius: 999px;
}

.lp-mini-tablet__pin {
    display: flex;
    justify-content: center;
    gap: .65rem;
    margin-bottom: 1.5rem;
}

.lp-mini-tablet__pin span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #CBD5E1;
}

.lp-mini-tablet__pin span:nth-child(1),
.lp-mini-tablet__pin span:nth-child(2) {
    background: var(--lp-red);
    border-color: var(--lp-red);
}

.lp-mini-tablet__keys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}

.lp-mini-tablet__keys span {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid var(--lp-line);
    font-size: .95rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-mini-tablet__keys .is-go {
    background: var(--lp-red);
    border-color: var(--lp-red);
    color: #fff;
}

.lp-mini-tablet__keys .is-go svg { width: 18px; height: 18px; }

/* Mini panel in showcase */
.lp-mini-panel {
    width: min(100%, 320px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.15);
    border: 1px solid var(--lp-line);
}

.lp-mini-panel__top {
    display: flex;
    gap: .4rem;
    padding: .75rem 1rem;
    background: #F8FAFC;
    border-bottom: 1px solid var(--lp-line);
}

.lp-mini-panel__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
}

.lp-mini-panel__top span:nth-child(1) { background: #FCA5A5; }
.lp-mini-panel__top span:nth-child(2) { background: #FCD34D; }
.lp-mini-panel__top span:nth-child(3) { background: #86EFAC; }

.lp-mini-panel__top em {
    margin-left: auto;
    font-style: normal;
    font-size: .65rem;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-mini-panel__grid {
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
}

.lp-mini-panel__stat {
    padding: .75rem .5rem;
    border-radius: 10px;
    background: var(--lp-bg);
    text-align: center;
}

.lp-mini-panel__stat--red {
    background: var(--lp-red-soft);
}

.lp-mini-panel__stat em {
    display: block;
    font-style: normal;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lp-ink);
    line-height: 1;
}

.lp-mini-panel__stat--red em { color: var(--lp-red); }

.lp-mini-panel__stat small {
    display: block;
    margin-top: .2rem;
    font-size: .62rem;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-mini-panel__bar {
    grid-column: 1 / -1;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-red-soft), #F1F5F9);
}

.lp-mini-panel__bar--short { width: 65%; }

.lp-mini-panel__chart {
    grid-column: 1 / -1;
    height: 54px;
    border-radius: 10px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    overflow: hidden;
}

.lp-mini-panel__chart svg { width: 100%; height: 100%; display: block; }

.lp-mini-panel__actions {
    grid-column: 1 / -1;
    display: flex;
    gap: .5rem;
}

.lp-mini-panel__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: .5rem;
    border-radius: 8px;
    font-size: .68rem;
    font-weight: 700;
}

.lp-mini-panel__btn svg { width: 12px; height: 12px; }

.lp-mini-panel__btn--reject {
    background: #F1F5F9;
    color: var(--lp-muted);
}

.lp-mini-panel__btn--approve {
    background: var(--lp-red);
    color: #fff;
}

/* ── BENTO ────────────────────────────────────────────── */
.lp-bento {
    padding: 5.5rem 0;
}

.lp-bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.15rem;
}

.lp-bento__item {
    position: relative;
    padding: 1.75rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.lp-bento__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-red), #F43F5E);
    opacity: 0;
    transition: opacity .3s;
}

.lp-bento__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(225, 29, 72, 0.12);
}

.lp-bento__item:hover::before { opacity: 1; }

.lp-bento__item--wide { grid-column: span 2; }
.lp-bento__item--tall { grid-row: span 2; }

.lp-bento__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    display: grid;
    place-items: center;
    margin-bottom: 1.15rem;
}

.lp-bento__icon svg { width: 24px; height: 24px; }

.lp-bento__item h3 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-ink);
}

.lp-bento__item p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--lp-muted);
}

.lp-bento__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1.25rem;
}

.lp-bento__tags span {
    padding: .25rem .65rem;
    border-radius: 999px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    font-size: .72rem;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-bento__doc {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    position: relative;
}

.lp-bento__doc-line {
    height: 8px;
    border-radius: 4px;
    background: #E2E8F0;
    margin-bottom: .5rem;
}

.lp-bento__doc-line--short { width: 60%; }

.lp-bento__doc-badge {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    padding: .2rem .5rem;
    border-radius: 6px;
    background: var(--lp-red);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
}

.lp-bento__featured {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: var(--lp-red-soft);
    color: var(--lp-red-dark);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .02em;
}

/* ── FLOW (steps) ─────────────────────────────────────── */
.lp-flow {
    padding: 5.5rem 0;
    background: var(--lp-bg);
}

.lp-flow__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 820px;
    margin-inline: auto;
}

.lp-flow__steps li {
    position: relative;
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: transform .25s, box-shadow .25s;
}

.lp-flow__steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 3.5rem;
    bottom: -1.25rem;
    width: 2px;
    height: 1.25rem;
    background: linear-gradient(180deg, rgba(225, 29, 72, .35), rgba(225, 29, 72, .05));
}

.lp-flow__steps li:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.lp-flow__num {
    font-family: var(--lp-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--lp-red-soft);
    -webkit-text-stroke: 1px var(--lp-red);
    line-height: 1;
}

.lp-flow__content h3 {
    margin: 0 0 .35rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-ink);
}

.lp-flow__content p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--lp-muted);
}

.lp-flow__illus {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    display: grid;
    place-items: center;
}

.lp-flow__illus svg { width: 26px; height: 26px; }

/* ── CTA ────────────────────────────────────────────── */
.lp-cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lp-red) 0%, var(--lp-red-dark) 55%, #9F1239 100%);
    color: #fff;
}

.lp-cta__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.lp-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lp-cta__copy h2 {
    margin: 0 0 .65rem;
    font-family: var(--lp-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.lp-cta__copy p {
    margin: 0;
    max-width: 48ch;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: .92;
}

.lp-cta__trust {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
}

.lp-cta__trust li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 600;
    opacity: .9;
}

.lp-cta__trust svg,
.lp-cta__trust i {
    width: 16px;
    height: 16px;
    padding: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.lp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.btn--white {
    background: #fff;
    color: var(--lp-red);
    border: 2px solid #fff;
    font-weight: 700;
}

.btn--white:hover {
    background: #fff;
    color: var(--lp-red-dark);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn--ghost-white {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.btn--ghost-white:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ── FOOTER ─────────────────────────────────────────── */
.lp-footer {
    padding: 4rem 0 0;
    background: var(--lp-ink);
    color: #94A3B8;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.lp-footer__brand .brand__logo { width: 64px; height: 64px; }
.lp-footer__brand .brand__wordmark { font-size: 1.4rem; }
.lp-footer__brand .brand__medik { color: #fff; }

.lp-footer__brand p {
    margin: 1.15rem 0 0;
    font-size: .9rem;
    line-height: 1.6;
    max-width: 34ch;
    color: #64748B;
}

.lp-footer h4 {
    margin: 0 0 1rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    font-weight: 800;
}

.lp-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-footer li {
    margin-bottom: .5rem;
    font-size: .88rem;
}

.lp-footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: color .15s;
}

.lp-footer a:hover { color: #fff; }

.lp-footer__copy {
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer__copy p {
    margin: 0;
    font-size: .8rem;
    color: #475569;
    text-align: center;
}

/* ── Topbar marketing ─────────────────────────────────── */
.topbar--marketing {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.topbar--marketing .topnav {
    gap: .65rem;
}

.topbar--marketing .topnav__login {
    padding: .55rem 1.1rem;
    font-weight: 700;
    border-width: 1.5px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    transition: background .2s, border-color .2s, box-shadow .2s, transform .15s;
}

.topbar--marketing .topnav__login:hover {
    background: var(--lp-red-soft, var(--color-primary-light));
    border-color: var(--lp-red, var(--color-primary));
    color: var(--lp-red-dark, var(--color-primary-dark));
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.12);
    transform: translateY(-1px);
}

.topbar--marketing .topnav .btn--demo {
    padding: .55rem 1.15rem;
    font-size: .875rem;
    font-weight: 700;
    box-shadow: 0 2px 12px var(--lp-red-glow, rgba(225, 29, 72, 0.18));
    transition: box-shadow .2s, transform .15s;
}

.topbar--marketing .topnav .btn--demo:hover {
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.28);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .topbar--marketing .topnav.is-open .topnav__login,
    .topbar--marketing .topnav.is-open .btn--demo {
        width: 100%;
        justify-content: center;
    }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
    .lp-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-hero__visual {
        min-height: auto;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .lp-stack { min-height: 380px; }
    .lp-mock--panel { right: 0; }
    .lp-mock--dash { right: 0; }
    .lp-bento__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-bento__item--wide { grid-column: span 2; }
    .lp-bento__item--tall { grid-row: span 1; }
}

/* Hero mock — mobil/tablet: üst üste, tam genişlik */
@media (max-width: 768px) {
    .lp-hero__visual {
        max-width: none;
        perspective: none;
    }

    .lp-stack {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .lp-mock--panel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        animation: none;
        width: 100%;
    }

    .lp-mock--tablet {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        animation: none;
        transform: none;
    }

    .lp-mock__body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lp-mock__sidebar {
        display: none;
    }

    .lp-mock__kpis {
        gap: .5rem;
    }

    .lp-kpi strong {
        font-size: 1.15rem;
    }

    .lp-kpi small {
        font-size: .62rem;
    }

    .lp-tablet__status {
        font-size: .68rem;
    }

    .lp-tablet__live {
        font-size: .62rem;
    }

    .lp-tablet__hero-band strong {
        font-size: .88rem;
    }

    .lp-tablet__hero-band small {
        font-size: .75rem;
    }

    .lp-tablet__item {
        font-size: .78rem;
        padding: .55rem .7rem;
    }

    .lp-tablet__item svg {
        width: 16px;
        height: 16px;
    }

    .lp-tablet__item--primary svg {
        width: 20px;
        height: 20px;
    }

    .lp-mock--dash {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        animation: none;
        width: 100%;
    }

    .lp-mock--phone {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        animation: none;
    }

    .lp-dash__stats { grid-template-columns: repeat(2, 1fr); }
    .lp-dash__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .lp-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-showcase__card,
    .lp-showcase__card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .lp-showcase__visual { min-height: 280px; }
    .lp-metrics { grid-template-columns: repeat(2, 1fr); }
    .lp-metric:nth-child(2) { border-right: none; }
    .lp-metric:nth-child(1),
    .lp-metric:nth-child(3) { border-right: 1px solid var(--lp-line); }
}

@media (max-width: 640px) {
    .lp-hero { padding: 2.5rem 0 2rem; min-height: auto; }
    .lp-hero__actions { flex-direction: column; }
    .lp-hero__actions .btn { width: 100%; }
    .lp-hero__visual { min-height: auto; }
    .lp-mock--tablet { max-width: none; }
    .lp-mock--phone { max-width: none; }
    .lp-mock__feed li { font-size: .82rem; }
    .lp-chip { display: none; }
    .lp-metrics {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }
    .lp-metric { border-right: none !important; }
    .lp-strip__grid,
    .lp-companies__grid,
    .lp-bento__grid { grid-template-columns: 1fr; }
    .lp-company-card {
        grid-template-columns: auto 1fr auto;
    }
    .lp-bento__item--wide { grid-column: span 1; }
    .lp-flow__steps li {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lp-flow__steps li:not(:last-child)::after { left: 50%; transform: translateX(-50%); }
    .lp-flow__num { font-size: 1.5rem; }
    .lp-flow__illus { margin: 0 auto; }
    .lp-cta__inner { flex-direction: column; align-items: flex-start; }
    .lp-cta__actions { width: 100%; }
    .lp-cta__actions .btn { flex: 1; min-width: 0; }
    .lp-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1; transform: none; transition: none; }
    .lp-mock--panel,
    .lp-mock--tablet,
    .lp-mock--dash,
    .lp-mock--phone,
    .lp-chip,
    .lp-badge__dot,
    .lp-pulse { animation: none; }
    .lp-mock--panel { transform: none; }
    .lp-mock--tablet { transform: none; }
    .lp-mock--dash { transform: none; }
    .lp-faq__item summary i { transition: none; }
}

/* ── KAĞIT → DİJİTAL KARŞILAŞTIRMA ───────────────────── */
.lp-compare {
    padding: 5.5rem 0;
    background: var(--lp-bg);
}
.lp-compare__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}
.lp-compare__col {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 22px;
    padding: 1.9rem 1.75rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}
.lp-compare__col--new {
    border-color: rgba(225, 29, 72, .25);
    box-shadow: 0 16px 44px rgba(225, 29, 72, .10);
}
.lp-compare__head { margin-bottom: 1.35rem; }
.lp-compare__tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .32rem .72rem;
    border-radius: 999px;
    background: #EEF2F7;
    color: var(--lp-muted);
    margin-bottom: .7rem;
}
.lp-compare__tag--new { background: var(--lp-red-soft); color: var(--lp-red-dark); }
.lp-compare__head h3 {
    margin: 0;
    font-family: var(--lp-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--lp-ink);
}
.lp-compare__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.lp-compare__list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .95rem;
    line-height: 1.45;
}
.lp-compare__list i { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.lp-compare__col--old .lp-compare__list li { color: var(--lp-muted); }
.lp-compare__col--old .lp-compare__list i { color: #94A3B8; }
.lp-compare__col--new .lp-compare__list li { color: var(--lp-ink); font-weight: 500; }
.lp-compare__col--new .lp-compare__list i { color: var(--lp-red); }
.lp-compare__arrow {
    display: grid;
    place-items: center;
    align-self: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lp-red);
    color: #fff;
    box-shadow: 0 10px 28px var(--lp-red-glow);
    flex-shrink: 0;
}
.lp-compare__arrow i { width: 24px; height: 24px; }

/* ── GÜVENLİK & UYUM ─────────────────────────────────── */
.lp-trust {
    padding: 5.5rem 0;
    background: var(--lp-surface);
}
.lp-trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
    gap: 1.25rem;
}
.lp-trust__card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-trust__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
    border-color: rgba(225, 29, 72, .2);
}
.lp-trust__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--lp-red-soft);
    color: var(--lp-red);
    margin-bottom: 1rem;
}
.lp-trust__icon i { width: 26px; height: 26px; }
.lp-trust__card h3 {
    margin: 0 0 .5rem;
    font-family: var(--lp-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-ink);
}
.lp-trust__card p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.6;
    color: var(--lp-muted);
}

/* ── SSS (FAQ) ───────────────────────────────────────── */
.lp-faq {
    padding: 5.5rem 0;
    background: var(--lp-bg);
}
.lp-faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.lp-faq__item {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    padding: 0 1.4rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-faq__item[open] {
    border-color: rgba(225, 29, 72, .25);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}
.lp-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--lp-ink);
    cursor: pointer;
    list-style: none;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--lp-red);
    transition: transform .25s ease;
}
.lp-faq__item[open] summary i { transform: rotate(180deg); }
.lp-faq__answer { padding: 0 0 1.25rem; }
.lp-faq__answer p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.65;
    color: var(--lp-muted);
}

@media (max-width: 768px) {
    .lp-compare { padding: 3.5rem 0; }
    .lp-compare__grid { grid-template-columns: 1fr; gap: 1rem; }
    .lp-compare__arrow { transform: rotate(90deg); justify-self: center; }
    .lp-trust { padding: 3.5rem 0; }
    .lp-faq { padding: 3.5rem 0; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM POLISH — malzeme derinliği, mikro-etkileşimler, doku
   (Yalnızca mevcut --lp-* renk paleti kullanılır, yeni renk yok)
   ═══════════════════════════════════════════════════════════ */

/* Sayfa geneli ince film-grain dokusu — premium editoryal his */
.landing {
    position: relative;
    isolation: isolate;
}

.landing::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .022;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Eyebrow etiketleri — düz metinden premium hap-rozete */
.lp-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .95rem;
    border-radius: 999px;
    background: var(--lp-red-soft);
    border: 1px solid rgba(225, 29, 72, .16);
    box-shadow: 0 1px 2px rgba(225, 29, 72, .06);
}

.lp-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-red);
    flex-shrink: 0;
}

/* Kart malzemesi — ince üst parlaklık + katmanlı derinlik gölgesi */
.lp-compare__col,
.lp-trust__card,
.lp-company-card,
.lp-bento__item,
.lp-strip__card,
.lp-faq__item,
.lp-flow__steps li,
.lp-showcase__visual {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .8) inset,
        0 1px 2px rgba(15, 23, 42, .04),
        0 16px 36px -22px rgba(15, 23, 42, .16);
}

/* Hero metrik ikonları */
.lp-metric__icon {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto .4rem;
    color: var(--lp-red);
    opacity: .85;
}

/* Topbar — hafif yüzen cam his */
.layout--landing .topbar--marketing {
    box-shadow: 0 1px 0 rgba(225, 29, 72, .05), 0 16px 32px -24px rgba(15, 23, 42, .18);
}

/* Buton parlama süpürmesi (sheen) — sadece pazarlama sayfalarında */
.layout--landing .btn--primary,
.layout--landing .btn--demo,
.layout--landing .btn--white,
.layout--landing .lp-btn-glow {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.layout--landing .btn--primary::after,
.layout--landing .btn--demo::after,
.layout--landing .btn--white::after,
.layout--landing .lp-btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-18deg);
    transition: left .65s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

.layout--landing .btn--primary:hover::after,
.layout--landing .btn--demo:hover::after,
.layout--landing .btn--white:hover::after,
.layout--landing .lp-btn-glow:hover::after {
    left: 130%;
}

/* Company kartı logosuna hafif premium halka */
.lp-company-card__logo {
    box-shadow: 0 0 0 3px rgba(225, 29, 72, .05);
}

/* FAQ açık durumda malzeme derinliğini koru */
.lp-faq__item[open] {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .8) inset,
        0 10px 30px rgba(15, 23, 42, .06);
}

@media (prefers-reduced-motion: reduce) {
    .layout--landing .btn--primary::after,
    .layout--landing .btn--demo::after,
    .layout--landing .btn--white::after,
    .layout--landing .lp-btn-glow::after {
        display: none;
    }
}

@media print {
    .landing::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   GERÇEK EKRAN GÖRÜNTÜSÜ ÇERÇEVELERİ
   Sahte CSS mockup yerine gerçek uygulama screenshot'ı
   (<img>) bu sınıfların içine konur.
   ═══════════════════════════════════════════════════════════ */

/* Tablet cihaz çerçevesi — dikey tablet ekran görüntüsü için */
.lp-device--tablet {
    position: relative;
    background: #0F172A;
    border-radius: 26px;
    padding: 14px 14px 20px;
    box-shadow:
        0 30px 70px rgba(15, 23, 42, .35),
        0 0 0 1px rgba(255, 255, 255, .06) inset;
}

.lp-device--tablet::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
}

.lp-device__screen {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.lp-device__screen img {
    display: block;
    width: 100%;
    height: auto;
}

/* Panel/masaüstü çerçevesi — tarayıcı penceresi görünümü */
.lp-device--browser {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(15, 23, 42, .14),
        0 0 0 1px rgba(255, 255, 255, .8) inset;
}

.lp-device--browser .lp-device__chrome {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem .9rem;
    background: linear-gradient(180deg, #FAFBFC 0%, #F1F5F9 100%);
    border-bottom: 1px solid var(--lp-line);
}

.lp-device--browser .lp-device__chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-device--browser .lp-device__chrome span:nth-child(1) { background: #FCA5A5; }
.lp-device--browser .lp-device__chrome span:nth-child(2) { background: #FCD34D; }
.lp-device--browser .lp-device__chrome span:nth-child(3) { background: #86EFAC; }

.lp-device--browser .lp-device__chrome em {
    margin-left: auto;
    font-style: normal;
    font-size: .7rem;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-device--browser .lp-device__screen {
    border-radius: 0;
    box-shadow: none;
}
