/* ============================================================
   KODAKOD — LANDING DESIGN SYSTEM v3
   Monochrome. Editorial. Corporate. Inspired by apple.com/business,
   stripe.com/enterprise, linear.app. No accent colors.
   ============================================================ */

/* Görsel-gizli (screen-reader only) — düzeni etkilemeden başlığı erişilebilir kılar.
   Görünür başlığı olmayan bölümlerde heading atlamasını önlemek için kullanılır. */
.lp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --lp-bg:            #ffffff;
    --lp-bg-soft:       #f5f5f7;
    --lp-bg-dark:       #000000;

    --lp-surface:       #ffffff;
    --lp-surface-soft:  #fbfbfd;
    --lp-border:        rgba(0, 0, 0, 0.08);
    --lp-border-hi:     rgba(0, 0, 0, 0.14);

    --lp-text:          #1d1d1f;
    --lp-text-soft:     #515154;
    --lp-text-mute:     #86868b;

    --lp-text-inv:      #ffffff;
    --lp-text-inv-soft: rgba(255, 255, 255, 0.78);
    --lp-text-inv-mute: rgba(255, 255, 255, 0.50);
    --lp-border-inv:    rgba(255, 255, 255, 0.14);

    --lp-radius-sm:     8px;
    --lp-radius:        14px;
    --lp-radius-lg:     22px;
    --lp-radius-xl:     32px;

    --lp-ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
    --lp-ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --lp-ease-spring:   cubic-bezier(0.34, 1.4, 0.64, 1);

    --lp-container:     1180px;
    --lp-nav-h:         56px;

    --lp-shadow-sm:     0 1px 2px rgba(0,0,0,0.04);
    --lp-shadow-card:   0 1px 2px rgba(0,0,0,0.04), 0 8px 24px -4px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; scroll-padding-top: 0; }
html, body { background: var(--lp-bg); }
body.lp-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    color: var(--lp-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-feature-settings: 'cv11','ss01','ss03';
    overflow-x: hidden;
    font-weight: 400;
}
.lp-body a { color: inherit; text-decoration: none; }
.lp-body img, .lp-body svg, .lp-body canvas { display: block; max-width: 100%; }
.lp-body button { font-family: inherit; }

.lp-skip-link { position: absolute; left: -9999px; }
.lp-skip-link:focus { left: 1rem; top: 1rem; background: #000; color: #fff; padding: 0.5rem 1rem; z-index: 100; }

/* ============================================================
   NAVBAR — minimal white, hairline border
   ============================================================ */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    height: calc(56px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 320ms var(--lp-ease), border-color 320ms var(--lp-ease), color 320ms var(--lp-ease);
    color: var(--lp-text-inv);
}
.lp-nav .lp-nav__brand-icon { filter: invert(1); transition: filter 320ms var(--lp-ease); }
.lp-nav .lp-nav__link { color: rgba(255,255,255,0.92); }
.lp-nav .lp-nav__link:hover { color: #fff; }
.lp-nav .lp-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }
.lp-nav .lp-btn--ghost:hover { background: #fff; color: #000; border-color: #fff; }
.lp-nav .lp-btn--primary { color: #fff; border-color: rgba(255,255,255,0.55); background: transparent; }
.lp-nav .lp-btn--primary:hover { background: #fff; color: #000; border-color: #fff; }
.lp-nav .lp-nav__burger { border-color: rgba(255,255,255,0.22); }
.lp-nav .lp-nav__burger span { background: #fff; }

.lp-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom-color: var(--lp-border);
    color: var(--lp-text);
}
.lp-nav.is-scrolled .lp-nav__brand-icon { display: none; }
.lp-nav.is-scrolled .lp-nav__brand-logo { display: block; }
.lp-nav.is-scrolled .lp-nav__link { color: var(--lp-text-soft); }
.lp-nav.is-scrolled .lp-nav__link:hover { color: var(--lp-text); }
.lp-nav.is-scrolled .lp-btn--ghost { color: var(--lp-text); border-color: var(--lp-border-hi); background: transparent; }
.lp-nav.is-scrolled .lp-btn--ghost:hover { background: var(--lp-text); color: var(--lp-text-inv); border-color: var(--lp-text); }
.lp-nav.is-scrolled .lp-btn--primary { color: var(--lp-text); border-color: var(--lp-text); background: transparent; }
.lp-nav.is-scrolled .lp-btn--primary:hover { background: var(--lp-text); color: var(--lp-text-inv); }
.lp-nav.is-scrolled .lp-nav__burger { border-color: var(--lp-border-hi); }
.lp-nav.is-scrolled .lp-nav__burger span { background: var(--lp-text); }
.lp-nav__inner {
    max-width: var(--lp-container);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}
.lp-nav__brand {
    display: inline-flex; align-items: center;
    color: var(--lp-text);
}
.lp-nav__brand-icon { height: 26px; width: auto; display: block; }
.lp-nav .lp-nav__brand-logo { height: 22px; width: auto; display: none; }
.lp-nav__links {
    display: flex; gap: 2rem;
    justify-self: center;
}
.lp-nav__link {
    color: var(--lp-text-soft); font-size: 0.86rem; font-weight: 400;
    transition: color 200ms var(--lp-ease);
    letter-spacing: -0.005em;
}
.lp-nav__link:hover { color: var(--lp-text); }
.lp-nav__actions { display: flex; align-items: center; gap: 0.5rem; justify-self: end; }
.lp-nav__links-cta { display: none; }
.lp-nav__demo-form { display: inline-flex; margin: 0; }
.lp-nav__burger {
    display: none; width: 33px; height: 33px;
    background: transparent; border: 1px solid var(--lp-border-hi);
    border-radius: 8px; cursor: pointer;
    flex-direction: column; gap: 4px; justify-content: center; align-items: center;
}
.lp-nav__burger span {
    display: block; width: 16px; height: 1.5px; background: var(--lp-text); border-radius: 2px;
    transition: transform 240ms var(--lp-ease), opacity 160ms var(--lp-ease);
}
.lp-nav.is-open .lp-nav__burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.lp-nav.is-open .lp-nav__burger span:nth-child(2) { opacity: 0; }
.lp-nav.is-open .lp-nav__burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Pin the body while the menu is open — position:fixed reliably freezes
   the background on iOS where overflow:hidden alone does not. `top` is set
   inline by JS to the saved scroll offset. */
body.lp-menu-open {
    position: fixed;
    left: 0; right: 0; width: 100%;
    overflow: hidden;
}

/* ---- Mobile drawer menu (moved to <body> by JS to escape nav's filter context) ---- */
.lp-nav__scrim {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(6, 6, 10, 0.4);
    opacity: 0; visibility: hidden;
    transition: opacity 360ms var(--lp-ease), visibility 0s linear 360ms;
}
/* Full-screen frosted-dark menu overlay */
.lp-nav__panel {
    position: fixed; inset: 0; z-index: 100;
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(var(--lp-nav-h) + 2rem + env(safe-area-inset-top, 0px)) 2rem max(2rem, env(safe-area-inset-bottom, 0px));
    background: rgba(10, 10, 14, 0.78);
    -webkit-backdrop-filter: saturate(160%) blur(28px);
    backdrop-filter: saturate(160%) blur(28px);
    color: var(--lp-text-inv);
    opacity: 0; visibility: hidden;
    transform: scale(1.03);
    transition: opacity 420ms var(--lp-ease), transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 420ms;
    overflow-y: auto; overscroll-behavior: contain;
}
body.lp-menu-open .lp-nav__scrim {
    opacity: 1; visibility: visible;
    transition: opacity 360ms var(--lp-ease);
}
body.lp-menu-open .lp-nav__panel {
    opacity: 1; visibility: visible; transform: scale(1);
    transition: opacity 420ms var(--lp-ease), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-nav__panel-close {
    position: absolute; top: calc(11px + env(safe-area-inset-top, 0px)); right: calc(1.5rem + env(safe-area-inset-right, 0px));
    width: 33px; height: 33px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 8px;
    color: #fff; cursor: pointer;
    transition: background 200ms var(--lp-ease), border-color 200ms var(--lp-ease), transform 200ms var(--lp-ease);
}
.lp-nav__panel-close svg {
    width: 16px; height: 16px; fill: none; stroke: currentColor;
    stroke-width: 1.75; stroke-linecap: round;
}
.lp-nav__panel-close:hover {
    background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lp-nav__panel-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.05rem 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem; font-weight: 400; letter-spacing: -0.005em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0; transform: translateY(14px);
    transition: color 180ms var(--lp-ease);
}
.lp-nav__panel-link svg {
    width: 18px; height: 18px; flex: none;
    fill: none; stroke: rgba(255, 255, 255, 0.35); stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    transition: stroke 180ms var(--lp-ease), transform 220ms var(--lp-ease);
}
.lp-nav__panel-link:hover { color: #fff; }
.lp-nav__panel-link:hover svg { stroke: #fff; transform: translateX(4px); }

.lp-nav__panel .lp-nav__panel-cta {
    position: relative; overflow: hidden;
    margin-top: 2rem; width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem; font-weight: 600;
    background: #fff; color: #000; border-color: #fff;
    opacity: 0; transform: translateY(14px);
    transition: transform 260ms var(--lp-ease), box-shadow 260ms var(--lp-ease);
}
/* Pulsing glow ring — its own layer so it doesn't fight the entrance animation */
.lp-nav__panel-cta::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    animation: lp-cta-pulse 2.6s ease-in-out infinite;
    pointer-events: none;
}
/* Sheen sweep across the button face */
.lp-nav__panel-cta::after {
    content: ""; position: absolute; top: 0; left: -60%;
    width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    transform: skewX(-18deg);
    animation: lp-cta-sheen 2.6s ease-in-out infinite;
    pointer-events: none;
}
.lp-nav__panel .lp-nav__panel-cta:hover {
    background: #fff; border-color: #fff; color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(255, 255, 255, 0.4);
}
.lp-nav__panel-cta:hover::before,
.lp-nav__panel-cta:hover::after { animation-play-state: paused; }

@keyframes lp-cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0); }
    50%      { box-shadow: 0 0 24px 3px rgba(255, 255, 255, 0.28); }
}
@keyframes lp-cta-sheen {
    0%        { left: -60%; }
    55%, 100% { left: 130%; }
}

/* Staggered reveal of items once the overlay is open */
body.lp-menu-open .lp-nav__panel-link,
body.lp-menu-open .lp-nav__panel-cta {
    animation: lp-nav-item-in 500ms var(--lp-ease) forwards;
}
body.lp-menu-open .lp-nav__panel-link:nth-of-type(1) { animation-delay: 160ms; }
body.lp-menu-open .lp-nav__panel-link:nth-of-type(2) { animation-delay: 210ms; }
body.lp-menu-open .lp-nav__panel-link:nth-of-type(3) { animation-delay: 260ms; }
body.lp-menu-open .lp-nav__panel-link:nth-of-type(4) { animation-delay: 310ms; }
body.lp-menu-open .lp-nav__panel-link:nth-of-type(5) { animation-delay: 360ms; }
body.lp-menu-open .lp-nav__panel-link:nth-of-type(6) { animation-delay: 410ms; }
body.lp-menu-open .lp-nav__panel-cta { animation-delay: 470ms; }

@keyframes lp-nav-item-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .lp-nav__panel { transition: opacity 1ms; transform: none; }
    body.lp-menu-open .lp-nav__panel-link,
    body.lp-menu-open .lp-nav__panel-cta { animation: none; opacity: 1; transform: none; }
    .lp-nav__panel-cta::before,
    .lp-nav__panel-cta::after { animation: none; }
}

/* ============================================================
   BUTTONS — black / white / ghost, no color
   ============================================================ */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    padding: 0.7rem 1.25rem;
    font-weight: 500; font-size: 0.9rem; letter-spacing: -0.005em;
    border-radius: 980px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 200ms var(--lp-ease), background 220ms var(--lp-ease),
                color 200ms var(--lp-ease), border-color 200ms var(--lp-ease);
    white-space: nowrap;
    user-select: none;
}
.lp-btn:focus-visible { outline: 2px solid var(--lp-text); outline-offset: 3px; }
.lp-btn:active { transform: scale(0.97); }
.lp-btn--sm { padding: 0.45rem 0.95rem; font-size: 0.82rem; }
.lp-btn--lg { padding: 0.95rem 1.65rem; font-size: 0.96rem; }

/* Primary = outline that fills on hover (Apple-style) */
.lp-btn--primary {
    background: transparent;
    color: var(--lp-text);
    border-color: var(--lp-text);
}
.lp-btn--primary:hover {
    background: var(--lp-text);
    color: var(--lp-text-inv);
}

/* Ghost on white = subtle outline */
.lp-btn--ghost {
    background: transparent;
    color: var(--lp-text);
    border-color: var(--lp-border-hi);
}
.lp-btn--ghost:hover {
    background: var(--lp-text);
    color: var(--lp-text-inv);
    border-color: var(--lp-text);
}

/* Light = white on dark BG */
.lp-btn--light,
.lp-btn--light:link,
.lp-btn--light:visited {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.lp-btn--light:hover { background: #f0f0f0; color: #000; }

/* Ghost on dark BG */
.lp-btn--ghost-inv {
    background: transparent;
    color: var(--lp-text-inv);
    border-color: var(--lp-border-inv);
}
.lp-btn--ghost-inv:hover {
    background: var(--lp-text-inv);
    color: var(--lp-text);
    border-color: var(--lp-text-inv);
}

.lp-btn__chev { transition: transform 220ms var(--lp-ease); }

/* ============================================================
   SECTION SHELL — every section: exactly 100svh, content centered.
   Single source of truth for vertical rhythm.
   ============================================================ */
:root {
    /* Unified header rhythm — used by EVERY section header */
    --lp-hdr-eyebrow-size:  0.74rem;
    --lp-hdr-title-size:    clamp(1.9rem, 3.4vw, 2.6rem);
    --lp-hdr-lead-size:     1.02rem;
    --lp-hdr-gap-eyebrow:   0.9rem;   /* eyebrow → title */
    --lp-hdr-gap-lead:      0.9rem;   /* title → lead */
    --lp-hdr-mb:            clamp(2rem, 4vw, 3rem); /* header → content */
    --lp-hdr-max:           640px;
}

.lp-section,
.lp-keynote {
    position: relative;
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--lp-nav-h) + 2rem) 1.5rem 2rem;
    display: grid;
    place-items: center;
    align-content: center;
    overflow: hidden;
}
.lp-cta {
    position: relative;
    box-sizing: border-box;
    padding: clamp(4rem, 8vw, 6rem) 1.5rem;
    display: flex; justify-content: center;
}
.lp-section--tight { padding: calc(var(--lp-nav-h) + 1.5rem) 1.5rem 1.5rem; }
.lp-section--dark { background: var(--lp-bg-dark); color: var(--lp-text-inv); }
.lp-section--soft { background: var(--lp-bg-soft); }
.lp-section__inner {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    position: relative;
}

/* ============================================================
   UNIFIED HEADER — eyebrow + title + lead.
   Every section uses this exact rhythm. No variants.
   ============================================================ */
.lp-section__header {
    text-align: center;
    margin: 0 auto var(--lp-hdr-mb);
    max-width: var(--lp-hdr-max);
    display: flex; flex-direction: column; align-items: center;
}

.lp-eyebrow {
    display: inline-block;
    font-size: var(--lp-hdr-eyebrow-size);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-text-mute);
    margin: 0;
    line-height: 1;
}
.lp-section--dark .lp-eyebrow,
.lp-cta .lp-eyebrow { color: var(--lp-text-inv-mute); }

.lp-section__title {
    font-size: var(--lp-hdr-title-size);
    font-weight: 600;
    letter-spacing: -0.028em;
    line-height: 1.08;
    margin: var(--lp-hdr-gap-eyebrow) 0 0;
    color: var(--lp-text);
    max-width: var(--lp-hdr-max);
}
.lp-section--dark .lp-section__title,
.lp-cta .lp-section__title { color: var(--lp-text-inv); }
.lp-section__title em {
    font-style: normal;
    color: var(--lp-text-mute);
}
.lp-section--dark .lp-section__title em,
.lp-cta .lp-section__title em { color: var(--lp-text-inv-mute); }

.lp-section__lead {
    font-size: var(--lp-hdr-lead-size);
    color: var(--lp-text-soft);
    max-width: 560px;
    line-height: 1.55;
    font-weight: 400;
    margin: var(--lp-hdr-gap-lead) auto 0;
}
.lp-section--dark .lp-section__lead,
.lp-cta .lp-section__lead { color: var(--lp-text-inv-soft); }

/* ============================================================
   REFERANSLAR — proje kartları (sade, monokrom, hairline)
   ============================================================ */
.lp-refs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
}
.lp-ref {
    display: flex;
    flex-direction: column;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease), border-color 0.4s var(--lp-ease);
}
.lp-ref:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-card);
    border-color: var(--lp-border-hi);
}
.lp-ref__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--lp-bg-soft);
}
.lp-ref__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.6s var(--lp-ease-out), filter 0.5s var(--lp-ease);
}
.lp-ref:hover .lp-ref__media img { transform: scale(1.04); filter: grayscale(0); }
.lp-ref__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.lp-ref__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}
.lp-ref__name {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}
.lp-ref__tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-text-mute);
    white-space: nowrap;
}
.lp-ref__desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--lp-text-soft);
}
.lp-refs__foot {
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
}
.lp-refs__all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--lp-text);
}
.lp-refs__all svg { width: 20px; transition: transform 0.25s var(--lp-ease-out); }
.lp-refs__all:hover svg { transform: translateX(5px); }

@media (min-width: 760px) {
    .lp-refs__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   NEDEN KODAKOD — değer kartları (referans kart diliyle)
   ============================================================ */
.lp-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
}
.lp-why {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease), border-color 0.4s var(--lp-ease);
}
.lp-why:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-card);
    border-color: var(--lp-border-hi);
}
.lp-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border);
    background: var(--lp-bg-soft);
    color: var(--lp-text);
}
.lp-why__icon svg { width: 23px; height: 23px; }
.lp-why__body { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-why__title {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}
.lp-why__desc {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--lp-text-soft);
}
.lp-why__tag {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-text-mute);
}

@media (min-width: 760px) {
    .lp-why__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HİZMETLERİMİZ — kart yığını (stack), geniş tekli kart
   ============================================================ */
.lp-stack {
    position: relative;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.lp-stack__deck {
    position: relative;
    height: 600px;
    max-width: 1000px;
    margin-inline: auto;
}
.lp-stack__card {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: calc(100% - 46px);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: var(--lp-radius-lg);
    background: #101013;
    border: 1px solid var(--lp-border-inv);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
    transform-origin: top center;
    transition: transform 0.5s var(--lp-ease), opacity 0.5s var(--lp-ease);
    will-change: transform, opacity;
    color: var(--lp-text-inv);
}
.lp-stack__media { flex: 0 0 46%; position: relative; overflow: hidden; width: 100%; }
.lp-stack__media img { width: 100%; height: 100%; object-fit: cover; }
.lp-stack__body {
    flex: 1;
    display: flex; flex-direction: column;
    gap: 0;
    padding: clamp(2rem, 4vw, 3.25rem);
    justify-content: center;
}
.lp-stack__kicker {
    display: inline-block;
    margin: 0 0 1rem;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--lp-text-inv-mute);
}
.lp-stack__title {
    margin: 0 0 1.1rem;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 600; letter-spacing: -0.03em; line-height: 1.16;
    color: #fff;
}
.lp-stack__desc {
    margin: 0;
    font-size: 1rem; line-height: 1.65;
    color: var(--lp-text-inv-soft);
    max-width: 46ch;
}
.lp-stack__body .lp-stack__btn {
    margin-top: 1.9rem;
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    border-radius: 980px;
    background: #fff; color: #0a0a0a;
    font-size: 0.88rem; font-weight: 500;
    transition: transform 0.2s var(--lp-ease);
}
.lp-stack__btn svg { width: 16px; }
.lp-stack__btn:hover { transform: translateY(-2px); }

.lp-stack__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 60;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border-hi);
    color: var(--lp-text);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.18);
    transition: background 0.2s var(--lp-ease), transform 0.2s var(--lp-ease);
}
.lp-stack__nav:hover { background: var(--lp-text); color: var(--lp-bg); }
.lp-stack__nav:active { transform: translateY(-50%) scale(0.95); }
.lp-stack__nav--prev { left: clamp(-0.75rem, 0vw, 0.5rem); }
.lp-stack__nav--next { right: clamp(-0.75rem, 0vw, 0.5rem); }

.lp-stack__dots {
    display: flex; gap: 9px; justify-content: center;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.lp-stack__dot {
    width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.25); cursor: pointer;
    transition: width 0.3s var(--lp-ease), background 0.3s var(--lp-ease);
}
.lp-stack__dot.is-active { width: 26px; border-radius: 4px; background: #fff; }

@media (min-width: 981px) {
    .lp-stack__deck { height: 460px; }
}
/* Portrait tablet + phone: single-column card, no side arrows.
   The horizontal (media-left) layout only reads well at desktop
   widths, so it stays gated to >=981px above. */
@media (max-width: 980px) {
    .lp-stack__card { flex-direction: column; }
    .lp-stack__media { flex: 0 0 42%; }
    .lp-stack__nav { display: none; }
}


/* ============================================================
   BLOG — fan / coverflow carousel (dark), tekli kart tasarımı
   ============================================================ */
.lp-fan-section { overflow: hidden; }
.lp-fan {
    position: relative;
    margin-top: clamp(2rem, 4vw, 3rem);
    height: clamp(540px, 70vw, 660px);
    perspective: 1800px;
}
.lp-fan__track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.lp-fan__card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(330px, 88vw, 460px);
    transform: translate(-50%, -50%);
    background: #101013;
    border: 1px solid var(--lp-border-inv);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
    transition: transform 0.55s var(--lp-ease), opacity 0.55s var(--lp-ease);
    backface-visibility: hidden;
    will-change: transform, opacity;
}
.lp-fan__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.lp-fan__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.lp-fan__body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: clamp(1.6rem, 3vw, 2.15rem);
    color: var(--lp-text-inv);
}
.lp-fan__badge {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    padding: 0.34rem 0.8rem;
    border-radius: 980px;
    background: rgba(10, 10, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}
.lp-fan__title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600; letter-spacing: -0.02em; line-height: 1.3;
    color: #fff;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-fan__meta {
    font-size: 0.78rem;
    color: var(--lp-text-inv-mute);
}
.lp-fan__desc {
    margin: 0;
    font-size: 0.92rem; line-height: 1.55;
    color: var(--lp-text-inv-soft);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-fan__foot {
    margin-top: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border-inv);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lp-fan__author {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.8rem; color: var(--lp-text-inv-mute);
}
.lp-fan__author-icon {
    width: 16px; height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.lp-fan__card .lp-fan__btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 980px;
    background: #fff; color: #0a0a0a;
    font-size: 0.84rem; font-weight: 500;
    transition: transform 0.2s var(--lp-ease);
}
.lp-fan__btn svg { width: 16px; }
.lp-fan__btn:hover { transform: translateY(-2px); }

/* Nav arrows */
.lp-fan__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 60;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--lp-border-inv);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s var(--lp-ease), transform 0.2s var(--lp-ease);
}
.lp-fan__nav:hover { background: #fff; color: #0a0a0a; }
.lp-fan__nav:active { transform: translateY(-50%) scale(0.95); }
.lp-fan__nav--prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.lp-fan__nav--next { right: clamp(0.5rem, 3vw, 2.5rem); }
.lp-fan__nav:disabled { opacity: 0.3; cursor: not-allowed; }

/* Dots */
.lp-fan__dots {
    display: flex; gap: 9px;
    justify-content: center;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.lp-fan__dot {
    width: 7px; height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: width 0.3s var(--lp-ease), background 0.3s var(--lp-ease);
}
.lp-fan__dot.is-active { width: 26px; border-radius: 4px; background: #fff; }

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

/* ============================================================
   KEYNOTE — Apple-style storyteller. Single vertical axis.
   ============================================================ */
.lp-keynote {
    overflow: hidden;
    place-items: stretch;
    align-content: stretch;
    padding-top: calc(var(--lp-nav-h) + clamp(3rem, 5vw, 4rem));
    padding-bottom: clamp(4.5rem, 8vw, 7rem);
}
/* Isometric data grid — tilted plane with animated bars, reacts to mouse */
.lp-keynote__net {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

/* Soft vignette only — grid is drawn on canvas now */
.lp-keynote::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 45%, transparent 30%, rgba(0,0,0,0.55) 90%);
    pointer-events: none;
    z-index: 1;
}
.lp-keynote .lp-section__inner {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: var(--lp-container);
    height: 100%;
    z-index: 1;
}
.lp-keynote .lp-section__header { align-self: start; }
.lp-keynote__stage { align-self: center; }
.lp-keynote__nav { align-self: end; }
.lp-keynote .lp-section__header { margin: 0; }

/* Stage — slides stacked in same grid cell, single column.
   Lives in the middle 1fr row, content centered within it. */
.lp-keynote__stage {
    display: grid;
    width: 100%;
    margin: 0;
    place-items: center;
    align-self: center;
}
.lp-keynote__slide {
    grid-column: 1; grid-row: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 500ms var(--lp-ease), transform 500ms var(--lp-ease);
    pointer-events: none;
    display: flex; flex-direction: column; align-items: center;
    gap: clamp(0.9rem, 1.6vw, 1.25rem);
    max-width: 640px;
    width: 100%;
}
.lp-keynote__slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Big hero metric — the single visual anchor */
.lp-keynote__hero-metric {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem;
    margin: 0;
}
.lp-keynote__metric-value {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.95;
    color: #fff;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    display: inline-flex; align-items: baseline; gap: 0.2em;
}
.lp-keynote__metric-value small {
    font-size: 0.42em;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255,255,255,0.45);
    -webkit-text-fill-color: rgba(255,255,255,0.45);
}

.lp-keynote__sentence {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 400; letter-spacing: -0.012em; line-height: 1.35;
    color: rgba(255,255,255,0.85);
    margin: 0;
    max-width: 480px;
}
.lp-keynote__sentence em {
    font-style: normal;
    color: #fff;
    font-weight: 600;
}

/* ============================================================
   KEYNOTE VIZ — per-slide micro visualizations
   ============================================================ */
.lp-keynote__viz {
    width: 100%;
    max-width: 320px;
    height: 36px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 0.25rem;
}

/* Chain (Slide 1) — node ─── node ─── node, pulse runs along */
.lp-keynote__viz--chain { gap: 0; }
.lp-keynote__node {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 0 12px rgba(255,255,255,0.35);
    flex-shrink: 0;
}
.lp-keynote__node--mid { background: #3880ff; box-shadow: 0 0 14px rgba(56,128,255,0.7); }
.lp-keynote__node--end { background: #3880ff; box-shadow: 0 0 16px rgba(56,128,255,0.85); }
.lp-keynote__line {
    position: relative;
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(56,128,255,0.35), rgba(255,255,255,0.08));
    overflow: hidden;
}
.lp-keynote__pulse {
    position: absolute; top: 50%; left: -20%;
    width: 30%; height: 1px;
    background: linear-gradient(90deg, transparent, #3880ff, transparent);
    box-shadow: 0 0 8px rgba(56,128,255,0.9);
    transform: translateY(-50%);
    animation: lp-kn-pulse 2.4s linear infinite;
}
@keyframes lp-kn-pulse {
    0%   { left: -30%; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

/* Spark (Slide 2) — animated line draw */
.lp-keynote__viz--spark svg { width: 100%; height: 100%; display: block; }
.lp-keynote__viz--spark svg path[stroke] {
    stroke-dasharray: 380;
    stroke-dashoffset: 380;
    animation: lp-kn-draw 2.6s var(--lp-ease-out) forwards;
}
.lp-keynote__viz--spark svg circle {
    opacity: 0;
    animation: lp-kn-dot 0.4s var(--lp-ease-out) 2.4s forwards;
}
@keyframes lp-kn-draw { to { stroke-dashoffset: 0; } }
@keyframes lp-kn-dot { to { opacity: 1; } }

/* Bars (Slide 3) — staggered rising bars */
.lp-keynote__viz--bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 36px;
}
.lp-keynote__viz--bars span {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.25));
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
    transform: scaleY(0);
    animation: lp-kn-bar 0.7s var(--lp-ease-out) forwards;
}
.lp-keynote__viz--bars span:nth-child(1) { animation-delay: 0.05s; }
.lp-keynote__viz--bars span:nth-child(2) { animation-delay: 0.12s; }
.lp-keynote__viz--bars span:nth-child(3) { animation-delay: 0.19s; }
.lp-keynote__viz--bars span:nth-child(4) { animation-delay: 0.26s; }
.lp-keynote__viz--bars span:nth-child(5) { animation-delay: 0.33s; }
.lp-keynote__viz--bars span:nth-child(6) { animation-delay: 0.40s; }
.lp-keynote__viz--bars span:nth-child(7) { animation-delay: 0.47s; }
.lp-keynote__viz--bars span.is-peak {
    background: linear-gradient(180deg, #3880ff, rgba(56,128,255,0.4));
    box-shadow: 0 0 16px rgba(56,128,255,0.45);
    animation-delay: 0.54s;
}
@keyframes lp-kn-bar { to { transform: scaleY(1); } }

@media (prefers-reduced-motion: reduce) {
    .lp-keynote__pulse,
    .lp-keynote__viz--spark svg path[stroke],
    .lp-keynote__viz--spark svg circle,
    .lp-keynote__viz--bars span { animation: none !important; }
    .lp-keynote__viz--bars span { transform: scaleY(1); }
    .lp-keynote__viz--spark svg path[stroke] { stroke-dashoffset: 0; }
    .lp-keynote__viz--spark svg circle { opacity: 1; }
}

/* Bottom nav — 3 timeline buttons, naturally flows after stage */
.lp-keynote__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    width: 100%;
    max-width: var(--lp-container);
    margin: 0;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-keynote__nav-item {
    background: transparent; border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.15rem 0.7rem;
    padding: 0;
    color: rgba(255,255,255,0.4);
    transition: color 320ms var(--lp-ease);
}
.lp-keynote__nav-item:hover { color: rgba(255,255,255,0.7); }
.lp-keynote__nav-item.is-active { color: #fff; }
.lp-keynote__nav-num {
    grid-column: 1; grid-row: 1 / 3;
    align-self: center;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 0.32rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: inherit;
    transition: border-color 320ms var(--lp-ease);
}
.lp-keynote__nav-item.is-active .lp-keynote__nav-num { border-color: rgba(255,255,255,0.45); }
.lp-keynote__nav-label {
    grid-column: 2; grid-row: 1;
    font-size: 1rem; font-weight: 500;
    letter-spacing: -0.01em;
    color: inherit;
}
.lp-keynote__nav-bar {
    grid-column: 2; grid-row: 2;
    margin-top: 0.45rem;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}
.lp-keynote__nav-bar-fill {
    display: block; height: 100%; width: 0;
    background: #fff;
    border-radius: 2px;
}
.lp-keynote__nav-item.is-active .lp-keynote__nav-bar-fill {
    animation: lp-keynote-fill 3000ms linear forwards;
}
@keyframes lp-keynote-fill {
    from { width: 0; }
    to   { width: 100%; }
}

/* (Keynote mobile overrides consolidated into the MOBILE & TABLET
   responsive layer at the end of this file.) */

/* ============================================================
   PRICING — minimal cards
   ============================================================ */
.lp-pricing-toggle {
    display: inline-flex; align-items: center;
    background: var(--lp-bg-soft);
    border: 1px solid var(--lp-border);
    padding: 0.3rem;
    border-radius: 999px;
    margin: 0 auto clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
}
.lp-pricing-toggle button {
    background: transparent; border: none; color: var(--lp-text-soft);
    padding: 0.55rem 1.1rem; font-size: 0.85rem; font-weight: 500;
    border-radius: 999px; cursor: pointer;
    transition: color 260ms var(--lp-ease);
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 0.5rem;
    letter-spacing: -0.005em;
}
.lp-pricing-toggle button.is-active { color: #fff; }
.lp-pricing-toggle__pill {
    position: absolute; top: 0.3rem; bottom: 0.3rem;
    background: var(--lp-text);
    border-radius: 999px;
    z-index: 0;
    transition: transform 360ms var(--lp-ease-spring), width 360ms var(--lp-ease-spring);
}
.lp-pricing-toggle__save {
    display: inline-block;
    padding: 0.12rem 0.5rem; font-size: 0.68rem;
    background: rgba(0,0,0,0.06); color: var(--lp-text);
    border-radius: 999px; font-weight: 600;
}
.lp-pricing-toggle button.is-active .lp-pricing-toggle__save {
    background: rgba(255,255,255,0.16); color: #fff;
}

.lp-plans {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem; align-items: stretch;
}
.lp-plans.is-hidden { display: none; }
.lp-plan {
    position: relative;
    padding: 2.25rem 1.85rem 2rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    display: flex; flex-direction: column;
    transition: transform 380ms var(--lp-ease), border-color 380ms var(--lp-ease), box-shadow 380ms var(--lp-ease);
}
.lp-plan:hover { transform: translateY(-4px); border-color: var(--lp-border-hi); box-shadow: var(--lp-shadow-card); }
.lp-plan--featured {
    background: var(--lp-text);
    border-color: var(--lp-text);
    color: var(--lp-text-inv);
}
.lp-plan--featured:hover { background: #000; }
.lp-plan__badge {
    position: absolute; top: -11px; left: 1.85rem;
    background: #fff;
    color: var(--lp-text); font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.32rem 0.8rem; border-radius: 999px;
    border: 1px solid var(--lp-border-hi);
}
.lp-plan--featured .lp-plan__badge { background: var(--lp-text-inv); border-color: transparent; }
.lp-plan__name { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em; color: inherit; }
.lp-plan__tagline { color: var(--lp-text-mute); font-size: 0.86rem; margin-top: 0.3rem; }
.lp-plan--featured .lp-plan__tagline { color: var(--lp-text-inv-mute); }
.lp-plan__price { display: flex; align-items: baseline; gap: 0.3rem; margin: 1.5rem 0 0.25rem; }
.lp-plan__amount { font-size: 2.6rem; font-weight: 600; letter-spacing: -0.035em; color: inherit; font-variant-numeric: tabular-nums; }
.lp-plan__currency { font-size: 1.1rem; color: var(--lp-text-soft); font-weight: 500; }
.lp-plan--featured .lp-plan__currency { color: var(--lp-text-inv-soft); }
.lp-plan__period { color: var(--lp-text-mute); font-size: 0.85rem; }
.lp-plan--featured .lp-plan__period { color: var(--lp-text-inv-mute); }
.lp-plan__features {
    list-style: none; padding: 1.5rem 0 0; margin: 0 0 1.75rem;
    border-top: 1px solid var(--lp-border);
    display: flex; flex-direction: column; gap: 0.6rem;
    flex: 1;
}
.lp-plan--featured .lp-plan__features { border-top-color: var(--lp-border-inv); }
.lp-plan__features li {
    display: flex; align-items: start; gap: 0.6rem;
    color: inherit; font-size: 0.92rem; line-height: 1.5;
}
.lp-plan__features li::before {
    content: ""; flex-shrink: 0;
    width: 16px; height: 16px; margin-top: 2px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-position: center; background-repeat: no-repeat;
}
.lp-plan--featured .lp-plan__features li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.lp-plan__cta { width: 100%; }
.lp-plan--featured .lp-btn--ghost,
.lp-plan--featured .lp-btn--primary {
    background: #fff; color: #000; border-color: #fff;
}
.lp-plan--featured .lp-btn--ghost:hover,
.lp-plan--featured .lp-btn--primary:hover { background: #f0f0f0; color: #000; }
.lp-pricing-note {
    text-align: center; color: var(--lp-text-mute); font-size: 0.85rem;
    margin-top: clamp(1.25rem, 2vw, 1.75rem);
}
.lp-pricing-note strong { color: var(--lp-text); font-weight: 600; }

/* ============================================================
   TESTIMONIALS — Editorial quote cards (no stars, no chips)
   ============================================================ */
.lp-testimonials {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.lp-testimonials__dots { display: none; }
.lp-testimonial {
    padding: 1.75rem 1.6rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    display: flex; flex-direction: column;
    transition: border-color 360ms var(--lp-ease), box-shadow 360ms var(--lp-ease);
    position: relative;
}
.lp-testimonial:hover { border-color: var(--lp-border-hi); box-shadow: var(--lp-shadow-card); }
.lp-testimonial__quote {
    font-size: 0.96rem; line-height: 1.55; color: var(--lp-text);
    margin: 0 0 1.5rem; flex: 1; font-weight: 400;
    letter-spacing: -0.005em;
}
.lp-testimonial__quote::before {
    content: "“"; display: block;
    font-size: 2.4rem; line-height: 0.5; color: var(--lp-text-mute);
    margin: 0 0 0.85rem;
}
.lp-testimonial__author {
    display: flex; align-items: center; gap: 0.85rem;
    padding-top: 1.35rem; border-top: 1px solid var(--lp-border);
}
.lp-testimonial__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    flex-shrink: 0;
    background: var(--lp-bg-soft);
}
.lp-testimonial__avatar img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1);
}
.lp-testimonial__name { font-weight: 600; font-size: 0.92rem; color: var(--lp-text); }
.lp-testimonial__role { color: var(--lp-text-mute); font-size: 0.82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq { max-width: 820px; margin: 0 auto; }
.lp-faq__item { border-bottom: 1px solid var(--lp-border); }
.lp-faq__item:first-child { border-top: 1px solid var(--lp-border); }
.lp-faq__btn {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.4rem 0;
    background: transparent; border: none; cursor: pointer;
    color: var(--lp-text); font-size: 1.02rem; font-weight: 500;
    text-align: left; letter-spacing: -0.01em;
    font-family: inherit;
}
.lp-faq__btn:hover { color: var(--lp-text); }
.lp-faq__icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%; background: var(--lp-bg-soft);
    border: 1px solid var(--lp-border);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 360ms var(--lp-ease-spring), background 220ms var(--lp-ease);
}
.lp-faq__icon::before { content: "+"; font-size: 1.2rem; font-weight: 300; color: var(--lp-text); line-height: 1; }
.lp-faq__item.is-open .lp-faq__icon { transform: rotate(135deg); background: var(--lp-text); border-color: var(--lp-text); }
.lp-faq__item.is-open .lp-faq__icon::before { color: #fff; }
.lp-faq__body {
    max-height: 0; overflow: hidden;
    transition: max-height 420ms var(--lp-ease);
}
.lp-faq__body-inner {
    padding: 0 0 1.5rem;
    color: var(--lp-text-soft); font-size: 0.95rem; line-height: 1.65;
    max-width: 92%;
}

/* ============================================================
   FINAL CTA — dark block, unified header inside
   ============================================================ */
.lp-cta {
    text-align: center;
    background: var(--lp-bg);
}
.lp-cta__inner {
    width: 100%;
    max-width: var(--lp-container);
    margin-inline: auto;
    padding: clamp(4rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem);
    border-radius: var(--lp-radius-xl);
    background:
        linear-gradient(180deg, rgba(8, 8, 12, 0.34), rgba(8, 8, 12, 0.5)),
        url("../../media/pages/landing/kodakod-landing-cta-arkaplan.jpg") center / cover no-repeat;
    background-color: var(--lp-bg-dark);
    color: var(--lp-text-inv);
    position: relative; overflow: hidden;
    text-align: center;
}
.lp-cta__inner::after {
    content: ""; 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: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 30%, transparent 80%);
    pointer-events: none;
}
.lp-cta__inner > * { position: relative; z-index: 1; }
.lp-cta .lp-section__header { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.lp-cta__ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    background: var(--lp-bg);
    border-top: 1px solid var(--lp-border);
    padding: clamp(4rem, 7vw, 6rem) 0 max(2.5rem, calc(1.5rem + env(safe-area-inset-bottom, 0px)));
}
.lp-footer__inner { max-width: var(--lp-container); width: 100%; margin: 0 auto; padding: 0 1.5rem; }
.lp-footer__top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.15fr;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    padding-bottom: clamp(3rem, 5vw, 4rem);
    border-bottom: 1px solid var(--lp-border);
}
.lp-footer__brand { max-width: 360px; }
.lp-footer__brand-img { height: 22px; width: auto; display: block; }
.lp-footer__tagline { margin-top: 1.1rem; color: var(--lp-text-soft); font-size: 0.92rem; max-width: 380px; line-height: 1.65; }
.lp-footer__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; }
.lp-footer__contact a, .lp-footer__contact span { color: var(--lp-text-mute); font-size: 0.88rem; transition: color 180ms var(--lp-ease); }
.lp-footer__contact a:hover { color: var(--lp-text); }
.lp-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.lp-footer__col span { display: block; color: var(--lp-text-mute); font-size: 0.9rem; padding: 0.3rem 0; line-height: 1.5; }
.lp-footer__col h3 {
    color: var(--lp-text); font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
    margin: 0 0 1rem;
}
/* Accordion heading button — on desktop it renders exactly like the plain h4 text */
.lp-footer__acc-btn {
    display: block; width: 100%; padding: 0; margin: 0;
    background: none; border: 0; cursor: default; text-align: left;
    font: inherit; color: inherit; letter-spacing: inherit; text-transform: inherit;
}
.lp-footer__acc-chevron { display: none; width: 18px; height: 18px; fill: none; }

/* Desktop: keep every footer group fully expanded, no accordion chrome */
@media (min-width: 981px) {
    .lp-footer__acc-chevron { display: none !important; }
    .lp-footer__acc-body { max-height: none !important; overflow: visible !important; }
}
.lp-footer__col a {
    display: block; color: var(--lp-text-mute); font-size: 0.9rem;
    padding: 0.3rem 0; transition: color 180ms var(--lp-ease);
}
.lp-footer__col a:hover { color: var(--lp-text); }
.lp-footer__bottom {
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    align-items: center; justify-content: space-between;
    margin-top: 2rem;
    color: var(--lp-text-mute); font-size: 0.82rem;
}
.lp-footer__payments { height: 22px; opacity: 0.55; filter: grayscale(1); }

/* ── Çerez onay bannerı ── */
.lp-consent {
    position: fixed; z-index: 1000;
    left: 50%; bottom: clamp(0.75rem, 2vw, 1.5rem);
    width: min(940px, calc(100% - 2rem));
    transform: translate(-50%, calc(100% + 2rem));
    opacity: 0;
    background: var(--lp-bg-dark, #0d0d0d);
    color: var(--lp-text-inv, #fff);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--lp-radius-lg, 16px);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.lp-consent.is-visible { transform: translate(-50%, 0); opacity: 1; }
.lp-consent.is-dismissed { transform: translate(-50%, calc(100% + 2rem)); opacity: 0; }
.lp-consent__inner {
    display: flex; flex-direction: column; gap: 1.15rem;
    padding: clamp(1.15rem, 2.5vw, 1.6rem);
}
.lp-consent__title { margin: 0 0 0.35rem; font-size: 0.98rem; font-weight: 600; color: #fff; }
.lp-consent__desc {
    margin: 0; font-size: 0.86rem; line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}
.lp-consent__link { color: rgba(255, 255, 255, 0.92); text-decoration: underline; text-underline-offset: 2px; }
.lp-consent__link:hover { color: #fff; }
.lp-consent__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.lp-consent__btn {
    flex: 1;
    padding: 0.6rem 1.15rem;
    font-family: inherit; font-size: 0.85rem; font-weight: 600;
    border-radius: 999px; cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lp-consent__btn:active { transform: scale(0.97); }
.lp-consent__btn--ghost {
    background: transparent; color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.24);
}
.lp-consent__btn--ghost:hover { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.lp-consent__btn--solid {
    background: #fff; color: #0d0d0d; border: 1px solid #fff;
}
.lp-consent__btn--solid:hover { background: rgba(255, 255, 255, 0.88); }

@media (min-width: 720px) {
    .lp-consent__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
    .lp-consent__actions { flex-shrink: 0; }
    .lp-consent__btn { flex: 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-consent { transition: opacity 0.2s ease; }
}

/* Scroll reveal fallback */
[data-lp-reveal]:not(.is-in) { opacity: 0; }
[data-lp-reveal].is-in { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    /* Collapse the 3-track grid to logo | burger so items pin to the edges */
    .lp-nav__inner { grid-template-columns: auto 1fr; gap: 0; }
    .lp-nav__links { display: none; }
    .lp-nav__actions { justify-self: end; }
    .lp-nav__burger { display: inline-flex; }

    /* On tablet/mobile keep only the burger in the top bar; the CTA lives in the panel */
    .lp-nav__actions .lp-btn--ghost:not(.lp-nav__demo-form button) { display: none; }

    /* ACCORDION FOOTER — brand stays open on top, each group collapses.
       Desktop styling (font, spacing) is untouched; only mobile changes. */
    .lp-footer__top {
        display: block;
        padding-bottom: 0;
        border-bottom: none;
    }
    .lp-footer__brand { max-width: none; margin-bottom: 0.75rem; }

    .lp-footer__col { border-top: 1px solid var(--lp-border); }
    .lp-footer__col:last-child { border-bottom: 1px solid var(--lp-border); }

    /* Heading becomes a full-width tappable row; keep the h4 type identical */
    .lp-footer__col h3 { margin: 0; }
    .lp-footer__acc-btn {
        display: flex; align-items: center; justify-content: space-between;
        width: 100%; padding: 1.15rem 0; cursor: pointer;
    }
    .lp-footer__acc-chevron {
        display: block; width: 18px; height: 18px; flex: none;
        fill: none; stroke: var(--lp-text-mute); stroke-width: 2;
        stroke-linecap: round; stroke-linejoin: round;
        transition: transform 300ms var(--lp-ease), stroke 200ms var(--lp-ease);
    }
    .lp-footer__acc-btn[aria-expanded="true"] .lp-footer__acc-chevron {
        transform: rotate(180deg); stroke: var(--lp-text);
    }

    /* Collapsible body — max-height driven by JS, flat when closed */
    .lp-footer__acc-body {
        max-height: 0; overflow: hidden;
        transition: max-height 340ms var(--lp-ease);
    }
    .lp-footer__acc-body > :last-child { padding-bottom: 1.15rem; }

    /* Center the copyright + payment marks on small screens */
    .lp-footer__bottom {
        flex-direction: column; align-items: center; text-align: center;
        gap: 1.25rem;
    }
    .lp-footer__payments { max-width: 100%; }
}
/* Above the mobile breakpoint the drawer + scrim never render */
@media (min-width: 981px) {
    .lp-nav__scrim, .lp-nav__panel { display: none; }
}

/* ============================================================
   HERO — 100svh, dark canvas with soft corporate gradient mesh
   ============================================================ */
.lp-hero {
    position: relative;
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--lp-nav-h) + 2rem) 1.5rem 2rem;
    overflow: hidden;
    background: #08080c;
    color: var(--lp-text-inv);
    display: grid;
    place-items: center;
    isolation: isolate;
}
.lp-hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Üst scrim — header'ı okunur kılar, sert çizgi olmadan yumuşak geçiş */
.lp-hero__topfade {
    position: absolute; inset: 0 0 auto 0;
    height: 200px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.62) 0%, rgba(8, 8, 12, 0.28) 45%, rgba(8, 8, 12, 0) 100%);
}
/* Radial dark halo behind content — keeps text legible over vivid streaks */
.lp-hero::before {
    content: ""; position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 45% at 50% 50%, rgba(8,8,12,0.78) 0%, rgba(8,8,12,0.5) 40%, transparent 75%);
}
/* Subtle film grain over the streaks — adds tactile depth */
.lp-hero__grain {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 240px;
}
/* Hairline grid — softened to not compete with vivid streaks */
.lp-hero__grid {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 30%, #000 85%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 30%, #000 85%);
}

.lp-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 880px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.lp-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.74rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lp-hero__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74,222,128,0.7);
    animation: lp-hero-pulse 2.4s ease-in-out infinite;
}
@keyframes lp-hero-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.85); }
    50%      { opacity: 1; transform: scale(1.15); }
}

.lp-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin: 0;
    color: #fff;
    max-width: 900px;
}
.lp-hero__title em {
    font-style: normal;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero__lead {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    letter-spacing: -0.005em;
}

.lp-hero__ctas {
    display: flex; flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 0.25rem;
}
.lp-hero__demo-form { display: inline-flex; margin: 0; }

/* Scroll indicator — bottom-center subtle */
.lp-hero__scroll {
    position: absolute;
    bottom: clamp(1.5rem, 3vh, 2.5rem);
    left: 50%; transform: translateX(-50%);
    z-index: 3;
    width: 22px; height: 36px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 14px;
    display: flex; justify-content: center;
    padding-top: 6px;
    transition: border-color 240ms var(--lp-ease);
}
.lp-hero__scroll:hover { border-color: rgba(255,255,255,0.45); }
.lp-hero__scroll-dot {
    display: block;
    width: 3px; height: 6px;
    border-radius: 2px;
    background: rgba(255,255,255,0.85);
    animation: lp-hero-scroll-dot 1.8s var(--lp-ease) infinite;
}
@keyframes lp-hero-scroll-dot {
    0%   { transform: translateY(0); opacity: 0; }
    30%  { opacity: 1; }
    80%  { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(10px); opacity: 0; }
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-lp-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   MOBILE & A11Y HARDENING
   Invisible reinforcements only — no visual/design change.
   • hero video: dark backing so no white flash before load
   • touch targets: expand tiny dots/pills to >=44px hit-area
     via a transparent ::after, keeping their visual size
   ============================================================ */
.lp-hero__video { background: #08080c; }

/* Pager dots — keep the small visual dot, add an invisible 44px hit zone */
.lp-stack__dot,
.lp-fan__dot { position: relative; }
.lp-stack__dot::after,
.lp-fan__dot::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
}

/* Small link/pill CTAs — guarantee a 44px tap height on touch devices */
@media (hover: none) and (pointer: coarse) {
    .lp-btn--sm,
    .lp-blog-card__btn,
    .lp-stack__btn { min-height: 44px; }
    .lp-comment__act { min-height: 40px; }
    /* Read pill sits inside a card footer — slimmer, but still a comfortable target */
    .lp-fan__btn { min-height: 35px; padding-top: 0.4rem; padding-bottom: 0.4rem; }
}

/* iOS zoom guard — form controls must render at >=16px to avoid
   Safari's auto-zoom on focus (visual size is already >=16px). */
input, textarea, select { font-size: max(16px, 1em); }

/* ============================================================
   MOBILE & TABLET — spacious, natural-flow responsive layer
   ------------------------------------------------------------
   Desktop is built on fixed 100dvh sections with vertically
   centered content. That reads as "airy" on a large screen but
   CLIPS and CRAMPS content on a phone. This layer releases the
   fixed-height cage on content sections so they flow and grow
   with generous block padding — matching desktop's calm feel —
   while KEEPING full-height + overflow:hidden where the design
   depends on it (hero, keynote canvas, blog fan coverflow).
   Nothing here affects >768px.
   ============================================================ */

/* ---------- TABLET (portrait) & PHONE (<= 980px) ----------
   Covers the portrait-tablet dead zone (769-980px) too: the
   desktop min-width:760px rules used to re-assert fixed-height
   / horizontal layouts here, which clipped content. This layer
   must win, so it sits after them in source order. */
@media (max-width: 980px) {
    /* CORE: release the 100dvh cage on flowing content sections.
       Sections now take their NATURAL height — no forced min-height,
       so short sections (e.g. a single pricing card) don't leave a
       screenful of empty space below. Generous block padding keeps
       the calm, spacious rhythm. Hero keeps full-height separately. */
    .lp-section {
        height: auto;
        min-height: 0;
        overflow: visible;
        place-items: stretch;
        align-content: start;
        padding: clamp(3.5rem, 12vw, 5rem) 1.5rem;
    }
    /* Sections whose visuals rely on clipping keep overflow hidden
       so rotated / bleeding children don't cause x-scroll. */
    .lp-fan-section,
    .lp-keynote { overflow: hidden; }

    /* Header rhythm — slightly tighter floors on small screens */
    .lp-section__header { margin-bottom: clamp(1.75rem, 6vw, 2.5rem); }

    /* KEYNOTE — keep the full-height pinned layout on mobile too:
       header pinned top, metric stage centered, step nav pinned bottom.
       Uses svh so mobile browser chrome doesn't clip it. */
    .lp-keynote {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
        display: grid;
        place-items: stretch;
        align-content: stretch;
        padding: calc(var(--lp-nav-h) + clamp(2rem, 7vw, 3.5rem)) 1.5rem clamp(2.5rem, 8vw, 4rem);
    }
    .lp-keynote .lp-section__inner {
        display: grid;
        grid-template-rows: auto 1fr auto;
        align-items: center;
        justify-items: center;
        height: auto;
        min-height: 0;
        gap: 1.5rem;
    }
    .lp-keynote .lp-section__header { align-self: start; margin: 0; }
    .lp-keynote__stage { align-self: center; }
    .lp-keynote__metric-value { font-size: clamp(3rem, 12vw, 4rem); }

    /* Bottom step nav — bigger, roomier tap rows on mobile */
    .lp-keynote__nav { align-self: end; width: 100%; gap: 1.1rem; }
    .lp-keynote__nav-item { gap: 0.2rem 1rem; }
    .lp-keynote__nav-label { font-size: 1.05rem; }
    .lp-keynote__nav-num { font-size: 0.82rem; padding: 0.4rem 0.6rem; }
    .lp-keynote__nav-bar { margin-top: 0.7rem; height: 3px; }
    /* Keep the animated isometric grid on mobile (canvas draws it) */
    .lp-keynote__net { display: block; }

    /* SERVICES STACK — keep the section full-height on mobile (min 100svh):
       header pinned top, stack centered in the remaining space. */
    #hizmetler {
        min-height: 100vh;
        min-height: 100dvh;
        display: grid;
        place-items: stretch;
        align-content: stretch;
        padding: calc(var(--lp-nav-h) + clamp(2rem, 7vw, 3.5rem)) 1.5rem clamp(2.5rem, 8vw, 4rem);
    }
    #hizmetler .lp-section__inner {
        display: grid;
        grid-template-rows: auto 1fr auto;
        align-items: center;
        justify-items: center;
        height: auto;
        min-width: 0;
        gap: clamp(1.75rem, 5vw, 2.5rem);
    }
    #hizmetler { overflow: hidden; }
    #hizmetler .lp-section__header { align-self: start; margin: 0 auto; }
    #hizmetler .lp-stack { align-self: center; width: 100%; }
    #hizmetler .lp-stack__dots { align-self: end; }

    /* single column card; deck height set by JS (fitDeckHeight) to the
       tallest card's real content height — no clipping, no dead space */
    .lp-stack__deck {
        max-height: none;
        max-width: 560px;
    }
    .lp-stack__card { height: 100%; }
    .lp-stack__media { flex: 0 0 auto; aspect-ratio: 16 / 9; }
    .lp-stack__body {
        flex: 1 1 auto;
        justify-content: flex-start;
        padding: 1.5rem;
    }
    .lp-stack__body .lp-stack__btn { margin-top: 1.25rem; }

    /* PRICING — full-height section: pinned header, carousel centered,
       footnote pinned bottom (matches keynote / services sections). */
    #fiyatlar {
        min-height: 100vh;
        min-height: 100dvh;
        display: grid;
        place-items: stretch;
        align-content: stretch;
        padding: calc(var(--lp-nav-h) + clamp(2rem, 7vw, 3.5rem)) 1.5rem clamp(2.5rem, 8vw, 4rem);
    }
    #fiyatlar .lp-section__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        gap: clamp(1.5rem, 4vw, 2rem);
        width: 100%;
        min-width: 0;
    }
    #fiyatlar .lp-section__header { margin: 0 auto; }

    /* Horizontal swipe carousel with scroll-snap. One plan fills the view;
       the next card peeks at the edge so it reads as swipeable. min-width:0
       is critical so the flex track can't push the whole section wider. */
    .lp-plans {
        display: flex;
        grid-template-columns: none;
        gap: 1rem;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-inline: 0;
        padding: 0.5rem 0 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .lp-plans::-webkit-scrollbar { display: none; }
    .lp-plan {
        /* one card per view on phones; cap width so tablets show a card
           of comfortable size (not a full-width banner) with the next peeking */
        flex: 0 0 min(88%, 340px);
        scroll-snap-align: center;
    }
    /* the hover lift would fight the snap scroll on touch */
    .lp-plan:hover { transform: none; }

    /* BLOG FAN — full-height section: pinned header, coverflow centered,
       dots pinned bottom (matches the other sections). */
    #blog {
        min-height: 100vh;
        min-height: 100dvh;
        display: grid;
        place-items: stretch;
        align-content: stretch;
        padding: calc(var(--lp-nav-h) + clamp(2rem, 7vw, 3.5rem)) 1.5rem clamp(2.5rem, 8vw, 4rem);
    }
    #blog .lp-section__inner {
        display: grid;
        grid-template-rows: auto 1fr auto;
        align-items: center;
        justify-items: center;
        height: auto;
        gap: clamp(1.5rem, 4vw, 2rem);
        width: 100%;
    }
    #blog .lp-section__header { align-self: start; margin: 0 auto; }
    #blog .lp-fan { align-self: center; }
    #blog .lp-fan__dots { align-self: end; }

    /* shrink the coverflow stage so it fits without clipping; cards
       constrained to viewport gutter */
    .lp-fan { height: clamp(430px, 120vw, 520px); margin-top: 0; width: 100%; }
    .lp-fan__card { width: min(340px, 88vw); }
    .lp-fan__body { padding: 1.4rem 1.35rem; gap: 0.7rem; }
    .lp-fan__title { font-size: 1.15rem; }

    /* TESTIMONIALS — full-height section: pinned header, swipe carousel
       centered, dots pinned bottom (matches pricing / other sections). */
    #musteriler {
        min-height: 100vh;
        min-height: 100dvh;
        display: grid;
        place-items: stretch;
        align-content: stretch;
        padding: calc(var(--lp-nav-h) + clamp(2rem, 7vw, 3.5rem)) 1.5rem clamp(2.5rem, 8vw, 4rem);
    }
    #musteriler .lp-section__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        gap: clamp(1.5rem, 4vw, 2rem);
        width: 100%;
        min-width: 0;
    }
    #musteriler .lp-section__header { margin: 0 auto; }

    /* Horizontal swipe carousel with scroll-snap. One quote fills the view;
       the next peeks. min-width:0 keeps the flex track from widening the page. */
    .lp-testimonials {
        display: flex;
        grid-template-columns: none;
        gap: 1rem;
        width: 100%;
        min-width: 0;
        padding: 0.5rem 0 0.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .lp-testimonials::-webkit-scrollbar { display: none; }
    .lp-testimonial {
        flex: 0 0 min(88%, 360px);
        scroll-snap-align: center;
    }

    /* Dot indicator under the carousel */
    .lp-testimonials__dots {
        display: flex; justify-content: center; gap: 0.5rem;
        margin-top: 0.25rem;
    }
    .lp-testimonials__dot {
        width: 7px; height: 7px; padding: 0;
        border: none; border-radius: 50%;
        background: var(--lp-border-hi); cursor: pointer;
        transition: width 260ms var(--lp-ease), background 260ms var(--lp-ease);
    }
    .lp-testimonials__dot.is-active { width: 22px; border-radius: 4px; background: var(--lp-text); }

    /* FAQ — full-height section: pinned header, accordion list centered
       in the remaining space (matches the other sections). */
    #faq {
        min-height: 100vh;
        min-height: 100dvh;
        display: grid;
        place-items: stretch;
        align-content: stretch;
        padding: calc(var(--lp-nav-h) + clamp(2rem, 7vw, 3.5rem)) 1.5rem clamp(2.5rem, 8vw, 4rem);
    }
    #faq .lp-section__inner {
        display: grid;
        grid-template-rows: auto auto;
        align-content: center;
        justify-items: center;
        height: auto;
        gap: clamp(1.75rem, 5vw, 2.5rem);
        width: 100%;
    }
    #faq .lp-section__header { margin: 0 auto; }
    /* Full width within the container; align-self:stretch overrides the
       grid's justify-items:center so the accordion spans edge-to-edge
       (same 1.5rem gutters as the section) instead of shrinking. */
    #faq .lp-faq { width: 100%; max-width: none; justify-self: stretch; }

    /* FINAL CTA — full-bleed, full-height cinematic banner on mobile:
       image fills the screen, content vertically centered over a dark wash. */
    .lp-cta { padding: 0; }
    .lp-cta__inner {
        max-width: none;
        margin-inline: 0;
        min-height: 100vh;
        min-height: 100dvh;
        border-radius: 0;
        padding: calc(var(--lp-nav-h) + clamp(2.5rem, 10vw, 4rem)) 1.5rem
                 max(clamp(3rem, 12vw, 5rem), calc(1.5rem + env(safe-area-inset-bottom, 0px)));
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* stronger wash so the headline + ghost button stay legible */
        background:
            linear-gradient(180deg, rgba(8, 8, 12, 0.66), rgba(8, 8, 12, 0.78)),
            url("../../media/pages/landing/kodakod-landing-cta-arkaplan.jpg") center / cover no-repeat;
        background-color: var(--lp-bg-dark);
    }
    .lp-cta__ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 420px; margin-inline: auto; }
    .lp-cta__ctas .lp-btn { justify-content: center; width: 100%; }

}

/* ---------- PHONE (<= 480px) ---------- */
@media (max-width: 480px) {
    /* Header type floors — avoid crowding at ~360px */
    :root {
        --lp-hdr-title-size:   clamp(1.6rem, 6vw, 2rem);
        --lp-hdr-lead-size:    0.98rem;
        --lp-hdr-eyebrow-size: 0.7rem;
        --lp-hdr-mb:           2rem;
    }
    .lp-section { padding-left: 1.15rem; padding-right: 1.15rem; }
    .lp-footer__inner { padding-left: 1.15rem; padding-right: 1.15rem; }

    /* HERO — scale the display type down for small phones */
    .lp-hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
    .lp-hero__lead { font-size: 1rem; }
    /* Stack CTAs full-width so they don't wrap into uneven pills */
    .lp-hero__ctas { flex-direction: column; align-items: stretch; width: 100%; }
    .lp-hero__ctas .lp-btn { justify-content: center; width: 100%; }
    /* Darken the backdrop further so copy stays legible over busy imagery */
    .lp-hero::before {
        background: radial-gradient(ellipse 90% 65% at 50% 52%,
            rgba(8,8,12,0.94) 0%, rgba(8,8,12,0.78) 50%, rgba(8,8,12,0.4) 88%);
    }
    /* Flat wash on top of the radial to lift legibility across the whole frame */
    .lp-hero::after {
        content: ""; position: absolute; inset: 0; z-index: 2;
        pointer-events: none;
        background: rgba(8,8,12,0.22);
    }
    .lp-hero__topfade { height: 260px; }

    /* KEYNOTE — smaller metric + stack the step nav to full-width
       rows (bigger tap targets, no 3-column squeeze) */
    .lp-keynote__metric-value { font-size: clamp(2.6rem, 14vw, 3.2rem); }
    .lp-keynote__sentence { font-size: 1.05rem; }
    .lp-keynote__nav { grid-template-columns: 1fr; gap: 0.75rem; }

    /* PRICING TOGGLE — prevent 3-segment overflow at 320px */
    .lp-pricing-toggle { max-width: 100%; }
    .lp-pricing-toggle button { padding: 0.5rem 0.7rem; font-size: 0.8rem; }

    /* BLOG FAN — one more step tighter for the smallest screens */
    .lp-fan { height: clamp(400px, 128vw, 480px); }
    .lp-fan__card { width: min(320px, 90vw); }

    /* TESTIMONIALS — trim card padding for breathing room */
    .lp-testimonials { gap: 1rem; }
    .lp-testimonial { padding: 1.5rem 1.35rem; }

    /* FAQ — reclaim the wasted right gutter */
    .lp-faq__btn { font-size: 0.98rem; padding: 1.2rem 0; }
    .lp-faq__body-inner { max-width: 100%; }

    /* FINAL CTA — tighter side padding on small phones (full-bleed handled at 980px) */
    .lp-cta__inner { padding-left: 1.15rem; padding-right: 1.15rem; }
}

/* ── Hizmet kartları (lp-svc-card) — /hizmetler, /kategori/{slug}, /etiket/{slug} paylaşır ── */
.lp-svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}
.lp-svc-card {
    display: flex;
    flex-direction: column;
    background: #101013;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    color: var(--lp-text-inv);
    box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease);
}
.lp-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.8);
}
.lp-svc-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}
.lp-svc-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--lp-ease-out);
}
.lp-svc-card:hover .lp-svc-card__media img { transform: scale(1.05); }
.lp-svc-card__badge {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    padding: 0.34rem 0.8rem;
    border-radius: 980px;
    background: rgba(10, 10, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}
.lp-svc-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: clamp(1.6rem, 3vw, 2.15rem);
    flex: 1;
}
.lp-svc-card__title {
    margin: 0;
    font-size: clamp(1.3rem, 2.4vw, 1.55rem);
    font-weight: 600; letter-spacing: -0.025em; line-height: 1.2;
    color: #fff;
}
.lp-svc-card__desc {
    margin: 0;
    font-size: 0.95rem; line-height: 1.6;
    color: var(--lp-text-inv-soft);
}
.lp-svc-card__foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border-inv);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lp-svc-card__meta {
    font-size: 0.78rem; letter-spacing: 0.02em;
    color: var(--lp-text-inv-mute);
}
.lp-svc-card__btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 980px;
    background: #fff; color: #0a0a0a !important;
    font-size: 0.84rem; font-weight: 500;
    white-space: nowrap;
    transition: transform 0.2s var(--lp-ease);
}
.lp-svc-card__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.lp-svc-card__btn:hover { transform: translateY(-2px); }

@media (min-width: 760px) {
    .lp-svc-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* Dokunmatik: :hover tap sonrası kalır — kart/görsel/buton hover'ını nötrle. */
@media (hover: none) {
    .lp-svc-card:hover { transform: none; box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7); }
    .lp-svc-card:hover .lp-svc-card__media img { transform: none; }
    .lp-svc-card__btn:hover { transform: none; }
}

/* ── Taksonomi linki: kart rozeti/kicker tıklanabilir ama görsel olarak değişmeden kalır.
   Renk BİLİNÇLİ olarak ayarlanmaz — host sınıf (lp-svc-card__badge, lp-stack__kicker) kendi
   rengini korur; link yalnızca altçizgiyi kaldırır ve imleci işaretçiye çevirir. Hover'da
   hiçbir görsel değişiklik olmaz. ── */
a.lp-tax-link { text-decoration: none; cursor: pointer; }
a.lp-tax-link:hover, a.lp-tax-link:focus { text-decoration: none; }

/* ── Blog kartları (lp-blog-card) — /blog + kategori/etiket filtre sayfaları paylaşır ── */
.lp-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.lp-blog-card {
    display: flex; flex-direction: column;
    background: #101013;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    color: var(--lp-text-inv);
    box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease);
}
.lp-blog-card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.8); }
.lp-blog-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.lp-blog-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--lp-ease-out);
}
.lp-blog-card:hover .lp-blog-card__media img { transform: scale(1.05); }
.lp-blog-card__badge {
    position: absolute; top: 0.9rem; left: 0.9rem;
    padding: 0.34rem 0.8rem; border-radius: 980px;
    background: rgba(10, 10, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: #fff;
}
.lp-blog-card__body {
    display: flex; flex-direction: column; gap: 0.9rem;
    padding: clamp(1.6rem, 3vw, 2.15rem);
    flex: 1;
}
.lp-blog-card__title {
    margin: 0;
    font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3;
    color: #fff;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-blog-card__meta { font-size: 0.78rem; color: var(--lp-text-inv-mute); }
.lp-blog-card__desc {
    margin: 0;
    font-size: 0.92rem; line-height: 1.55;
    color: var(--lp-text-inv-soft);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-blog-card__foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border-inv);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lp-blog-card__author {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.8rem; color: var(--lp-text-inv-mute);
}
.lp-blog-card__author-icon {
    width: 16px; height: 16px; object-fit: contain;
    filter: brightness(0) invert(1);
}
.lp-blog-card__btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem; border-radius: 980px;
    background: #fff; color: #0a0a0a !important;
    font-size: 0.84rem; font-weight: 500;
    white-space: nowrap;
    transition: transform 0.2s var(--lp-ease);
}
.lp-blog-card__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.lp-blog-card__btn:hover { transform: translateY(-2px); }

@media (min-width: 760px) {
    .lp-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (hover: none) {
    .lp-blog-card:hover { transform: none; box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7); }
    .lp-blog-card:hover .lp-blog-card__media img { transform: none; }
    .lp-blog-card__btn:hover { transform: none; }
}
