/* ============================================================
   Tenant.Master — Satış / tanıtım landing
   Değişken tabanlı tema (light + dark), indigo→mor tasarım dili.
   Auth ekranlarıyla (auth.css) aynı renk ailesi.
   ============================================================ */

:root {
    /* Marka (her iki temada sabit) */
    --lp-indigo: #6366f1;
    --lp-primary: #4f46e5;
    --lp-primary-2: #7c3aed;
    --lp-grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

    /* Light tema yüzeyleri */
    --lp-bg: #ffffff;
    --lp-surface: #f6f7fb;
    --lp-card: #ffffff;
    --lp-text: #111827;
    --lp-muted: #6b7280;
    --lp-border: #e8eaf1;
    --lp-nav-bg: rgba(255, 255, 255, 0.85);
    --lp-tint: rgba(99, 102, 241, 0.10);
    --lp-tint-strong: rgba(99, 102, 241, 0.16);

    --lp-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --lp-shadow-md: 0 10px 26px -12px rgba(15, 23, 42, 0.22);
    --lp-shadow-lg: 0 36px 80px -36px rgba(79, 70, 229, 0.45);
    --lp-radius: 16px;
    --lp-radius-pill: 999px;
}

html[data-theme="dark"] {
    --lp-bg: #0e1016;
    --lp-surface: #141823;
    --lp-card: #181c28;
    --lp-text: #eef0f6;
    --lp-muted: #9aa1b4;
    --lp-border: #272c3b;
    --lp-nav-bg: rgba(14, 16, 22, 0.85);
    --lp-tint: rgba(124, 108, 247, 0.18);
    --lp-tint-strong: rgba(124, 108, 247, 0.26);
    --lp-shadow-md: 0 10px 26px -12px rgba(0, 0, 0, 0.6);
    --lp-shadow-lg: 0 36px 80px -36px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset & body ---------- */
.lp-body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.55;
    transition: background 0.25s ease, color 0.25s ease;
}

.lp-body * { box-sizing: border-box; }

.lp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-container--narrow {
    max-width: 820px;
}

.lp-section {
    padding: 88px 0;
}

.lp-section--alt {
    background: var(--lp-surface);
}

@media (max-width: 767px) {
    .lp-section { padding: 56px 0; }
}

/* ---------- Kicker (bölüm üstü küçük etiket) ---------- */
.lp-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-indigo);
    margin-bottom: 14px;
}

.lp-kicker--on-dark {
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Top nav ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--lp-nav-bg);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.25s;
}

.lp-nav.is-scrolled {
    border-bottom-color: var(--lp-border);
    box-shadow: var(--lp-shadow-sm);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 16px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--lp-text);
    text-decoration: none;
}

.lp-brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--lp-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 10px 22px -10px rgba(99, 102, 241, 0.7);
}

.lp-brand strong { font-weight: 800; }

.lp-nav__links {
    display: flex;
    gap: 26px;
}

.lp-nav__links a {
    color: var(--lp-muted);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.lp-nav__links a:hover { color: var(--lp-text); }

.lp-nav__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Tema toggle */
.lp-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid var(--lp-border);
    background: var(--lp-card);
    color: var(--lp-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-theme-toggle:hover {
    color: var(--lp-indigo);
    border-color: var(--lp-indigo);
}

.lp-theme-toggle__sun { display: none; }
html[data-theme="dark"] .lp-theme-toggle__sun { display: inline-flex; }
html[data-theme="dark"] .lp-theme-toggle__moon { display: none; }

@media (max-width: 991px) {
    .lp-nav__links { display: none; }
}

@media (max-width: 575px) {
    .lp-nav__actions .lp-btn--ghost { display: none; }
}

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--lp-radius-pill);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.2s, filter 0.2s;
    white-space: nowrap;
}

.lp-btn:active { transform: translateY(1px); }

.lp-btn--primary {
    background: var(--lp-grad);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(99, 102, 241, 0.7);
}

.lp-btn--primary:hover {
    filter: brightness(1.05);
    color: #fff;
    box-shadow: 0 16px 32px -12px rgba(124, 58, 237, 0.75);
}

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

.lp-btn--ghost:hover {
    background: var(--lp-surface);
    border-color: var(--lp-indigo);
    color: var(--lp-text);
}

.lp-btn--light {
    background: #fff;
    color: var(--lp-primary);
}

.lp-btn--light:hover {
    background: #f1f5f9;
    color: var(--lp-primary);
}

.lp-btn--lg {
    padding: 14px 26px;
    font-size: 15px;
}

/* Karanlık zeminde ghost (alt CTA) */
.lp-btn--on-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.lp-btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

/* ---------- Grad text ---------- */
.lp-grad-text {
    background: var(--lp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- HERO ---------- */
.lp-hero {
    padding: 72px 0 88px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(60% 70% at 80% 0%, var(--lp-tint) 0%, transparent 55%),
        radial-gradient(50% 60% at 0% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-surface) 100%);
}

.lp-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.lp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: var(--lp-tint);
    color: var(--lp-indigo);
    border: 1px solid var(--lp-tint-strong);
    border-radius: var(--lp-radius-pill);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lp-hero__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-indigo);
}

.lp-hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px 0;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}

.lp-hero__copy > p {
    font-size: 17px;
    color: var(--lp-muted);
    max-width: 520px;
    margin: 0 0 28px 0;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-hero__hint {
    margin-top: 16px;
    font-size: 13px;
    color: var(--lp-muted);
}

/* Stats */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 36px 0 0 0;
    padding-top: 28px;
    border-top: 1px solid var(--lp-border);
}

/* İstatistik ŞERİDİ — kutusuz, arka plansız; ince dikey ayraçlarla bölünür.
   İkon yumuşak tonlu daire, sayı degrade; hepsi indigo→mor temada. Havadar görünür. */
.lp-stat {
    --c: #6366f1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 2px 22px;
    border-left: 1px solid var(--lp-border);
}

.lp-stat:first-child {
    border-left: 0;
    padding-left: 0;
}

.lp-stat__top {
    display: flex;
    align-items: center;
    gap: 11px;
}

.lp-stat__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 17px;
    color: var(--c);
    background: color-mix(in srgb, var(--c) 14%, transparent);
}

.lp-stat__num {
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--c);
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 55%, var(--lp-text)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-stat__label {
    font-size: 12.5px;
    color: var(--lp-muted);
    font-weight: 600;
    line-height: 1.3;
}

/* Vurgu renkleri — hepsi indigo→mor ailesinde, tema ile uyumlu */
.lp-stat--brand  { --c: #6366f1; }
.lp-stat--violet { --c: #7c3aed; }
.lp-stat--green  { --c: #8b5cf6; }
.lp-stat--amber  { --c: #a855f7; }

/* color-mix desteklemeyen tarayıcılarda okunur bir geri dönüş */
@supports not (background: color-mix(in srgb, red 10%, white)) {
    .lp-stat__icon { background: rgba(99, 102, 241, .12); color: var(--c); }
    .lp-stat__num { -webkit-text-fill-color: var(--c); color: var(--c); }
}

@media (max-width: 991px) {
    .lp-hero__inner { grid-template-columns: 1fr; gap: 44px; }
    .lp-hero__media { order: -1; }
}

@media (max-width: 767px) {
    .lp-hero { padding: 48px 0 60px 0; }
    .lp-hero h1 { font-size: 34px; }
    .lp-hero__copy > p { font-size: 15.5px; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; }
    /* Mobilde dikey ayraçlar yerine boşluk kullan (2x2 düzgün hizalansın) */
    .lp-stat,
    .lp-stat:first-child { border-left: 0; padding: 2px 0; }
    .lp-stat__num { font-size: 23px; }
}

/* ---------- HERO MOCK (browser mockup) ---------- */
.lp-hero__media {
    position: relative;
    display: flex;
    justify-content: center;
}

.lp-mock {
    width: 100%;
    max-width: 520px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}

.lp-mock__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 36px;
    padding: 0 14px;
    background: var(--lp-surface);
    border-bottom: 1px solid var(--lp-border);
}

.lp-mock__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lp-border);
}

.lp-mock__body {
    display: flex;
    min-height: 300px;
}

.lp-mock__side {
    width: 68px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, #4f46e5, #7c3aed);
}

.lp-mock__logo {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.9);
}

.lp-mock__nav {
    height: 9px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.28);
}

.lp-mock__nav.is-active {
    background: rgba(255, 255, 255, 0.85);
    width: 90%;
}

.lp-mock__main {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-mock__banner {
    height: 96px;
    border-radius: 12px;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(255, 255, 255, 0.22), transparent 50%),
        linear-gradient(135deg, #6366f1, #a855f7);
}

.lp-mock__line {
    height: 11px;
    border-radius: 6px;
    background: var(--lp-border);
}

.lp-mock__line--lg {
    width: 65%;
    height: 14px;
    background: var(--lp-tint-strong);
}

.lp-mock__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.lp-mock__cards span {
    height: 52px;
    border-radius: 10px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
}

/* Floating rozetler */
.lp-mock__badge,
.lp-mock__chip,
.lp-mock__float {
    position: absolute;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-md);
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.lp-mock__badge {
    top: 16px;
    left: -14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 12.5px;
    color: #16a34a;
}

.lp-mock__badge i { font-size: 15px; }

.lp-mock__chip {
    top: 70px;
    right: -12px;
    padding: 7px 13px;
    font-size: 12.5px;
    color: #fff;
    background: var(--lp-grad);
    border-color: transparent;
}

.lp-mock__float {
    bottom: -16px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-mock__float strong {
    color: var(--lp-text);
    font-size: 15px;
}

.lp-mock__float-ico {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-tint);
    color: var(--lp-indigo);
    font-size: 16px;
}

@media (max-width: 575px) {
    .lp-mock__badge { left: 0; }
    .lp-mock__chip { right: 0; }
}

/* ---------- Section head ---------- */
.lp-section__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 52px auto;
}

.lp-section__head h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}

.lp-section__head p {
    color: var(--lp-muted);
    font-size: 16px;
    margin: 0;
}

@media (max-width: 767px) {
    .lp-section__head { margin-bottom: 36px; }
    .lp-section__head h2 { font-size: 27px; }
}

/* ---------- Features (ikon-solda yatay kartlar) ---------- */
.lp-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 16px;
}

.lp-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px 22px 22px 24px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

/* Sol aksan çubuğu (hover'da büyür) */
.lp-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--lp-grad);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.lp-feature:hover {
    border-color: var(--lp-tint-strong);
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
}

.lp-feature:hover::before { transform: scaleY(1); }

.lp-feature__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--lp-tint);
    color: var(--lp-indigo);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp-feature:hover .lp-feature__icon {
    background: var(--lp-grad);
    color: #fff;
    transform: scale(1.05);
}

.lp-feature__text {
    min-width: 0;
}

.lp-feature__text h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin: 3px 0 6px 0;
    color: var(--lp-text);
}

.lp-feature__text p {
    font-size: 13.5px;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}

/* Vurgulu (flagship) kart — açık tonlu, okunaklı */
.lp-feature--primary {
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.10), rgba(124, 58, 237, 0.06)),
        var(--lp-card);
    border-color: var(--lp-tint-strong);
}

.lp-feature--primary::before { transform: scaleY(1); }

.lp-feature--primary .lp-feature__icon {
    background: var(--lp-grad);
    color: #fff;
}

@media (max-width: 575px) {
    .lp-features { grid-template-columns: 1fr; }
}

/* ---------- Modules grid ---------- */
.lp-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lp-module {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.lp-module:hover {
    border-color: var(--lp-tint-strong);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-md);
}

.lp-module__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 12px;
    background: var(--lp-tint);
    color: var(--lp-indigo);
}

.lp-module h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--lp-text);
}

.lp-module p {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .lp-modules { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
    .lp-modules { grid-template-columns: 1fr; }
}

/* ---------- Steps (animasyonlu) ---------- */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

/* Adımlar arası bağlantı çizgisi — numaraların ortasından geçer (sadece masaüstü) */
@media (min-width: 768px) {
    .lp-steps::before {
        content: "";
        position: absolute;
        top: 50px;            /* padding-top(28) + numara yarısı(22) */
        left: 16%;
        right: 16%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--lp-border) 14%, var(--lp-border) 86%, transparent);
        z-index: 0;
    }
}

.lp-step {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s ease, border-color .35s ease;
}

/* Üst kenarda degrade vurgu — hover'da soldan açılır */
.lp-step::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--lp-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.lp-step:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 26px 50px -26px rgba(79, 70, 229, .5);
}

.lp-step:hover::after { transform: scaleX(1); }

.lp-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lp-grad);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 22px -10px rgba(99, 102, 241, 0.7);
    position: relative;
    transition: transform .35s ease;
}

/* Numara çevresinde nabız halkası (hover) */
.lp-step__num::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--lp-primary);
    opacity: 0;
    pointer-events: none;
}

.lp-step:hover .lp-step__num {
    transform: scale(1.1) rotate(-4deg);
}

.lp-step:hover .lp-step__num::before {
    animation: lp-pulse-ring 1.2s ease-out infinite;
}

@keyframes lp-pulse-ring {
    0%   { opacity: .55; transform: scale(.82); }
    100% { opacity: 0;   transform: scale(1.3); }
}

/* Köşede soluk büyük ikon — hover'da belirginleşir */
.lp-step__icon {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 30px;
    line-height: 1;
    color: var(--lp-primary);
    opacity: .12;
    transform: translateY(-2px) rotate(-6deg);
    transition: opacity .35s ease, transform .35s ease;
}

.lp-step:hover .lp-step__icon {
    opacity: .9;
    transform: translateY(0) rotate(0);
}

.lp-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--lp-text);
}

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

@media (max-width: 767px) {
    .lp-steps { grid-template-columns: 1fr; }
    .lp-steps::before { display: none; }
}

/* ---------- Scroll reveal (genel) ---------- */
[data-lp-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
    will-change: opacity, transform;
}

[data-lp-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Kartlar sırayla gelsin (stagger) */
.lp-steps [data-lp-reveal]:nth-child(1),
.lp-plans [data-lp-reveal]:nth-child(1) { transition-delay: .05s; }
.lp-steps [data-lp-reveal]:nth-child(2),
.lp-plans [data-lp-reveal]:nth-child(2) { transition-delay: .18s; }
.lp-steps [data-lp-reveal]:nth-child(3),
.lp-plans [data-lp-reveal]:nth-child(3) { transition-delay: .31s; }

@media (prefers-reduced-motion: reduce) {
    [data-lp-reveal] { opacity: 1; transform: none; transition: none; }
    .lp-step, .lp-step__num, .lp-step__icon, .lp-step::after { transition: none; }
    .lp-step:hover { transform: none; }
    .lp-step:hover .lp-step__num { transform: none; }
    .lp-step:hover .lp-step__num::before { animation: none; }
}

/* ---------- Tech chips ---------- */
.lp-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.lp-tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--lp-radius-pill);
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text);
    transition: border-color 0.15s, transform 0.15s, color 0.15s;
}

.lp-tech-chip i {
    color: var(--lp-indigo);
    font-size: 17px;
}

.lp-tech-chip:hover {
    border-color: var(--lp-indigo);
    transform: translateY(-2px);
}

/* ---------- Segments ---------- */
.lp-segments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-segment {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 26px 22px;
    text-align: center;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.lp-segment:hover {
    border-color: var(--lp-tint-strong);
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
}

.lp-segment__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background: var(--lp-grad);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(99, 102, 241, 0.7);
}

.lp-segment h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 7px 0;
    color: var(--lp-text);
}

.lp-segment p {
    font-size: 13.5px;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .lp-segments { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
    .lp-segments { grid-template-columns: 1fr; }
}

/* ---------- Paketler (pricing) ---------- */
.lp-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.lp-plan {
    position: relative;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.lp-plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
    border-color: var(--lp-tint-strong);
}

.lp-plan--featured {
    border: 2px solid var(--lp-indigo);
    box-shadow: 0 20px 44px -22px rgba(99, 102, 241, 0.45);
}

.lp-plan__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 15px;
    border-radius: var(--lp-radius-pill);
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 22px -10px rgba(99, 102, 241, 0.7);
}

.lp-plan__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 10px;
}

.lp-plan__price {
    margin-bottom: 8px;
}

.lp-plan__amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.02em;
}

.lp-plan__period {
    color: var(--lp-muted);
    font-size: 14px;
    margin-left: 4px;
}

.lp-plan__tagline {
    color: var(--lp-muted);
    font-size: 14px;
    min-height: 40px;
    margin: 0 0 18px 0;
}

.lp-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.lp-plan__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text);
}

.lp-plan__features li i {
    color: #16a34a;
    font-size: 17px;
    flex-shrink: 0;
}

.lp-plan__cta {
    justify-content: center;
    width: 100%;
}

.lp-muted { color: var(--lp-muted); }

@media (max-width: 991px) {
    .lp-plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .lp-plan--featured { order: -1; }
}

/* ---------- Alt CTA banner ---------- */
.lp-cta-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    background:
        radial-gradient(80% 120% at 50% 0%, rgba(168, 85, 247, 0.45) 0%, transparent 55%),
        linear-gradient(135deg, #1e1b4b 0%, #4f46e5 55%, #7c3aed 100%);
}

.lp-cta-banner h2 {
    margin: 0 0 12px 0;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.lp-cta-grad {
    background: linear-gradient(90deg, #f0abfc, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-cta-banner p {
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 26px 0;
    font-size: 16px;
}

.lp-cta-banner__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 767px) {
    .lp-cta-banner { padding: 56px 0; }
    .lp-cta-banner h2 { font-size: 26px; }
}

/* ---------- Footer ---------- */
.lp-footer {
    padding: 32px 0;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-bg);
}

.lp-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--lp-muted);
    font-size: 13px;
}

.lp-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.lp-footer__links a {
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-footer__links a:hover { color: var(--lp-text); }
